Compare commits

..

No commits in common. "master" and "d6dc353b31e4f9bef77d4ff93cb19ea064a615f5" have entirely different histories.

6 changed files with 13 additions and 34 deletions

View File

@ -1 +1 @@
0.7.1-1 ./
0.7.0-2 ./

View File

@ -1,5 +1,5 @@
[buildconfig]
builder = dbd.builder.GitLfsBuilder
builder = fws.builder.GitLfsBuilder
tagger = tito.tagger.ReleaseTagger
changelog_do_not_remove_cherrypick = 0
changelog_format = %s (%ae)

BIN
dehydrated-0.7.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

BIN
dehydrated-0.7.1.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@ -1,6 +1,6 @@
Name: dehydrated
Version: 0.7.1
Release: 1%{?dist}
Version: 0.7.0
Release: 2%{?dist}
Summary: ACME client in bash
Group: Application/System
@ -17,9 +17,12 @@ BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
BuildRequires: httpd
Requires: openssl
Requires: sed
Requires: /usr/bin/awk
Requires: /bin/awk
Requires: curl
Requires: /usr/bin/mktemp
Requires: /bin/mktemp
Conflicts: letsencrypt.sh
Obsoletes: letsencrypt.sh
%if 0%{?fedora} >= 11 || 0%{?rhel} >= 5
%global useselinux 1
@ -152,24 +155,6 @@ fi
%dir %attr(0750,root,root) %{_localstatedir}/lib/%{name}/certificates
%changelog
* Wed Apr 12 2023 Daniel Berteaud <dbd@ehtrace.com> 0.7.1-1
- Update to 0.7.1 (dbd@ehtrace.com)
* Wed Aug 31 2022 Daniel Berteaud <dbd@ehtrace.com> 0.7.0-7
- letsencrypt.sh is old enough to be removed (dbd@ehtrace.com)
* Fri Jul 22 2022 Daniel Berteaud <dbd@ehtrace.com> 0.7.0-6
- Use /usr/bin path for dependencies (dbd@ehtrace.com)
* Fri Jul 01 2022 Daniel Berteaud <dbd@ehtrace.com> 0.7.0-5
- Print executed and skiped hooks (dbd@ehtrace.com)
* Tue Jan 11 2022 Daniel Berteaud <dbd@ehtrace.com> 0.7.0-4
- Release bump
* Wed Dec 08 2021 Daniel Berteaud <dani@lapiole.org> 0.7.0-3
- Update tito builder (dani@lapiole.org)
* Wed May 26 2021 Daniel Berteaud <daniel@firewall-services.com> 0.7.0-2
- Update to 0.7.0 (daniel@firewall-services.com)

View File

@ -3,14 +3,8 @@
ACTION=${1}
if [ -d "/etc/dehydrated/hooks_"$ACTION".d" ]; then
echo Executing hooks for $ACTION event
shift
for H in $(find /etc/dehydrated/hooks_"$ACTION".d/ -type f -o -type l | sort); do
if [ -x $H ]; then
echo Running $H hook
$H $@
else
echo $H is not executable, skiping
fi
[ -x $H ] && $H $@
done
fi