diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2012-08-19 08:25:22 +0000 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2012-08-19 08:25:22 +0000 |
commit | e26898cd82be3742f0d0a417d2eb7b988e9024c2 (patch) | |
tree | d660f0f8cf5fe6971d240032f42b79fdb850ef50 /net-analyzer/icinga | |
parent | Stable on ppc amd64 and x86 wrt bug#431906. (diff) | |
download | gentoo-2-e26898cd82be3742f0d0a417d2eb7b988e9024c2.tar.gz gentoo-2-e26898cd82be3742f0d0a417d2eb7b988e9024c2.tar.bz2 gentoo-2-e26898cd82be3742f0d0a417d2eb7b988e9024c2.zip |
forgot to replace the mysql/postgres need with use in the init script
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/icinga')
-rw-r--r-- | net-analyzer/icinga/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/icinga/files/ido2db-init.d-2 | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-analyzer/icinga/ChangeLog b/net-analyzer/icinga/ChangeLog index 38857c4310e4..606f87fa2d7a 100644 --- a/net-analyzer/icinga/ChangeLog +++ b/net-analyzer/icinga/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/icinga # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/icinga/ChangeLog,v 1.21 2012/08/19 04:43:24 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/icinga/ChangeLog,v 1.22 2012/08/19 08:25:22 prometheanfire Exp $ + + 19 Aug 2012; Matthew Thode <prometheanfire@gentoo.org> files/ido2db-init.d-2: + forgot to change the need mysql/postgresql to use *icinga-1.7.1-r4 (19 Aug 2012) diff --git a/net-analyzer/icinga/files/ido2db-init.d-2 b/net-analyzer/icinga/files/ido2db-init.d-2 index 74ca1c286ac3..15fe94da1393 100644 --- a/net-analyzer/icinga/files/ido2db-init.d-2 +++ b/net-analyzer/icinga/files/ido2db-init.d-2 @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/icinga/files/ido2db-init.d-2,v 1.1 2012/08/19 04:43:25 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/icinga/files/ido2db-init.d-2,v 1.2 2012/08/19 08:25:22 prometheanfire Exp $ get_config() { sed -n -e 's:^[ \t]*'$1'=\([^#]\+\).*:\1:p' \ @@ -20,9 +20,9 @@ depend() { case $(get_config db_servertype) in mysql) - need mysql ;; + use mysql ;; pgsql) - need postgresql ;; + use postgresql ;; esac } |