diff options
author | Steve Price <steve@FreeBSD.org> | 1999-07-04 21:08:42 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-07-04 21:08:42 +0000 |
commit | 8c88934f829d4f968a5dea9bbe6657ce902e4121 (patch) | |
tree | 527d8850aa0709f09577d4bd9cc333f065e5373d /japanese/ebnetd | |
parent | The interactive nature of pkg/INSTALL has been removed. (diff) |
Don't require interaction on INSTALL while PACKAGE_BUILDING.
Diffstat (limited to 'japanese/ebnetd')
-rw-r--r-- | japanese/ebnetd/pkg-install | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/japanese/ebnetd/pkg-install b/japanese/ebnetd/pkg-install index 0c299c679aa3..615702a92151 100644 --- a/japanese/ebnetd/pkg-install +++ b/japanese/ebnetd/pkg-install @@ -18,8 +18,12 @@ sed -e 's/#.*//' -e 's/^/ /' -e 's/$/ /g' -e 's/ / /g' /etc/services \ if [ $? -ne 0 ] ; then YESNO=YET while [ "${YESNO}" = YET ] ; do - echo -n "May I register the \`ndtp' service name to /etc/services? ([y]/n) " - read LINE + if [ -z "${PACKAGE_BUILDING}" ]; then + echo -n "May I register the \`ndtp' service name to /etc/services? ([y]/n) " + read LINE + else + LINE=y + fi case "X${LINE}" in Xy|XY|X) YESNO=YES @@ -52,8 +56,12 @@ fi if [ -f ${PKG_PREFIX}/etc/rc.d/ndtpd.sh ] ; then YESNO=YET while [ "${YESNO}" = YET ] ; do - echo -n "${PKG_PREFIX}/etc/rc.d/ndtpd.sh already exists. May I overwrite it? (y/[n]) " - read LINE + if [ -z "${PACKAGE_BUILDING}" ]; then + echo -n "${PKG_PREFIX}/etc/rc.d/ndtpd.sh already exists. May I overwrite it? (y/[n]) " + read LINE + else + LINE=y + fi case "X${LINE}" in Xy|XY) YESNO=YES |