blob: caadfd59d28df49eee0c580526a307cc5b1b4223 (
plain) (
tree)
|
|
#!/bin/sh
# If the pop user/group don't exist, add them:
if ! grep -q "^pop:" etc/passwd ; then
echo "pop:x:90:90:POP:/:" >> /etc/passwd
fi
if ! grep -q "^pop:" etc/group ; then
echo "pop::90:pop" >> etc/group
fi
|