summaryrefslogtreecommitdiffstats
path: root/extra/avahi/avahid
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-05-18 21:26:17 +0200
committertnut <thierryn1 at hispeed dot ch>2010-05-18 21:26:17 +0200
commitc589f2eca8bd0df629d2a1f8797e2025556a232f (patch)
treeb4a91ffb018a9045abf4ebe87d15b1339c909d71 /extra/avahi/avahid
parentcf4ac3eea6264ad62e9bfbd9b67bb48c5d70ac45 (diff)
downloadnutyx-pakxe-c589f2eca8bd0df629d2a1f8797e2025556a232f.tar.gz
nutyx-pakxe-c589f2eca8bd0df629d2a1f8797e2025556a232f.tar.bz2
nutyx-pakxe-c589f2eca8bd0df629d2a1f8797e2025556a232f.tar.xz
nutyx-pakxe-c589f2eca8bd0df629d2a1f8797e2025556a232f.zip
avahi, séparation client et service
Diffstat (limited to 'extra/avahi/avahid')
-rw-r--r--extra/avahi/avahid47
1 files changed, 0 insertions, 47 deletions
diff --git a/extra/avahi/avahid b/extra/avahi/avahid
deleted file mode 100644
index 3ab580e5f..000000000
--- a/extra/avahi/avahid
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/sh
-# Begin $rc_base/init.d/avahid
-
-# Based on sysklogd script from LFS-3.1 and earlier.
-# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
-# Add create user and Groups - thierryn1@hispeed.ch
-
-# $Id: $
-
-. /etc/sysconfig/rc
-. $rc_functions
-newgroup=avahi
-newuser=avahi
-newid=85
-getent group $newgroup > /dev/null || /usr/sbin/groupadd -g $newid $newgroup
-getent passwd $newuser > /dev/null || /usr/sbin/useradd -g $newgroup \
--u $newid -s /bin/false -c "Avahi Daemon" $newuser
-
-
-case "$1" in
- start)
- boot_mesg "Starting Avahi Daemon..."
- loadproc /usr/sbin/avahi-daemon -D
- ;;
-
- stop)
- boot_mesg "Stopping Avahi Daemon..."
- killproc /usr/sbin/avahi-daemon
- ;;
-
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
-
- status)
- statusproc /usr/sbin/avahi-daemon
- ;;
-
- *)
- echo "Usage: $0 {start|stop|restart|status}"
- exit 1
- ;;
-esac
-
-# End $rc_base/init.d/avahid