Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.7.228
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
src /
glibc /
debian /
debhelper.in /
[ HOME SHELL ]
Name
Size
Permission
Action
glibc-doc.docs
16
B
-rw-r--r--
glibc-doc.links
1.5
KB
-rw-r--r--
glibc-doc.manpages
350
B
-rw-r--r--
glibc-source.install
41
B
-rw-r--r--
glibc-source.lintian-overrides
2.64
KB
-rw-r--r--
libc-alt.fixperms
19
B
-rw-r--r--
libc-alt.install
166
B
-rw-r--r--
libc-alt.lintian-overrides
490
B
-rw-r--r--
libc-alt.postrm
586
B
-rw-r--r--
libc-bin.dirs
34
B
-rw-r--r--
libc-bin.install
722
B
-rw-r--r--
libc-bin.lintian-overrides
1.05
KB
-rw-r--r--
libc-bin.manpages
65
B
-rw-r--r--
libc-bin.postinst
1.25
KB
-rw-r--r--
libc-bin.triggers
440
B
-rw-r--r--
libc-dev-alt.install
633
B
-rw-r--r--
libc-dev-alt.lintian-overrides
157
B
-rw-r--r--
libc-dev-bin.install
39
B
-rw-r--r--
libc-dev-bin.manpages
31
B
-rw-r--r--
libc-dev.install
596
B
-rw-r--r--
libc-dev.install.hurd-i386
642
B
-rw-r--r--
libc-dev.lintian-overrides
150
B
-rw-r--r--
libc-devtools.install
203
B
-rw-r--r--
libc-devtools.lintian-override...
273
B
-rw-r--r--
libc-devtools.manpages
32
B
-rw-r--r--
libc-l10n.install
133
B
-rw-r--r--
libc-otherbuild.fixperms
19
B
-rw-r--r--
libc-otherbuild.install
98
B
-rw-r--r--
libc-otherbuild.lintian-overri...
679
B
-rw-r--r--
libc-otherbuild.postinst
121
B
-rw-r--r--
libc-otherbuild.postrm
118
B
-rw-r--r--
libc-prof.install
27
B
-rw-r--r--
libc-udeb.install
550
B
-rw-r--r--
libc-udeb.install.hurd-i386
630
B
-rw-r--r--
libc-udeb.links.hurd-i386
22
B
-rw-r--r--
libc.NEWS
5.23
KB
-rw-r--r--
libc.README.Debian
5.78
KB
-rw-r--r--
libc.dirs
17
B
-rw-r--r--
libc.docs
26
B
-rw-r--r--
libc.fixperms
19
B
-rw-r--r--
libc.install
158
B
-rw-r--r--
libc.lintian-overrides
586
B
-rw-r--r--
libc.postinst
5.29
KB
-rw-r--r--
libc.postrm
816
B
-rw-r--r--
libc.preinst
14.96
KB
-rw-r--r--
libc.templates
3.2
KB
-rw-r--r--
libc6-prof.README.Debian
587
B
-rw-r--r--
locales-all.NEWS
299
B
-rw-r--r--
locales-all.dirs
15
B
-rw-r--r--
locales-all.install
56
B
-rw-r--r--
locales-all.postinst
243
B
-rw-r--r--
locales-all.prerm
426
B
-rw-r--r--
locales.NEWS
1.12
KB
-rw-r--r--
locales.README.Debian
737
B
-rw-r--r--
locales.config
3.28
KB
-rw-r--r--
locales.dirs
15
B
-rw-r--r--
locales.install
370
B
-rw-r--r--
locales.links
47
B
-rw-r--r--
locales.manpages
312
B
-rw-r--r--
locales.postinst
2.46
KB
-rw-r--r--
locales.postrm
137
B
-rw-r--r--
locales.prerm
381
B
-rw-r--r--
locales.templates
1.05
KB
-rw-r--r--
nscd.dirs
15
B
-rw-r--r--
nscd.init
3.5
KB
-rw-r--r--
nscd.install
60
B
-rw-r--r--
nscd.manpages
63
B
-rw-r--r--
nscd.postrm
111
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : nscd.init
#!/bin/sh ### BEGIN INIT INFO # Provides: nscd # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Starts the Name Service Cache Daemon ### END INIT INFO # # nscd: Starts the Name Service Cache Daemon # # description: This is a daemon which handles passwd and group lookups # for running programs and caches the results for the next # query. You should start this daemon only if you use # slow Services like NIS or NIS+ PATH="/sbin:/usr/sbin:/bin:/usr/bin" NAME="nscd" DESC="Name Service Cache Daemon" DAEMON="/usr/sbin/nscd" PIDFILE="/var/run/nscd/nscd.pid" # Sanity checks. umask 022 [ -f /etc/nscd.conf ] || exit 0 [ -x "$DAEMON" ] || exit 0 [ -d /var/run/nscd ] || mkdir -p /var/run/nscd . /lib/lsb/init-functions start_nscd() { # Return # 0 if daemon has been started or was already running # 2 if daemon could not be started start-stop-daemon --start --quiet --pidfile "$PIDFILE" --exec "$DAEMON" --test > /dev/null || return 0 start-stop-daemon --start --quiet --pidfile "$PIDFILE" --exec "$DAEMON" || return 2 } stop_nscd() { # Return # 0 if daemon has been stopped # 1 if daemon was already stopped # 2 if daemon could not be stopped # we try to stop using nscd --shutdown, that fails also if nscd is not present. # in that case, fallback to "good old methods" RETVAL=0 if ! $DAEMON --shutdown; then start-stop-daemon --stop --quiet --pidfile "$PIDFILE" --name "$NAME" --test > /dev/null RETVAL="$?" [ "$?" -ne 0 -a "$?" -ne 1 ] && return 2 fi # Wait for children to finish too start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec "$DAEMON" > /dev/null [ "$?" -ne 0 -a "$?" -ne 1 ] && return 2 rm -f "$PIDFILE" return "$RETVAL" } status() { # Return # 0 if daemon is stopped # 1 if daemon is running start-stop-daemon --start --quiet --pidfile "$PIDFILE" --exec "$DAEMON" --test > /dev/null || return 1 return 0 } invalidate_cache() { for table in passwd group hosts services netgroup ; do $DAEMON --invalidate $table done } case "$1" in start) log_daemon_msg "Starting $DESC" "$NAME" start_nscd case "$?" in 0) invalidate_cache ; log_end_msg 0 ; exit 0 ;; 1) log_warning_msg " (already running)." ; exit 0 ;; *) log_end_msg 1 ; exit 1 ;; esac ;; stop) log_daemon_msg "Stopping $DESC" "$NAME" stop_nscd case "$?" in 0) log_end_msg 0 ; exit 0 ;; 1) log_warning_msg " (not running)." ; exit 0 ;; *) log_end_msg 1 ; exit 1 ;; esac ;; restart|force-reload) log_daemon_msg "Restarting $DESC" "$NAME" invalidate_cache stop_nscd case "$?" in 0|1) start_nscd case "$?" in 0) log_end_msg 0 ; exit 0 ;; 1) log_failure_msg " (failed -- old process is still running)." ; exit 1 ;; *) log_failure_msg " (failed to start)." ; exit 1 ;; esac ;; *) log_failure_msg " (failed to stop)." exit 1 ;; esac ;; try-restart) log_daemon_msg "Trying to restart $DESC" "$NAME" stop_nscd case "$?" in 0) start_nscd case "$?" in 0) invalidate_cache ; log_end_msg 0 ; exit 0 ;; *) log_failure_msg " (failed to start)." ; exit 1 ;; esac ;; 1) log_success_msg "(not running)." ; exit 0 ;; *) log_failure_msg "(failed to stop)." ; exit 1 ;; esac ;; status) log_daemon_msg "Status of $DESC service: " status case "$?" in 0) log_failure_msg "not running." ; exit 3 ;; 1) log_success_msg "running." ; exit 0 ;; esac ;; *) echo "Usage: /etc/init.d/$NAME {start|stop|force-reload|restart|status}" >&2 exit 1 ;; esac
Close