]> git.pld-linux.org Git - packages/nfs-utils.git/commitdiff
outdated
authorJan Rękorajski <baggins@pld-linux.org>
Mon, 8 May 2006 12:19:43 +0000 (12:19 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    idmapd.init -> 1.2
    idmapd.sysconfig -> 1.2

idmapd.init [deleted file]
idmapd.sysconfig [deleted file]

diff --git a/idmapd.init b/idmapd.init
deleted file mode 100644 (file)
index e0eb45b..0000000
+++ /dev/null
@@ -1,88 +0,0 @@
-#!/bin/sh
-#
-# idmapd       This shell script takes care of starting and stopping
-#              the NFSv4 ID <-> Name Mapper.
-#
-# chkconfig:   345 61 19
-# description: NFS is a popular protocol for file sharing across \
-#              TCP/IP networks. This service provides NFSv4 ID <-> \
-#              Name Mapper functionality.
-# probe:       true
-
-# Source function library.
-. /etc/rc.d/init.d/functions
-
-# Get network config
-. /etc/sysconfig/network
-
-# Get service config
-[ -f /etc/sysconfig/idmapd ] && . /etc/sysconfig/idmapd
-
-# Check that networking is up.
-if is_yes "${NETWORKING}"; then
-       if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
-               msg_network_down "NFSv4 idmapd"
-               exit 1
-       fi
-else
-       exit 0
-fi
-
-if [ -x /sbin/pidof ] && [ "$1" != "stop" ]; then
-       [ -z "`/sbin/pidof portmap`" ] && nls "Error: portmap isn't running" && exit 0
-fi
-
-# Sanity checks
-[ -x /usr/sbin/rpc.statd ] || exit 0
-
-RETVAL=0
-# See how we were called.
-case "$1" in
-  start)
-       # Check if the service is already running?
-       if [ ! -f /var/lock/subsys/idmapd ]; then
-               # Start daemons.
-               msg_starting "NFSv4 idmapd"
-               daemon rpc.idmapd $IDMAPDOPTS
-               RETVAL=$?
-               [ $RETVAL -eq 0 ] && touch /var/lock/subsys/idmapd
-       else
-               msg_already_running "NFSv4 idmapd"
-       fi
-       ;;
-  stop)
-       if [ -f /var/lock/subsys/idmapd ]; then
-               # Stop daemons.
-               msg_stopping "NFSv4 idmapd"
-               killproc rpc.idmapd
-               rm -f /var/lock/subsys/idmapd
-       else
-               msg_not_running "NFSv4 idmapd"
-       fi
-       ;;
-  status)
-       status rpc.idmapd
-       exit $?
-       ;;
-  restart|force-reload)
-       $0 stop
-       $0 start
-       exit $?
-       ;;
-  probe)
-       if [ ! -f /var/lock/subsys/idmapd ]; then
-               echo start
-               exit 0
-       fi
-       /sbin/pidof rpc.idmapd >/dev/null 2>&1; STATD="$?"
-       if [ $STATD = 1 ]; then
-               echo restart
-               exit 0
-       fi
-       ;;
-  *)
-       msg_usage "$0 {start|stop|restart|force-reload|probe|status}"
-       exit 3
-esac
-
-exit $RETVAL
diff --git a/idmapd.sysconfig b/idmapd.sysconfig
deleted file mode 100644 (file)
index 84c6bfb..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-# Define nice level for idmapd daemon
-SERVICE_RUN_NICE_LEVEL="+0"
-
-# Options for rpc.idmapd
-# See rpc.statd(8) for valid options.
-IDMAPDOPTS=
This page took 0.03553 seconds and 4 git commands to generate.