From: Valentin Vidic Date: Tue, 15 Jan 2008 14:13:56 +0000 (+0100) Subject: Fixed oidentd handling. X-Git-Tag: debian/4.0.1~68 X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=carnet-upgrade.git;a=commitdiff_plain;h=cb0295e7eea71dd26d6a8dfadc4bfb12cfe2f747 Fixed oidentd handling. --- 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 }