mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 17:07:14 +08:00
19 lines
654 B
Plaintext
19 lines
654 B
Plaintext
post_upgrade() {
|
|
/usr/lib/postfix/post-install daemon_directory=/usr/lib/postfix upgrade-package
|
|
chown postfix var/lib/postfix
|
|
}
|
|
|
|
post_install() {
|
|
getent group postdrop &>/dev/null || groupadd -g 75 postdrop >/dev/null
|
|
getent group postfix &>/dev/null || groupadd -g 73 postfix >/dev/null
|
|
getent passwd postfix &>/dev/null || useradd -u 73 -d /var/spool/postfix -g postfix -s /bin/false postfix >/dev/null
|
|
post_upgrade
|
|
}
|
|
|
|
pre_remove() {
|
|
getent passwd postfix &>/dev/null && userdel postfix >/dev/null
|
|
getent group postfix &>/dev/null && groupdel postfix >/dev/null
|
|
getent group postdrop &>/dev/null && groupdel postdrop >/dev/null
|
|
true
|
|
}
|