Skip to content

Commit ecbcd19

Browse files
committed
small fixes
1 parent 2c34015 commit ecbcd19

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

scripts/zfs/install/01-configure.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ function zfs_passphrase ()
103103
# Generate key
104104
print ":: Set ZFS passphrase"
105105
read -r -p "> ZFS passphrase: " -s pass
106-
read -r -p "> ZFS passphrase confirmation: " -s pass2
106+
print " Please confirm your passphrase"
107+
read -r -p "> ZFS passphrase: " -s pass2
107108

108109
if [[ "${pass}" == "${pass2}" ]];
109110
then

scripts/zfs/install/02-install.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,13 @@ function _main ()
4040
#bo: sourcing install configuration files
4141
if [[ -f install.dist.conf ]];
4242
then
43+
echo ":: Sourcing >>install.dist.conf<<."
4344
. install.dist.conf
4445
fi
4546

4647
if [[ -f install.conf ]];
4748
then
49+
echo ":: Sourcing >>install.conf<<."
4850
. install.conf
4951
fi
5052
#bo: sourcing install configuration files

0 commit comments

Comments
 (0)