diff options
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/maui/ChangeLog | 5 | ||||
-rw-r--r-- | sys-cluster/maui/files/maui.initd | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sys-cluster/maui/ChangeLog b/sys-cluster/maui/ChangeLog index e52abfda1610..b81577a6ab8d 100644 --- a/sys-cluster/maui/ChangeLog +++ b/sys-cluster/maui/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-cluster/maui # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/maui/ChangeLog,v 1.19 2011/06/29 14:21:51 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/maui/ChangeLog,v 1.20 2011/06/29 16:15:04 alexxy Exp $ + + 29 Jun 2011; Alexey Shvetsov <alexxy@gentoo.org> files/maui.initd: + Fix typo in init.d 29 Jun 2011; Alexey Shvetsov <alexxy@gentoo.org> maui-3.3.1-r1.ebuild: Reloacte spool to var not to usr diff --git a/sys-cluster/maui/files/maui.initd b/sys-cluster/maui/files/maui.initd index 8c805619a184..0bfce8a267ec 100644 --- a/sys-cluster/maui/files/maui.initd +++ b/sys-cluster/maui/files/maui.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/maui/files/maui.initd,v 1.1 2011/06/29 13:55:09 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/maui/files/maui.initd,v 1.2 2011/06/29 16:15:04 alexxy Exp $ . /etc/conf.d/torque PBS_SERVER_HOME="$(. /etc/env.d/25torque; echo ${PBS_SERVER_HOME})" @@ -39,7 +39,7 @@ start() { stop() { ebegin "Stopping Maui scheduler" - start-stop-daemon --stop -p /usr/spool/maui/maui.pid + start-stop-daemon --stop -p /var/spool/maui/maui.pid eend ${?} } # vim:ts=4 |