14 lines
197 B
Bash
Executable File
14 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# needrestart - Restart daemons after library updates.
|
|
#
|
|
# Restart SysV's init.
|
|
#
|
|
|
|
# enable xtrace if we should be verbose
|
|
if [ "$NR_VERBOSE" = '1' ]; then
|
|
set -x
|
|
fi
|
|
|
|
exec telinit u
|