diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-12-27 16:25:43 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-12-27 16:25:43 +0100 |
commit | 9f6995f68f3000373dffa292f9868c512967e111 (patch) | |
tree | 0b9bdc3a0924b32ffd420eff837cda115960706b | |
parent | dde1743e9f2c7202dfa96dc078b043c7592e4e21 (diff) | |
download | vyatta-cfg-9f6995f68f3000373dffa292f9868c512967e111.tar.gz vyatta-cfg-9f6995f68f3000373dffa292f9868c512967e111.zip |
T1910: pin vyattacfg and vyattaop GID
-rw-r--r-- | debian/vyatta-cfg.preinst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/vyatta-cfg.preinst b/debian/vyatta-cfg.preinst index ffdee1b..1e8aa52 100644 --- a/debian/vyatta-cfg.preinst +++ b/debian/vyatta-cfg.preinst @@ -7,8 +7,8 @@ set -u # add groups for vyatta accounts if ! getent group vyattacfg >/dev/null; then - addgroup --system vyattacfg + addgroup --system vyattacfg --gid 107 fi if ! getent group vyattaop >/dev/null; then - addgroup --system vyattaop + addgroup --system vyattaop --gid 108 fi |