diff options
author | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2006-09-04 23:47:57 +0000 |
---|---|---|
committer | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2006-09-04 23:47:57 +0000 |
commit | df3f0c0e55645adbe6d0810d2665df23cf49e9ac (patch) | |
tree | 7631cca42a3156bee232855a2869bd110b09da5d /encap/src/makeself-dist/makedist.sh | |
parent | 3f4277604ad27da870c5cf06ec1fab850c347f4a (diff) | |
download | bcfg2-df3f0c0e55645adbe6d0810d2665df23cf49e9ac.tar.gz bcfg2-df3f0c0e55645adbe6d0810d2665df23cf49e9ac.tar.bz2 bcfg2-df3f0c0e55645adbe6d0810d2665df23cf49e9ac.zip |
EncapPackages: Solaris sh doesn't support the read with "-r"
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2196 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'encap/src/makeself-dist/makedist.sh')
-rwxr-xr-x | encap/src/makeself-dist/makedist.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/encap/src/makeself-dist/makedist.sh b/encap/src/makeself-dist/makedist.sh index 0456da12a..2294b03eb 100755 --- a/encap/src/makeself-dist/makedist.sh +++ b/encap/src/makeself-dist/makedist.sh @@ -154,10 +154,10 @@ getpasswd() { stty -echo trap "stty echo ; echo 'Interrupted' ; exit 1" 1 2 3 15 printf "Enter \$1 password: " - read -r password1 + read password1 printf "\n" printf "Enter \$1 password again: " - read -r password2 + read password2 printf "\n" stty echo if [ "\${password1}x" != "\${password2}x" ]; then |