diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2008-01-25 18:13:19 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2008-01-25 18:13:19 +0000 |
commit | d4d4f240e2d78534eebc918175ad5742d5e0117a (patch) | |
tree | 2bc7ea976072cc7240c8ecc2b04e136c9719262a /sys-process/fcron | |
parent | ia64 stable wrt #207255 (diff) | |
download | gentoo-2-d4d4f240e2d78534eebc918175ad5742d5e0117a.tar.gz gentoo-2-d4d4f240e2d78534eebc918175ad5742d5e0117a.tar.bz2 gentoo-2-d4d4f240e2d78534eebc918175ad5742d5e0117a.zip |
fixed unquoted variables
(Portage version: 2.1.4)
Diffstat (limited to 'sys-process/fcron')
-rw-r--r-- | sys-process/fcron/ChangeLog | 5 | ||||
-rw-r--r-- | sys-process/fcron/fcron-3.0.4.ebuild | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/sys-process/fcron/ChangeLog b/sys-process/fcron/ChangeLog index 7598a3eafb22..4d3bc0a84d59 100644 --- a/sys-process/fcron/ChangeLog +++ b/sys-process/fcron/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-process/fcron # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.55 2008/01/24 19:14:27 cla Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.56 2008/01/25 18:13:19 wschlich Exp $ + + 25 Jan 2008; Wolfram Schlich <wschlich@gentoo.org> fcron-3.0.4.ebuild: + fixed unquoted variables 24 Jan 2008; Dawid Węgliński <cla@gentoo.org> fcron-3.0.4.ebuild: Stable on x86 (bug #207266) diff --git a/sys-process/fcron/fcron-3.0.4.ebuild b/sys-process/fcron/fcron-3.0.4.ebuild index d42122ed0c87..10eebf5b0a53 100644 --- a/sys-process/fcron/fcron-3.0.4.ebuild +++ b/sys-process/fcron/fcron-3.0.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.0.4.ebuild,v 1.5 2008/01/24 19:14:27 cla Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.0.4.ebuild,v 1.6 2008/01/25 18:13:19 wschlich Exp $ inherit cron pam eutils @@ -201,12 +201,12 @@ pkg_postinst() { ewarn ewarn "Fixing permissions and ownership of ${ROOT}usr/bin/fcron{tab,dyn,sighup}" - chown fcron:fcron ${ROOT}usr/bin/fcron{tab,dyn} >&/dev/null - chown ${rootuser:-root}:fcron ${ROOT}usr/bin/fcronsighup >&/dev/null - chmod 6755 ${ROOT}usr/bin/fcron{tab,dyn,sighup} >&/dev/null + chown fcron:fcron "${ROOT}"usr/bin/fcron{tab,dyn} >&/dev/null + chown ${rootuser:-root}:fcron "${ROOT}"usr/bin/fcronsighup >&/dev/null + chmod 6755 "${ROOT}"usr/bin/fcron{tab,dyn,sighup} >&/dev/null ewarn "Fixing permissions and ownership of ${ROOT}etc/{fcron,fcrontab,crontab}" - chown -R ${rootuser:-root}:fcron ${ROOT}etc/{fcron,fcrontab,crontab} >&/dev/null - chmod -R g+rX,o= ${ROOT}etc/fcron ${ROOT}etc/{fcron,fcrontab,crontab} >&/dev/null + chown -R ${rootuser:-root}:fcron "${ROOT}"etc/{fcron,fcrontab,crontab} >&/dev/null + chmod -R g+rX,o= "${ROOT}"etc/fcron "${ROOT}"etc/{fcron,fcrontab,crontab} >&/dev/null ewarn ewarn |