summaryrefslogtreecommitdiff
path: root/pcr/openrc-base/inetutils.install
blob: 85b4fad7a0effe0a9d1ab17246436ad0b67ee296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
_svc="ftpd"
_rlvl="default"

post_install() {
	_cmd="rc-update add ${_svc} ${_rlvl}"
	echo "	==> run '${_cmd}'"
}

post_upgrade() {
	post_install "$1"
}

post_remove() {
	_cmd="rc-update del ${_svc} ${_rlvl}"
	echo "	==> run '${_cmd}'"
}