fix
This commit is contained in:
parent
435f61a663
commit
64b6ee1680
1 changed files with 2 additions and 2 deletions
|
@ -408,7 +408,7 @@ function installation {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#autdiskmount
|
#autdiskmount
|
||||||
if [ "${autodisk}" != "n" ]
|
if [ "${autodisk}" == "y" ]
|
||||||
then
|
then
|
||||||
for wort in ${autodiskdevice}
|
for wort in ${autodiskdevice}
|
||||||
do
|
do
|
||||||
|
@ -854,7 +854,7 @@ function abfrage() {
|
||||||
# fi
|
# fi
|
||||||
|
|
||||||
read -p "Should you an disk added to your fstab? : [y/N] " autodisk
|
read -p "Should you an disk added to your fstab? : [y/N] " autodisk
|
||||||
if [ "${autodisk}" != "n" ]
|
if [ "${autodisk}" == "y" ]
|
||||||
then
|
then
|
||||||
read -p "Which DISK stick should be selected ?: /dev/sdb1 /dev/sdc1 " autodiskdevice
|
read -p "Which DISK stick should be selected ?: /dev/sdb1 /dev/sdc1 " autodiskdevice
|
||||||
[[ -z "${autodiskdevice}" ]] && autodiskdevice=/dev/sdb1
|
[[ -z "${autodiskdevice}" ]] && autodiskdevice=/dev/sdb1
|
||||||
|
|
Loading…
Reference in a new issue