mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
10 lines
218 B
Bash
10 lines
218 B
Bash
|
#!/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
|
||
|
|