From 2d7ccea57a3773ad5edadf151c7528fe5e1e7064 Mon Sep 17 00:00:00 2001 From: Valentin Vidic Date: Wed, 23 Jan 2008 14:27:54 +0100 Subject: [PATCH] Add oident to proc group instead of modifying config. --- src/functions.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/functions.sh b/src/functions.sh index b638104..928365f 100644 --- a/src/functions.sh +++ b/src/functions.sh @@ -328,11 +328,8 @@ add_group_proc () { log "groupadd -g 99 proc" # update oidentd so it uses the proc group - if [ -x /etc/init.d/oidentd -a -f /etc/default/oidentd ]; then - if check_and_sed '^OIDENT_GROUP=oident' \ - 's/^\(OIDENT_GROUP\)=.*/\1=proc/' \ - /etc/default/oidentd; - then + if [ -x /etc/init.d/oidentd ]; then + if gpasswd -a oident proc; then /etc/init.d/oidentd restart fi fi -- 1.7.10.4