diff options
Diffstat (limited to 'testing/inetutils-syslogd/inetutils-syslogd.setup')
| -rw-r--r-- | testing/inetutils-syslogd/inetutils-syslogd.setup | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/testing/inetutils-syslogd/inetutils-syslogd.setup b/testing/inetutils-syslogd/inetutils-syslogd.setup deleted file mode 100644 index 7c82513915..0000000000 --- a/testing/inetutils-syslogd/inetutils-syslogd.setup +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -NORMAL="\033[1;0m" -STRONG="\033[1;1m" -RED="\033[1;31m" -GREEN="\033[1;32m" - -print_stop() { - local prompt="${STRONG}$1 ${RED}$2${NORMAL}" - printf "${prompt} %s" -} - -print_start() { - local prompt="${STRONG}$1 ${GREEN}$2${NORMAL}" - printf "${prompt} %s" -} - -print_stop "\nWould you like to STOP BusyBox Syslog & remove it from the Boot Runlevel ?" "[ Enter or Y to remove ]:"; read ans -if [ -z "$ans" ] || [ "$ans" = "y" ] || [ "$ans" = "Y" ]; then - echo; rc-update del syslog boot; rc-service syslog stop; rc-service klogd stop -fi - -print_start "\nWould you like to START inetutils-syslogd & add it to the Boot Runlevel ?" "[ Enter or Y to add ]:"; read ans -if [ -z "$ans" ] || [ "$ans" = "y" ] || [ "$ans" = "Y" ]; then - echo; rc-update add inetutils-syslogd boot; rc-service inetutils-syslogd start; rc-service cron restart; echo -fi - -exit 0 |
