7fcd577f1e
- Remove usage of absolute paths - List all needed binaries in programs tag OBS-URL: https://build.opensuse.org/request/show/184081 OBS-URL: https://build.opensuse.org/package/show/Base:System/sysvinit?expand=0&rev=192
22 lines
354 B
Bash
22 lines
354 B
Bash
#!/bin/bash
|
|
#
|
|
#%stage: setup
|
|
#
|
|
#%programs: kill
|
|
#%programs: pidof
|
|
#%dontshow
|
|
#
|
|
##### blogd end
|
|
##
|
|
## This script tells blogd that the initrd is done.
|
|
## Additionally it moves /dev to the new root filesystem.
|
|
##
|
|
## Command line parameters
|
|
## -----------------------
|
|
##
|
|
|
|
blogd_pid=$(pidof blogd)
|
|
if test -n "$blogd_pid" ; then
|
|
kill -IO "$blogd_pid"
|
|
fi
|