diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-07-06 05:51:32 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-07-06 05:51:32 +0000 |
commit | 013a163f05eb911f7b5a9589de9d57af78577ed0 (patch) | |
tree | af6282921ebe64c90e94a148f3b309cdb648b8f2 /sys-freebsd | |
parent | add 8.2 profile, copied and adapted from 8.0 (diff) | |
download | historical-013a163f05eb911f7b5a9589de9d57af78577ed0.tar.gz historical-013a163f05eb911f7b5a9589de9d57af78577ed0.tar.bz2 historical-013a163f05eb911f7b5a9589de9d57af78577ed0.zip |
fix zvol init script
Package-Manager: portage-2.2.0_alpha43/cvs/Linux x86_64
Diffstat (limited to 'sys-freebsd')
-rw-r--r-- | sys-freebsd/freebsd-cddl/ChangeLog | 7 | ||||
-rwxr-xr-x | sys-freebsd/freebsd-cddl/files/zvol.initd | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/sys-freebsd/freebsd-cddl/ChangeLog b/sys-freebsd/freebsd-cddl/ChangeLog index f11fb5d6beef..8966bc3ecb66 100644 --- a/sys-freebsd/freebsd-cddl/ChangeLog +++ b/sys-freebsd/freebsd-cddl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-freebsd/freebsd-cddl -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-cddl/ChangeLog,v 1.10 2010/04/04 21:04:18 the_paya Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-cddl/ChangeLog,v 1.11 2011/07/06 05:51:32 aballier Exp $ + + 06 Jul 2011; Alexis Ballier <aballier@gentoo.org> files/zvol.initd: + fix zvol init script 04 Apr 2010; Javier Villavicencio <the_paya@gentoo.org> freebsd-cddl-8.0.ebuild, +files/zvol.initd: diff --git a/sys-freebsd/freebsd-cddl/files/zvol.initd b/sys-freebsd/freebsd-cddl/files/zvol.initd index 31c85cc273db..738ec234a590 100755 --- a/sys-freebsd/freebsd-cddl/files/zvol.initd +++ b/sys-freebsd/freebsd-cddl/files/zvol.initd @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-cddl/files/zvol.initd,v 1.1 2010/04/04 21:04:19 the_paya Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-cddl/files/zvol.initd,v 1.2 2011/07/06 05:51:32 aballier Exp $ depend() { need hostid @@ -43,5 +43,5 @@ stop() { } restart() { - + : } |