xbps-base-files: add a trigger to (un)register OpenRC services.
Bump to 0.14. --HG-- extra : convert_revision : c80bf0cb66bc468fbe3922a983cddf36e240111e
This commit is contained in:
parent
0f20ba451b
commit
5f1271c761
2 changed files with 49 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'xbps-base-files'
|
# Template file for 'xbps-base-files'
|
||||||
pkgname=xbps-base-files
|
pkgname=xbps-base-files
|
||||||
version=0.13
|
version=0.14
|
||||||
build_style=custom-install
|
build_style=custom-install
|
||||||
short_desc="xbps base system files"
|
short_desc="xbps base system files"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
|
|
48
triggers/openrc-service
Executable file
48
triggers/openrc-service
Executable file
|
@ -0,0 +1,48 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Registers or unregisters OpenRC services into the specified
|
||||||
|
# runlevel.
|
||||||
|
#
|
||||||
|
# Arguments: $1 = action [run/targets]
|
||||||
|
# $2 = target [post-install/pre-remove]
|
||||||
|
# $3 = pkgname
|
||||||
|
#
|
||||||
|
trigger="openrc-service"
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
targets)
|
||||||
|
echo "post-install pre-remove"
|
||||||
|
;;
|
||||||
|
run)
|
||||||
|
[ ! -x sbin/rc-update ] && exit 0
|
||||||
|
[ ! -x sbin/rc-service ] && exit 0
|
||||||
|
[ -z "$openrc_services" ] && exit 1
|
||||||
|
|
||||||
|
if [ "$2" = "pre-remove" ]; then
|
||||||
|
text="Unr"
|
||||||
|
rcupdate_args="del"
|
||||||
|
elif [ "$2" = "post-install" ]; then
|
||||||
|
text="R"
|
||||||
|
rcupdate_args="add"
|
||||||
|
else
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
set -- ${openrc_services}
|
||||||
|
while [ $# -gt 0 ]; do
|
||||||
|
if sbin/rc-service -e ${1}; then
|
||||||
|
echo "${text}egistering ${1} OpenRC service..."
|
||||||
|
sbin/rc-update ${rcupdate_args} ${1} ${2}
|
||||||
|
[ $? -ne 0 ] && exit $?
|
||||||
|
sbin/rc-update -u
|
||||||
|
fi
|
||||||
|
shift; shift;
|
||||||
|
done
|
||||||
|
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
Loading…
Add table
Add a link
Reference in a new issue