blob: caadfd59d28df49eee0c580526a307cc5b1b4223 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/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
|