diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-05-14 16:44:37 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-05-14 16:44:37 +0000 |
commit | 2b11c583d8a3d8b90fafb0e3393f5dd2a087bcf6 (patch) | |
tree | 7dfeac65a294235b959367494a4c3653ccf73223 /eclass | |
parent | Update gcc4 patch with the proper AC_TRY_LINK fix. Thanks to halcy0n for the... (diff) | |
download | gentoo-2-2b11c583d8a3d8b90fafb0e3393f5dd2a087bcf6.tar.gz gentoo-2-2b11c583d8a3d8b90fafb0e3393f5dd2a087bcf6.tar.bz2 gentoo-2-2b11c583d8a3d8b90fafb0e3393f5dd2a087bcf6.zip |
Use wheel instead of root as the default group in docron; bug 92591.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/cron.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/cron.eclass b/eclass/cron.eclass index 1c2f836299fd..628db0aac0fc 100644 --- a/eclass/cron.eclass +++ b/eclass/cron.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cron.eclass,v 1.4 2005/03/16 10:51:16 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cron.eclass,v 1.5 2005/05/14 16:44:37 ka0ttic Exp $ # Original Author: Aaron Walker <ka0ttic@gentoo.org> # @@ -78,7 +78,7 @@ docrondir() { # docron crond -m 0110 docron() { - local cron="cron" perms="-m 0750 -o root -g root" + local cron="cron" perms="-m 0750 -o root -g wheel" if [[ -n "$1" ]] ; then case "$1" in |