mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
34 lines
509 B
Text
34 lines
509 B
Text
|
pre_install() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_install() {
|
||
|
groupadd irc
|
||
|
useradd -G irc ircd
|
||
|
chown -R ircd.irc /var/log/ircd
|
||
|
chown -R ircd.irc /var/lib/ircd
|
||
|
chown -R ircd.irc /var/run/ircd
|
||
|
}
|
||
|
|
||
|
pre_upgrade() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
chown -R ircd.irc /var/log/ircd
|
||
|
chown -R ircd.irc /var/lib/ircd
|
||
|
chown -R ircd.irc /var/run/ircd
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
echo "-- Don't forget to remove ircd user and irc group if you do not use it"
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|