typo in subvol creation

This commit is contained in:
i-c-u-p 2022-04-28 08:05:54 +00:00
parent c6d418995d
commit 4ee0ffabdd
No known key found for this signature in database
GPG key ID: ABB80C12170FC0D1

View file

@ -317,7 +317,7 @@ mount $BTRFS /mnt
print "Creating BTRFS subvolumes." print "Creating BTRFS subvolumes."
subvols=(snapshots var_pkgs var_log home root srv) subvols=(snapshots var_pkgs var_log home root srv)
for subvol in '' ${subvols[@]}; do for subvol in '' ${subvols[@]}; do
btrfs su cr /mnt/@$volume btrfs su cr /mnt/@$subvol
done done
# Mounting the newly created subvolumes. # Mounting the newly created subvolumes.