diff options
author | lme <lme@FreeBSD.org> | 2014-04-11 05:08:03 +0800 |
---|---|---|
committer | lme <lme@FreeBSD.org> | 2014-04-11 05:08:03 +0800 |
commit | f4eaa1ee5b438c69bde1db3f57380f83ad9bac94 (patch) | |
tree | 12e572e7645bb2f831961c34640418e2a4b7aaa6 /net-mgmt | |
parent | a28c317a74daf8da5e19db0418fff19d32584221 (diff) | |
download | freebsd-ports-gnome-f4eaa1ee5b438c69bde1db3f57380f83ad9bac94.tar.gz freebsd-ports-gnome-f4eaa1ee5b438c69bde1db3f57380f83ad9bac94.tar.zst freebsd-ports-gnome-f4eaa1ee5b438c69bde1db3f57380f83ad9bac94.zip |
- Fix creation of log directories in icinga's rc script
- Bump PORTREVISION
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/icinga/Makefile | 1 | ||||
-rw-r--r-- | net-mgmt/icinga/files/icinga.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/net-mgmt/icinga/Makefile b/net-mgmt/icinga/Makefile index 21d6c15814ce..f416f794cddd 100644 --- a/net-mgmt/icinga/Makefile +++ b/net-mgmt/icinga/Makefile @@ -3,6 +3,7 @@ PORTNAME= icinga PORTVERSION= 1.11.1 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= https://github.com/Icinga/${PORTNAME}-core/releases/download/v${PORTVERSION}/ diff --git a/net-mgmt/icinga/files/icinga.in b/net-mgmt/icinga/files/icinga.in index 9e83bf5e0ee5..d7ccf2cc5d77 100644 --- a/net-mgmt/icinga/files/icinga.in +++ b/net-mgmt/icinga/files/icinga.in @@ -105,7 +105,7 @@ start_precmd() { "${icinga_logdir}" \ "${icinga_logdir}/archives"; do if [ ! -d "${d}" ]; then - install -d -o "${icinga_user}" -g "${icinga_group}" "${icinga_dir}"/checkresults + install -d -o "${icinga_user}" -g "${icinga_group}" "${d}" fi done |