Compare commits

...

11 Commits

Author SHA1 Message Date
Daniel Berteaud 815e01e020 Automatic commit of package [dehydrated] minor release [0.7.1-1].
Created by command:

/usr/bin/tito tag
2023-04-12 14:49:48 +02:00
Daniel Berteaud d3ce42968e Update to 0.7.1 2023-04-12 14:49:39 +02:00
Daniel Berteaud ef9a306f68 Automatic commit of package [dehydrated] minor release [0.7.0-7].
Created by command:

/usr/bin/tito tag
2022-08-31 12:09:44 +02:00
Daniel Berteaud d2c8d3bbf6 letsencrypt.sh is old enough to be removed 2022-08-31 12:09:29 +02:00
Daniel Berteaud 74121c34b2 Automatic commit of package [dehydrated] minor release [0.7.0-6].
Created by command:

/usr/bin/tito tag
2022-07-22 16:34:23 +02:00
Daniel Berteaud c030d6ad42 Use /usr/bin path for dependencies
Required for EL9
2022-07-22 16:33:58 +02:00
Daniel Berteaud 2e35cd92fa Automatic commit of package [dehydrated] minor release [0.7.0-5].
Created by command:

/usr/bin/tito tag
2022-07-01 16:15:46 +02:00
Daniel Berteaud 1655297695 Print executed and skiped hooks 2022-07-01 16:15:28 +02:00
Daniel Berteaud 13e6ef7e6a Automatic commit of package [dehydrated] minor release [0.7.0-4].
Created by command:

/usr/bin/tito tag
2022-01-11 16:26:58 +01:00
Daniel Berteaud 7a8ef07d36 Automatic commit of package [dehydrated] minor release [0.7.0-3].
Created by command:

/usr/bin/tito tag
2021-12-08 16:44:17 +01:00
Daniel Berteaud 6463e04c54 Update tito builder 2021-12-08 16:44:04 +01:00
6 changed files with 34 additions and 13 deletions

View File

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

View File

@ -1,5 +1,5 @@
[buildconfig]
builder = fws.builder.GitLfsBuilder
builder = dbd.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)

Binary file not shown.

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

Binary file not shown.

View File

@ -1,6 +1,6 @@
Name: dehydrated
Version: 0.7.0
Release: 2%{?dist}
Version: 0.7.1
Release: 1%{?dist}
Summary: ACME client in bash
Group: Application/System
@ -17,12 +17,9 @@ BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
BuildRequires: httpd
Requires: openssl
Requires: sed
Requires: /bin/awk
Requires: /usr/bin/awk
Requires: curl
Requires: /bin/mktemp
Conflicts: letsencrypt.sh
Obsoletes: letsencrypt.sh
Requires: /usr/bin/mktemp
%if 0%{?fedora} >= 11 || 0%{?rhel} >= 5
%global useselinux 1
@ -155,6 +152,24 @@ 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,8 +3,14 @@
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
[ -x $H ] && $H $@
if [ -x $H ]; then
echo Running $H hook
$H $@
else
echo $H is not executable, skiping
fi
done
fi