From 3d0687964098aa61feb9c6fdd9a5a3d27a0b0292 Mon Sep 17 00:00:00 2001 From: erickson Date: Mon, 7 Nov 2005 18:50:52 +0000 Subject: [PATCH] install was complaining about the user add line.. git-svn-id: svn://svn.open-ils.org/ILS/trunk@1974 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index c0139e80a8..bc8da794b9 100755 --- a/install.sh +++ b/install.sh @@ -67,7 +67,7 @@ function mkInstallDirs { # add the opensrf user and group if installing; then if [ ! $(grep "^opensrf:" /etc/group) ]; then groupadd opensrf; fi - if [ ! $(grep "^opensrf:" /etc/passwd) ]; then useradd opensrf; fi + if [ ! $(grep "^opensrf:" /etc/passwd) ]; then useradd -g opensrf opensrf; fi # add opensrf to the opensrf group gpasswd -a opensrf opensrf fi; -- 2.43.2