diff options
author | Masafumi Max NAKANE <max@FreeBSD.org> | 1997-01-20 02:27:25 +0000 |
---|---|---|
committer | Masafumi Max NAKANE <max@FreeBSD.org> | 1997-01-20 02:27:25 +0000 |
commit | bb941f5603e42502036ee993f6ca232e42b710ac (patch) | |
tree | 540cf5c88cbfb48fa38be8bac3ee176a867afee7 /mail/mailagent | |
parent | 2a88117c25703d6d0b5e7402d635ba7fa65b2e97 (diff) | |
download | ports-bb941f5603e42502036ee993f6ca232e42b710ac.tar.gz ports-bb941f5603e42502036ee993f6ca232e42b710ac.zip |
Notes
Diffstat (limited to 'mail/mailagent')
-rw-r--r-- | mail/mailagent/scripts/pre-configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/mailagent/scripts/pre-configure b/mail/mailagent/scripts/pre-configure index 6a5a1be25c9e..a08a67bcb6ba 100644 --- a/mail/mailagent/scripts/pre-configure +++ b/mail/mailagent/scripts/pre-configure @@ -6,11 +6,11 @@ # input. while [ X$addr = X ]; do - echo -n "Enter your complete E-mail address> " ; read addr + read -p "Enter your complete E-mail address> " addr done while [ X$host = X ]; do - echo -n "Enter fully qualified name of this host (`hostname`)> " ; read host + read -p "Enter fully qualified name of this host (`hostname`)> " host if [ X$host = X ]; then host=`hostname` fi @@ -25,7 +25,7 @@ else hiddennet=$maildomain fi -echo -n "Enter the name of your organization> "; read orgname +read -p "Enter the name of your organization> " orgname cat >${WRKSRC}/config.sh <<EOM #!/bin/sh |