diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2024-07-14 13:48:05 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-07-20 08:08:53 +0700 |
commit | 0e32a4174c687590fc053c4469acfebc6d2b5ed6 (patch) | |
tree | 3a5d1b09fa202b9e68dd641c185ea3c29a117035 | |
parent | 009e1b822ca2385bcec2497c7e02b98f78af5f1d (diff) |
system/nagios-plugins: Fixed chown syntax
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | system/nagios-plugins/nagios-plugins.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/nagios-plugins/nagios-plugins.SlackBuild b/system/nagios-plugins/nagios-plugins.SlackBuild index 9f30ccb5c9d8..a7588ed8e3ac 100644 --- a/system/nagios-plugins/nagios-plugins.SlackBuild +++ b/system/nagios-plugins/nagios-plugins.SlackBuild @@ -116,7 +116,7 @@ make install DESTDIR=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -chown -R root.nagios $PKG/usr/libexec/nagios +chown -R root:nagios $PKG/usr/libexec/nagios chmod u+s $PKG/usr/libexec/nagios/check_{icmp,dhcp}; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |