blob: a56bb33eff64cb93f8532dcefb1d7deb978df247 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
# arg 1: the new package version
post_install() {
getent group vitamtp >/dev/null 2>&1 || groupadd --system vitamtp &>/dev/null
echo "NOTE: To use qcma as normal user you have to add yourself into vitamtp group"
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install "$1"
}
|