Package-Manager: Portage-2.3.0, Repoman-2.3.1
#!/sbin/openrc-run
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
stop() {
ebegin "Stopping PowerDNS (${PDNS_INSTANCE})"
- /usr/bin/pdns_control ${PDNS_CONFIG} quit &>/dev/null
+ /usr/bin/pdns_control ${PDNS_CONFIG} quit >/dev/null 2>&1
eend $?
}
reload() {
ebegin "Reloading PowerDNS (${PDNS_INSTANCE})"
- /usr/bin/pdns_control ${PDNS_CONFIG} cycle &>/dev/null
+ /usr/bin/pdns_control ${PDNS_CONFIG} cycle >/dev/null 2>&1
eend $?
}