diff options
author | rbalocca <rbalocca@vyatta.com> | 2008-03-02 14:07:10 -0800 |
---|---|---|
committer | rbalocca <rbalocca@vyatta.com> | 2008-03-02 14:07:10 -0800 |
commit | 41e72b84ece50e0104e2e58c6452fc6012e2c8c3 (patch) | |
tree | 91f3acf1f2d5c2db459b6b0a5762814c3ef1f1cb /debian/vyatta-cfg.postinst.in | |
parent | cc19ff61021bf01e2154c6d32ae9ce3fc2525af3 (diff) | |
download | vyatta-cfg-41e72b84ece50e0104e2e58c6452fc6012e2c8c3.tar.gz vyatta-cfg-41e72b84ece50e0104e2e58c6452fc6012e2c8c3.zip |
Vyatta-cfg postinst was preventing upgrade
Diffstat (limited to 'debian/vyatta-cfg.postinst.in')
-rw-r--r-- | debian/vyatta-cfg.postinst.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/vyatta-cfg.postinst.in b/debian/vyatta-cfg.postinst.in index 556b1a9..074d57c 100644 --- a/debian/vyatta-cfg.postinst.in +++ b/debian/vyatta-cfg.postinst.in @@ -18,6 +18,6 @@ if [ "$sysconfdir" != "/etc" ]; then done fi -# add group for configure +# add group for configuration, if not already present: +grep '^vyattacfg:' /etc/group >/dev/null || addgroup --system vyattacfg - |