diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2017-11-10 13:25:18 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-11-10 13:25:23 +0000 |
commit | 26d8468c63c71b1ccbb1bfddd14949c16b78ecd5 (patch) | |
tree | d62d561453f3dca6d15615caeb5f154b7256c054 /community/monitoring-plugins | |
parent | 37cb3465b519fb60716f2c85dd2d0b96977cb240 (diff) | |
download | aports-26d8468c63c71b1ccbb1bfddd14949c16b78ecd5.tar.bz2 aports-26d8468c63c71b1ccbb1bfddd14949c16b78ecd5.tar.xz |
community/monitoring-plugins: set the right /bin/ping path
Diffstat (limited to 'community/monitoring-plugins')
-rw-r--r-- | community/monitoring-plugins/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/community/monitoring-plugins/APKBUILD b/community/monitoring-plugins/APKBUILD index f555190060..7c71dcc398 100644 --- a/community/monitoring-plugins/APKBUILD +++ b/community/monitoring-plugins/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=monitoring-plugins pkgver="2.2" -pkgrel=4 +pkgrel=5 pkgdesc="Plugins for Icinga, Naemon, Nagios, Shinken, Sensu and other monitoring applications" url="http://www.monitoring-plugins.org" arch="all" @@ -27,8 +27,8 @@ build() { --prefix=/usr \ --libexecdir=/usr/lib/monitoring-plugins \ --with-perl="$(which perl)" \ - --with-ping-command='/usr/bin/ping -4 -n -U -w %d -c %d %s' \ - --with-ping6-command='/usr/bin/ping -6 -n -U -w %d -c %d %s' \ + --with-ping-command="/bin/ping -4 -n -U -w %d -c %d %s" \ + --with-ping6-command="/bin/ping -6 -n -U -w %d -c %d %s" \ --with-openssl \ --with-pgsql=/usr \ --with-dbi \ |