From 3eabe32557e067fea7b9da1391e2c3997ac9265b Mon Sep 17 00:00:00 2001 From: thib Date: Sat, 18 Nov 2000 14:52:06 +0000 Subject: [PATCH] default user and group are now fcron --- configure.in | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/configure.in b/configure.in index ff2f0b7..6507146 100644 --- a/configure.in +++ b/configure.in @@ -424,42 +424,42 @@ else AC_MSG_CHECKING(username to run under) AC_ARG_WITH(username, -[ --with-username=USERNAME Username to run under (default daemon) ], +[ --with-username=USERNAME Username to run under (default fcron) ], [ case "$withval" in no) AC_MSG_ERROR(Need USERNAME.) ;; yes) - username=daemon - AC_MSG_RESULT(daemon) + username=fcron + AC_MSG_RESULT(fcron) ;; *) username="$withval"; AC_MSG_RESULT($withval) ;; esac ], - username=daemon - AC_MSG_RESULT(daemon) + username=fcron + AC_MSG_RESULT(fcron) ) AC_MSG_CHECKING(groupname to run under) AC_ARG_WITH(groupname, -[ --with-groupname=GROUPNAME Groupname to run under (default daemon) ], +[ --with-groupname=GROUPNAME Groupname to run under (default fcron) ], [ case "$withval" in no) AC_MSG_ERROR(Need GROUPNAME.) ;; yes) - groupname=daemon - AC_MSG_RESULT(daemon) + groupname=fcron + AC_MSG_RESULT(fcron) ;; *) groupname="$withval"; AC_MSG_RESULT($withval) ;; esac ], - groupname=daemon - AC_MSG_RESULT(daemon) + groupname=fcron + AC_MSG_RESULT(fcron) ) fi -- 2.40.0