blob: 21903830d23f090b8d97e781c5b3b28c410f22a5 [file] [log] [blame]
Igor Sarkisovc9d10aa2020-10-06 15:22:51 -07001#!/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#
18TS_TOPDIR="$(dirname $0)/../.."
19TS_DESC="by label (fstab)"
20LABEL="testFstabLabel"
21
22. $TS_TOPDIR/functions.sh
23ts_init "$*"
24ts_skip_nonroot
25
26set -o pipefail
27
28DEVICE=$(ts_device_init)
29[ "$?" == 0 ] || ts_die "Cannot init device"
30
31mkfs.ext3 -L $LABEL $DEVICE &> /dev/null || ts_die "Cannot make ext3 on $DEVICE" $DEVICE
32
33ts_device_has "LABEL" $LABEL $DEVICE \
34 || ts_die "Cannot found LABEL '$LABEL' on $DEVICE" $DEVICE
35
36[ -d "$TS_MOUNTPOINT" ] || mkdir -p $TS_MOUNTPOINT
37
38ts_fstab_add "LABEL=$LABEL"
39
40# variant A)
41$TS_CMD_MOUNT $TS_MOUNTPOINT 2>&1 >> $TS_OUTPUT
42ts_is_mounted $DEVICE || ts_die "A) Cannot found $DEVICE in /proc/mounts" $DEVICE
43$TS_CMD_UMOUNT $DEVICE || ts_die "A) Cannot umount $DEVICE" $DEVICE
44
45# variant B)
46$TS_CMD_MOUNT -L $LABEL 2>&1 >> $TS_OUTPUT
47ts_is_mounted $DEVICE || ts_die "B) Cannot found $DEVICE in /proc/mounts" $DEVICE
48$TS_CMD_UMOUNT $DEVICE || ts_die "B) Cannot umount $DEVICE" $DEVICE
49
50# variant C)
51$TS_CMD_MOUNT LABEL=$LABEL 2>&1 >> $TS_OUTPUT
52ts_is_mounted $DEVICE || ts_die "C) Cannot found $DEVICE in /proc/mounts" $DEVICE
53$TS_CMD_UMOUNT $DEVICE || ts_die "C) Cannot umount $DEVICE" $DEVICE
54
55ts_device_deinit $DEVICE
56ts_fstab_clean
57
58ts_log "Success"
59ts_finalize
60