~ubuntu-branches/ubuntu/lucid/loop-aes-utils/lucid-security

« back to all changes in this revision

Viewing changes to tests/ts-fstab-symlink

  • Committer: Bazaar Package Importer
  • Author(s): Max Vozeler
  • Date: 2009-07-06 02:08:18 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090706020818-11pxao7bhgjenfv9
Tags: 2.15.1~rc1-2
Disable ncurses (--without-ncurses), not used in
mount/. Fixes FTBFS (closes: #535676).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
#
4
 
# Copyright (C) 2007 Karel Zak <kzak@redhat.com>
5
 
#
6
 
# This file is part of util-linux-ng.
7
 
#
8
 
# This file is free software; you can redistribute it and/or modify
9
 
# it under the terms of the GNU General Public License as published by
10
 
# the Free Software Foundation; either version 2 of the License, or
11
 
# (at your option) any later version.
12
 
#
13
 
# This file is distributed in the hope that it will be useful,
14
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
# GNU General Public License for more details.
17
 
#
18
 
. ./commands.sh
19
 
. ./functions.sh
20
 
 
21
 
TS_COMPONENT="fstab"
22
 
TS_DESC="symlink"
23
 
 
24
 
ts_init "$*"
25
 
ts_skip_nonroot
26
 
 
27
 
set -o pipefail
28
 
 
29
 
LINKNAME="$(pwd)/$TS_OUTDIR/${TS_NAME}_lnk"
30
 
 
31
 
DEVICE=$(ts_device_init)
32
 
[ "$?" == 0 ] || ts_die "Cannot init device"
33
 
 
34
 
mkfs.ext3 $DEVICE &> /dev/null
35
 
[ "$?" == "0" ] || ts_die "Cannot make ext3 on $DEVICE" $DEVICE
36
 
 
37
 
ts_device_has "TYPE" "ext3" $DEVICE
38
 
[ "$?" == "0" ] || ts_die "Cannot found ext3 on $DEVICE" $DEVICE
39
 
 
40
 
[ -d "$TS_MOUNTPOINT" ] || mkdir -p $TS_MOUNTPOINT
41
 
 
42
 
ln -s $DEVICE $LINKNAME
43
 
 
44
 
ts_fstab_add $LINKNAME $TS_MOUNTPOINT "auto" "defaults,user"
45
 
 
46
 
# variant A) -- UID=0
47
 
$TS_CMD_MOUNT $LINKNAME 2>&1 >> $TS_OUTPUT
48
 
grep -q $DEVICE /proc/mounts
49
 
[ "$?" == "0" ] || ts_die "A) Cannot found $DEVICE in /proc/mounts" $DEVICE
50
 
$TS_CMD_UMOUNT $LINKNAME
51
 
[ "$?" == "0" ] || ts_die "A) Cannot umount $LINKNAME" $DEVICE
52
 
 
53
 
# varian B)
54
 
ts_init_suid $TS_CMD_MOUNT
55
 
ts_init_suid $TS_CMD_UMOUNT
56
 
 
57
 
su $TS_TESTUSER -c "$TS_CMD_MOUNT $LINKNAME" 2>&1 >> $TS_OUTPUT
58
 
grep -q $DEVICE /proc/mounts
59
 
[ "$?" == "0" ] || ts_die "B) Cannot found $DEVICE in /proc/mounts" $DEVICE
60
 
su $TS_TESTUSER -c "$TS_CMD_UMOUNT $LINKNAME" 2>&1 >> $TS_OUTPUT
61
 
[ "$?" == "0" ] || ts_die "B) Cannot umount $LINKNAME" $DEVICE
62
 
 
63
 
ts_device_deinit $DEVICE
64
 
ts_fstab_clean
65
 
rm -f $LINKNAME
66
 
 
67
 
ts_log "Success"
68
 
ts_finalize
69