From a0848d727648aa70f6a89c013203f2b82a4e972e Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Fri, 12 Dec 2003 19:19:02 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'RELEASE_5_2_0'. --- japanese/ebnetd/pkg-install | 61 --------------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 japanese/ebnetd/pkg-install (limited to 'japanese/ebnetd/pkg-install') diff --git a/japanese/ebnetd/pkg-install b/japanese/ebnetd/pkg-install deleted file mode 100644 index d29231b3efb6..000000000000 --- a/japanese/ebnetd/pkg-install +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/sh - -# an installation script for ndtpd - -ask() { - local question default answer - - question=$1 - default=$2 - - if [ -z "${PACKAGE_BUILDING}" ]; then - read -p "${question} (y/n) [${default}]? " answer - [ "${answer}" ] && default=${answer} - fi - echo ${default} -} - -yesno() { - local question default - - question=$1 - default=$2 - - while :; do - case `ask "${question}" ${default}` in - [Yy]*) return 0;; - [Nn]*) return 1;; - esac - echo "Please answer yes or no." - done -} - -[ "$2" = POST-INSTALL ] || exit 0 - -# -# Add an entry for `ndtp' to /etc/services. -# -file=/etc/services -back=${file}.bak -name=ndtp -port=2010/tcp -comment="Network Dictionary Transfer Protocol" - -echo "************************************************************************" -if sed 's/#.*//' ${file} | grep -qw ${name}; then - echo "This system has already an entry for ${name} in ${file}." -else - echo "This system has no entry for ${name} in ${file}." - if yesno " Would you like to add it automatically?" y; then - cp -f ${file} ${back} - echo " The original file is saved as ${back}." - - if sed 's/#.*//' ${file} | grep -qw ${port}; then - sed 's,^\([^#]*[ ]'${port}'\),\1 '${name}, ${back} > ${file} - else - echo "${name} ${port} #${comment}" >> ${file} - fi - fi -fi -echo "************************************************************************" - -exit 0 -- cgit v1.2.3