blob: 908c1d75e5a6797623de4cf3c3de01c6c3ad6b96 [file] [log] [blame]
robbiew3f9a8802001-10-12 20:39:17 +00001#!/bin/sh
2
3id nobody
4if [ $? -eq "0" ]; then
5 id bin
6 if [ $? -eq "0" ]; then
7 id daemon
8 if [ $? -eq "0" ]; then
9 id -g nobody
10 if [ $? -eq "0" ]; then
11 id -g bin
12 if [ $? -eq "0" ]; then
13 id -g daemon
14 if [ $? -eq "0" ]; then
15 echo "Required users/groups exist."
16 exit 0
17 fi
18 fi
19 fi
20 fi
21 fi
22fi
23echo ""
24echo "************************************************************************"
25echo "* Please check that the required users/groups exist. See INSTALL file. *"
26echo "************************************************************************"
27echo ""