Neue Version V963

git-svn-id: svn://svn.compuextreme.de/Viitor/V963/Viitor_quagga@5933 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2011-01-03 10:48:06 +00:00
commit 755664f6d1
3 changed files with 18 additions and 0 deletions

9
tmp/postinstall Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
if ! getent group quagga >/dev/null; then
groupadd -g 24 quagga
fi
if ! getent passwd quagga >/dev/null; then
useradd -u 45 -g quagga -d /quagga -s /bin/false quagga
fi

9
tmp/postremove Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
if getent passwd quagga >/dev/null; then
userdel quagga
fi
if getent group quagga >/dev/null; then
groupdel quagga
fi

Binary file not shown.