diff options
author | Eric Thibodeau <kyron@neuralbs.com> | 2008-08-19 10:59:55 -0400 |
---|---|---|
committer | Eric Thibodeau <kyron@neuralbs.com> | 2008-08-19 10:59:55 -0400 |
commit | 25b14447efb66a72799fb7b547b01c489d149c86 (patch) | |
tree | 4fb81aa8d0ec6aa6bff583f8937519463cfa73ae | |
parent | Final commit before deadline...see diffs ;) (diff) | |
download | clustering-livecd-25b14447efb66a72799fb7b547b01c489d149c86.tar.gz clustering-livecd-25b14447efb66a72799fb7b547b01c489d149c86.tar.bz2 clustering-livecd-25b14447efb66a72799fb7b547b01c489d149c86.zip |
Last commit was too quick, warning message was incorrectly written and missing 'fi' terminating 'if'
-rwxr-xr-x | catalyst/livecd/2008.0/overlay/usr/sbin/cluster-setup | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/catalyst/livecd/2008.0/overlay/usr/sbin/cluster-setup b/catalyst/livecd/2008.0/overlay/usr/sbin/cluster-setup index 233b89e..73c1d66 100755 --- a/catalyst/livecd/2008.0/overlay/usr/sbin/cluster-setup +++ b/catalyst/livecd/2008.0/overlay/usr/sbin/cluster-setup @@ -176,9 +176,10 @@ USE=-authmaster ROOT="$NFSROOT" emerge --config =net-nds/ldap-auth-0.1 [[ $? == 0 ]] && einfo "Once you have nodes going, restart Torque (pbs_server)" if [[ $1 == "--test" ]]; then - echo 'Using --test implies the following: -- root password is "test" and can log on (passwordless) onto nodes !!!! -- ldap admin password is "default" !!!!(again) -- eth1 is the cluster\'s NIC and is set to 10.0.0.1/24 -- eth0 is the public nic -- all defaults in .config files get used' + echo "Using --test implies the following:" + echo '- root password is "test" and can log on (passwordless) onto nodes !!!!' + echo '- ldap admin password is "default" !!!!(again)' + echo "- eth1 is the cluster's NIC and is set to 10.0.0.1/24" + echo '- eth0 is the public nic' + echo '- all defaults in .config files get used' +fi |