Compare commits

...

2 Commits

Author SHA1 Message Date
Daniel Berteaud 2d098aa9a7 Automatic commit of package [dehydrated] minor release [0.6.5-13]. 4 years ago
Daniel Berteaud 4eec833ee0 Don't call hook scripts with exec 4 years ago
  1. 2
      .tito/packages/dehydrated
  2. 5
      dehydrated.spec
  3. 2
      dehydrated_hooks

@ -1 +1 @@
0.6.5-12 ./
0.6.5-13 ./

@ -1,6 +1,6 @@
Name: dehydrated
Version: 0.6.5
Release: 12%{?dist}
Release: 13%{?dist}
Summary: ACME client in bash
Group: Application/System
@ -155,6 +155,9 @@ fi
%dir %attr(0750,root,root) %{_localstatedir}/lib/%{name}/certificates
%changelog
* Thu Apr 09 2020 Daniel Berteaud <daniel@firewall-services.com> 0.6.5-13
- Don't call hook scripts with exec (daniel@firewall-services.com)
* Wed Jul 24 2019 Daniel Berteaud <daniel@firewall-services.com> 0.6.5-12
- Update to 0.6.5 (daniel@firewall-services.com)
- Switch to LFS to track tarballs (daniel@firewall-services.com)

@ -5,6 +5,6 @@ ACTION=${1}
if [ -d "/etc/dehydrated/hooks_"$ACTION".d" ]; then
shift
for H in $(find /etc/dehydrated/hooks_"$ACTION".d/ -type f -o -type l | sort); do
[ -x $H ] && exec $H $@
[ -x $H ] && $H $@
done
fi

Loading…
Cancel
Save