Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
picodotdev committed Dec 18, 2021
1 parent b3edd32 commit 40bbdef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion alis.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ LOG="false"
## LUKS_PASSWORD and LUKS_PASSWORD_RETYPE if set is the password for encrypt the device. With LVM, LVM on LUKS is used. If "ask" password alis asks for a secure password.
## FILE_SYSTEM_TYPE root device is formatted with this file system type.
## BTRFS_SUBVOLUMES_MOUNTPOINTS allows to customize btrfs file system subvolumes mountpoints. swap sobvolume is created only if swap file is created (only if there is SWAP_SIZE value).
### Format ("name,subvolume,mount_point"))
### Format ("name,subvolume,mount_point")
## SWAP_SIZE swap file size with a size of the value in megabytes. If no value no swap file is created.
## PARTITION_MODE how partition is performed on DEVICE.
### "auto" value deletes all existing partitions and creates a boot partition and a root partition using disk full size.
Expand Down
2 changes: 1 addition & 1 deletion alis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ function partition() {
continue
fi
if [ ${SUBVOLUME[0]} == "swap" ]; then
mkdir -m 0700 "/mnt${SUBVOLUME[2]}"
mkdir -p -m 0755 "/mnt${SUBVOLUME[2]}"
else
mkdir -p "/mnt${SUBVOLUME[2]}"
fi
Expand Down

0 comments on commit 40bbdef

Please sign in to comment.