/etc/init.d/nordugrid-arc-ldap-infosys is in nordugrid-arc-ldap-infosys 5.0.5-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #!/bin/bash
#
# Init file for the NorduGrid/ARC LDAP based Information System
#
# This script offers an alternative to the per-service init scripts
# It offers a convenient way to start all the infosys services in
# a signle command
#
# chkconfig: - 80 20
# description: NorduGrid/ARC Information system
#
######################################################################
### BEGIN INIT INFO
# Provides: nordugrid-arc-ldap-infosys
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Stop: 0 1 2 3 4 5 6
# Short-Description: NorduGrid/ARC Information LDAP Information System
# Description: Init file for the NorduGrid/ARC LDAP Information System
### END INIT INFO
prefix=${ARC_LOCATION:-/usr}
case "$1" in
start | stop | restart | force-reload | reload | status | condrestart | try-restart)
[ -x /etc/init.d/nordugrid-arc-slapd ] && \
/etc/init.d/nordugrid-arc-slapd "$1"
[ -x /etc/init.d/nordugrid-arc-bdii ] && \
/etc/init.d/nordugrid-arc-bdii "$1"
[ -x /etc/init.d/nordugrid-arc-egiis ] && \
/etc/init.d/nordugrid-arc-egiis "$1"
exit 0
;;
*)
echo "Usage: $0 {start|stop|restart|force-reload|reload|condrestart|try-restart|status}"
exit 1
;;
esac
|