From cb0295e7eea71dd26d6a8dfadc4bfb12cfe2f747 Mon Sep 17 00:00:00 2001
From: Valentin Vidic <vvidic@carnet.hr>
Date: Tue, 15 Jan 2008 15:13:56 +0100
Subject: [PATCH] Fixed oidentd handling.

---
 src/functions.sh |   10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/functions.sh b/src/functions.sh
index 43d8be9..ddde558 100644
--- a/src/functions.sh
+++ b/src/functions.sh
@@ -329,10 +329,12 @@ add_group_proc () {
 
     # update oidentd so it uses the proc group
     if [ -x /etc/init.d/oidentd -a -f /etc/default/oidentd ]; then
-	check_and_sed '^OIDENT_GROUP=proc' \
-                      's/^\(OIDENT_GROUP\)=.*/\1=proc/' \
-                      /etc/default/oidentd \
-        && /etc/init.d/oidentd restart
+	if check_and_sed '^OIDENT_GROUP=oident' \
+                         's/^\(OIDENT_GROUP\)=.*/\1=proc/' \
+                         /etc/default/oidentd;
+        then
+            /etc/init.d/oidentd restart
+        fi
     fi
   fi
 }
-- 
1.7.10.4