mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:07:13 +08:00
15 lines
305 B
Plaintext
15 lines
305 B
Plaintext
# arg 1: the new package version
|
|
post_install() {
|
|
getent group scanner >/dev/null || usr/sbin/groupadd -g 96 scanner
|
|
/bin/cat <<THEEND
|
|
NOTE
|
|
----
|
|
Add your user to group 'scanner' to use scanner devices.
|
|
THEEND
|
|
}
|
|
|
|
# arg 1: the old package version
|
|
pre_remove() {
|
|
usr/sbin/groupdel scanner &>/dev/null
|
|
}
|