aboutsummaryrefslogtreecommitdiffstats
path: root/testing/inetutils-syslogd/inetutils-syslogd.setup
diff options
context:
space:
mode:
authorIT Offshore <developer@it-offshore.co.uk>2013-11-10 09:59:00 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2013-11-15 15:56:53 +0000
commitfb2496e8e08eec0708272fa1fd13bf0174250b95 (patch)
tree9e2ae87bd03d9662fa591d7cf2b963fd39f34eb5 /testing/inetutils-syslogd/inetutils-syslogd.setup
parenteadf0256139ab6119be9dcc04df58ac4bef2918a (diff)
downloadaports-fb2496e8e08eec0708272fa1fd13bf0174250b95.tar.bz2
aports-fb2496e8e08eec0708272fa1fd13bf0174250b95.tar.xz
testing/inetutils-syslogd: new aport
A small syslogd for logging to multiple files http://www.gnu.org/software/inetutils/ revised complete patch for inetutils-syslogd. post-install - just gives status / info message - configuration is now done by /sbin/setup-inetutils-syslogd. Both scripts now use the system colours $STRONG $RED $GREEN. post-deinstall - just adds back busybox syslog to boot runlevel & shows the status of syslog & cron (as cron will be stopped by removing any syslog)
Diffstat (limited to 'testing/inetutils-syslogd/inetutils-syslogd.setup')
-rw-r--r--testing/inetutils-syslogd/inetutils-syslogd.setup28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/inetutils-syslogd/inetutils-syslogd.setup b/testing/inetutils-syslogd/inetutils-syslogd.setup
new file mode 100644
index 0000000000..fd356dfa63
--- /dev/null
+++ b/testing/inetutils-syslogd/inetutils-syslogd.setup
@@ -0,0 +1,28 @@
+#!/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
+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