Igor Sarkisov | c9d10aa | 2020-10-06 15:22:51 -0700 | [diff] [blame] | 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 | TS_TOPDIR="$(dirname $0)/../.." |
| 19 | TS_DESC="by devname (fstab)" |
| 20 | |
| 21 | . $TS_TOPDIR/functions.sh |
| 22 | ts_init "$*" |
| 23 | ts_skip_nonroot |
| 24 | |
| 25 | set -o pipefail |
| 26 | |
| 27 | DEVICE=$(ts_device_init) |
| 28 | [ "$?" == 0 ] || ts_die "Cannot init device" |
| 29 | |
| 30 | mkfs.ext3 $DEVICE &> /dev/null || ts_die "Cannot make ext3 on $DEVICE" $DEVICE |
| 31 | |
| 32 | ts_device_has "TYPE" "ext3" $DEVICE || ts_die "Cannot found ext3 on $DEVICE" $DEVICE |
| 33 | |
| 34 | [ -d "$TS_MOUNTPOINT" ] || mkdir -p $TS_MOUNTPOINT |
| 35 | |
| 36 | ts_fstab_add $DEVICE |
| 37 | |
| 38 | # variant A) |
| 39 | $TS_CMD_MOUNT $TS_MOUNTPOINT 2>&1 >> $TS_OUTPUT |
| 40 | ts_is_mounted $DEVICE || ts_die "A) Cannot found $DEVICE in /proc/mounts" $DEVICE |
| 41 | $TS_CMD_UMOUNT $DEVICE || ts_die "A) Cannot umount $DEVICE" $DEVICE |
| 42 | |
| 43 | # variant B) |
| 44 | $TS_CMD_MOUNT $DEVICE 2>&1 >> $TS_OUTPUT |
| 45 | ts_is_mounted $DEVICE || ts_die "B) Cannot found $DEVICE in /proc/mounts" $DEVICE |
| 46 | $TS_CMD_UMOUNT $DEVICE || ts_die "B) Cannot umount $DEVICE" $DEVICE |
| 47 | |
| 48 | ts_device_deinit $DEVICE |
| 49 | ts_fstab_clean |
| 50 | |
| 51 | ts_log "Success" |
| 52 | ts_finalize |
| 53 | |