2017-01-27 11:00:22 +01:00
|
|
|
#
|
|
|
|
# spec file for package dehydrated
|
|
|
|
#
|
2017-02-13 07:49:05 +01:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2017-01-27 11:00:22 +01:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2017-02-13 07:49:05 +01:00
|
|
|
|
2017-01-27 11:00:22 +01:00
|
|
|
# See also http://en.opensuse.org/openSUSE:Specfile_guidelines
|
|
|
|
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
%define _apache apache2
|
|
|
|
%else
|
|
|
|
%define _apache httpd
|
|
|
|
%endif
|
|
|
|
%define _challengedir /var/lib/acme-challenge
|
|
|
|
%define _user dehydrated
|
|
|
|
%define _home /etc/dehydrated
|
|
|
|
|
2017-02-13 07:49:05 +01:00
|
|
|
%if 0%{?suse_version} > 1230
|
|
|
|
%bcond_without systemd
|
|
|
|
%define _lock_dir /run/dehydrated
|
|
|
|
%else
|
|
|
|
%bcond_with systemd
|
|
|
|
%define _lock_dir /var/run/dehydrated
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if (0%{?suse_version} < 1200 && !0%{?is_opensuse}) || 0%{?centos_version} || 0%{?rhel_version}
|
|
|
|
%bcond_with nginx
|
|
|
|
%bcond_with lighttpd
|
|
|
|
%else
|
|
|
|
%bcond_without nginx
|
|
|
|
%bcond_without lighttpd
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%{!?_tmpfilesdir: %global _tmpfilesdir /usr/lib/tmpfiles.d }
|
|
|
|
|
2017-01-27 11:00:22 +01:00
|
|
|
Name: dehydrated
|
2017-02-21 13:11:20 +01:00
|
|
|
Version: 0.4.0
|
2017-01-27 11:00:22 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: A client for signing certificates with an ACME server
|
|
|
|
License: MIT
|
|
|
|
Group: Productivity/Networking/Security
|
|
|
|
Url: https://github.com/lukas2511/dehydrated
|
|
|
|
Source0: %{name}-%{version}.tar.gz
|
2017-02-21 13:11:20 +01:00
|
|
|
Source1: acme-challenge.conf.apache.in
|
|
|
|
Source2: acme-challenge.conf.nginx.in
|
2017-02-13 07:49:05 +01:00
|
|
|
Source3: acme-challenge.conf.lighttpd.in
|
|
|
|
Source4: dehydrated.cron.in
|
|
|
|
Source5: dehydrated.tmpfiles.d
|
2017-09-19 17:42:45 +02:00
|
|
|
Source6: dehydrated-update.service.in
|
|
|
|
Source7: dehydrated-update.timer
|
2017-09-22 15:35:31 +02:00
|
|
|
Source8: dehydrated.1
|
|
|
|
# Patch submitted to upstream
|
|
|
|
Patch1: 0001-Add-optional-user-and-group-configuration.patch
|
|
|
|
# Patch from upstream
|
|
|
|
Patch2: 0002-use-nullglob-disable-warning-on-empty-CONFIG_D-direc.patch
|
2017-02-13 07:49:05 +01:00
|
|
|
BuildRequires: %{_apache}
|
|
|
|
%if %{with lighttpd}
|
|
|
|
BuildRequires: lighttpd
|
|
|
|
%endif
|
|
|
|
%if %{with nginx}
|
|
|
|
BuildRequires: nginx
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora_version}
|
|
|
|
BuildRequires: generic-logos
|
|
|
|
BuildRequires: generic-logos-httpd
|
|
|
|
%endif
|
|
|
|
Requires: coreutils
|
2017-01-27 11:00:22 +01:00
|
|
|
Requires: curl
|
|
|
|
Requires: openssl
|
|
|
|
Requires(pre): /usr/sbin/useradd
|
|
|
|
Requires(pre): /usr/sbin/groupadd
|
|
|
|
Requires(pre): /usr/bin/getent
|
|
|
|
# openSUSE >= 12.3 has shadow, pwdutils is provided but obsoleted.
|
|
|
|
%if 0%{?suse_version} >= 1230
|
|
|
|
BuildRequires: shadow
|
|
|
|
%endif
|
2017-02-13 07:49:05 +01:00
|
|
|
%if %{with systemd}
|
|
|
|
BuildRequires: pkgconfig(systemd)
|
|
|
|
%{?systemd_requires}
|
2017-09-19 17:42:45 +02:00
|
|
|
%else #with_systemd
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
Requires: cron
|
|
|
|
%endif
|
|
|
|
%endif #with_systemd
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
Recommends: dehydrated-acmeresponder
|
|
|
|
%else
|
|
|
|
Requires: dehydrated-acmeresponder
|
2017-02-13 07:49:05 +01:00
|
|
|
%endif
|
2017-01-27 11:00:22 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildArch: noarch
|
|
|
|
|
2017-02-13 07:49:05 +01:00
|
|
|
Obsoletes: letsencrypt.sh < %{version}
|
|
|
|
Provides: letsencrypt.sh = %{version}
|
2017-01-27 11:00:22 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
This is a client for signing certificates with an ACME server
|
|
|
|
(currently only provided by letsencrypt) implemented as a relatively
|
|
|
|
simple bash-script.
|
|
|
|
|
|
|
|
It uses the openssl utility for everything related to actually
|
|
|
|
handling keys and certificates, so you need to have that installed.
|
|
|
|
|
|
|
|
Other dependencies are: curl, sed, grep, mktemp (all found on almost
|
|
|
|
any system, curl being the only exception)
|
|
|
|
|
|
|
|
Current features:
|
|
|
|
|
|
|
|
* Signing of a list of domains
|
|
|
|
* Signing of a CSR
|
|
|
|
* Renewal if a certificate is about to expire or SAN (subdomains) changed
|
|
|
|
* Certificate revocation
|
|
|
|
|
|
|
|
%package %{_apache}
|
2017-02-13 07:49:05 +01:00
|
|
|
Requires: %{_apache}
|
|
|
|
Requires: %{name}
|
2017-01-27 11:00:22 +01:00
|
|
|
%if ! 0%{?suse_version}
|
2017-02-13 07:49:05 +01:00
|
|
|
Requires: mod_ssl
|
2017-01-27 11:00:22 +01:00
|
|
|
%endif
|
2017-02-13 07:49:05 +01:00
|
|
|
Obsoletes: letsencrypt.sh-%{_apache} < %{version}
|
|
|
|
Provides: letsencrypt.sh-%{_apache} = %{version}
|
|
|
|
Summary: Apache Integration for dehydrated
|
|
|
|
Group: Productivity/Networking/Security
|
2017-01-27 11:00:22 +01:00
|
|
|
|
|
|
|
%description %{_apache}
|
|
|
|
This adds a configuration file for dehydrated's acme-challenge to Apache.
|
|
|
|
|
2017-02-13 07:49:05 +01:00
|
|
|
%if %{with nginx}
|
2017-01-27 11:00:22 +01:00
|
|
|
%package nginx
|
2017-02-13 07:49:05 +01:00
|
|
|
Requires: %{name}
|
|
|
|
Requires: nginx
|
|
|
|
Obsoletes: letsencrypt.sh-nginx < %{version}
|
|
|
|
Provides: letsencrypt.sh-nginx = %{version}
|
|
|
|
Summary: Nginx Integration for dehydrated
|
|
|
|
Group: Productivity/Networking/Security
|
2017-01-27 11:00:22 +01:00
|
|
|
|
|
|
|
%description nginx
|
|
|
|
This adds a configuration file for dehydrated's acme-challenge to nginx.
|
2017-02-13 07:49:05 +01:00
|
|
|
%endif #with nginx
|
|
|
|
|
|
|
|
%if %{with lighttpd}
|
|
|
|
%package lighttpd
|
|
|
|
Requires: %{name}
|
|
|
|
Requires: lighttpd
|
|
|
|
Summary: Lighttpd Integration for dehydrated
|
|
|
|
Group: Productivity/Networking/Security
|
|
|
|
|
|
|
|
%description lighttpd
|
|
|
|
This adds a configuration file for dehydrated's acme-challenge to lighttpd.
|
|
|
|
%endif #with lighttpd
|
2017-01-27 11:00:22 +01:00
|
|
|
|
|
|
|
%pre
|
|
|
|
getent group %{_user} >/dev/null || /usr/sbin/groupadd -r %{_user}
|
|
|
|
getent passwd %{_user} >/dev/null || /usr/sbin/useradd -g %{_user} \
|
|
|
|
-s /bin/false -r -c "%{_user}" -d %{_home} %{_user}
|
|
|
|
if [ -d /etc/letsencrypt.sh ]; then mv /etc/letsencrypt.sh /etc/dehydrated; chown -R %{_user} /etc/dehydrated; fi
|
|
|
|
if [ -e /etc/dehydrated/config.sh ]; then mv /etc/dehydrated/config.sh /etc/dehydrated/config; fi
|
|
|
|
|
2017-02-13 07:49:05 +01:00
|
|
|
%if %{with systemd}
|
2017-09-19 17:42:45 +02:00
|
|
|
%service_add_pre dehydrated-update.service dehydrated-update.timer
|
|
|
|
|
2017-02-13 07:49:05 +01:00
|
|
|
%post
|
|
|
|
systemd-tmpfiles --create %{_tmpfilesdir}/%{name}.conf ||:
|
2017-09-19 17:42:45 +02:00
|
|
|
%service_add_post dehydrated-update.service dehydrated-update.timer
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%service_del_preun dehydrated-update.service dehydrated-update.timer
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%service_del_postun dehydrated-update.service dehydrated-update.timer
|
2017-02-13 07:49:05 +01:00
|
|
|
%endif
|
|
|
|
|
2017-01-27 11:00:22 +01:00
|
|
|
%prep
|
|
|
|
%setup -q
|
2017-09-22 15:35:31 +02:00
|
|
|
%patch1 -p1
|
|
|
|
%patch2 -p1
|
2017-01-27 11:00:22 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
|
|
|
# sensitive keys
|
2017-02-13 07:49:05 +01:00
|
|
|
mkdir -p %{buildroot}%{_home}/{accounts,certs}
|
2017-09-19 17:42:45 +02:00
|
|
|
mkdir -p %{buildroot}%{_sbindir}
|
2017-09-22 15:35:31 +02:00
|
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
|
|
|
mkdir -p %{buildroot}%{_home}/config.d
|
|
|
|
mkdir -p %{buildroot}%{_home}/hooks # used by hook packages
|
|
|
|
|
|
|
|
cat %{SOURCE8} | gzip > %{buildroot}%{_mandir}/man1/dehydrated.1.gz
|
2017-01-27 11:00:22 +01:00
|
|
|
|
|
|
|
sed -i "s,#WELLKNOWN=.*,WELLKNOWN=%{_challengedir},g" docs/examples/config
|
|
|
|
install -m 0644 docs/examples/* %{buildroot}%{_home}
|
|
|
|
install -m 0755 -d %{buildroot}/usr/bin
|
|
|
|
install -m 0755 dehydrated %{buildroot}/usr/bin
|
|
|
|
install -m 0755 -d %{buildroot}%{_challengedir}
|
|
|
|
|
|
|
|
install -m 0755 -d %{buildroot}/etc/%{_apache}/conf.d
|
|
|
|
sed "s,@CHALLENGEDIR@,%{_challengedir},g" %{SOURCE1} > acme-challenge.conf
|
|
|
|
install -m 0644 acme-challenge.conf %{buildroot}/etc/%{_apache}/conf.d
|
2017-02-13 07:49:05 +01:00
|
|
|
|
|
|
|
%if %{with nginx}
|
2017-01-27 11:00:22 +01:00
|
|
|
install -m 0755 -d %{buildroot}/etc/nginx
|
|
|
|
sed "s,@CHALLENGEDIR@,%{_challengedir},g" %{SOURCE2} > acme-challenge
|
|
|
|
install -m 0644 acme-challenge %{buildroot}/etc/nginx
|
2017-02-13 07:49:05 +01:00
|
|
|
%endif #with nginx
|
|
|
|
|
|
|
|
%if %{with lighttpd}
|
|
|
|
install -m 0755 -d %{buildroot}/etc/lighttpd/conf.d
|
|
|
|
sed "s,@CHALLENGEDIR@,%{_challengedir},g" %{SOURCE3} > acme-challenge
|
|
|
|
install -m 0644 acme-challenge %{buildroot}/etc/lighttpd/conf.d
|
|
|
|
%endif #with lighttpd
|
|
|
|
|
|
|
|
%if %{with systemd}
|
|
|
|
install -D -m 0644 %{S:5} %{buildroot}%{_tmpfilesdir}/%{name}.conf
|
2017-09-19 17:42:45 +02:00
|
|
|
sed "s,@USER@,%{_user},g" %{S:6} > dehydrated-update.service
|
|
|
|
# Use timer
|
|
|
|
install -D -m 644 dehydrated-update.service %{buildroot}%{_unitdir}/dehydrated-update.service
|
|
|
|
install -D -m 644 %{S:7} %{buildroot}%{_unitdir}/dehydrated-update.timer
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
ln -s /usr/sbin/service %{buildroot}%{_sbindir}/rcdehydrated-update
|
2017-02-13 07:49:05 +01:00
|
|
|
%endif
|
2017-09-19 17:42:45 +02:00
|
|
|
%else #with systemd
|
|
|
|
install -D -d -m 0750 %{buildroot}%{_lock_dir}
|
|
|
|
# Use cron
|
|
|
|
install -m 0755 -d %{buildroot}/etc/cron.d
|
|
|
|
sed "s,@USER@,%{_user},g" %{SOURCE4} > dehydrated.cron
|
|
|
|
install -m 0644 dehydrated.cron %{buildroot}/etc/cron.d/dehydrated
|
|
|
|
%endif #with systemd
|
2017-09-22 15:35:31 +02:00
|
|
|
|
|
|
|
# Adjust config file
|
|
|
|
perl -p -i -e 's|#LOCKFILE="\$\{BASEDIR\}/lock"|LOCKFILE="%{_lock_dir}/lock"|' %{buildroot}%{_home}/config
|
|
|
|
perl -p -i -e 's|#CONFIG_D=|CONFIG_D="%{_home}/config.d"|' %{buildroot}%{_home}/config
|
|
|
|
perl -p -i -e 's|#DEHYDRATED_USER=|DEHYDRATED_USER="%{_user}"|' %{buildroot}%{_home}/config
|
|
|
|
perl -p -i -e 's|#DEHYDRATED_GROUP=|DEHYDRATED_GROUP="%{_user}"|' %{buildroot}%{_home}/config
|
|
|
|
|
2017-02-13 07:49:05 +01:00
|
|
|
diff -urN docs/examples/config %{buildroot}%{_home}/config ||:
|
2017-01-27 11:00:22 +01:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2017-02-13 07:49:05 +01:00
|
|
|
%attr(750,root,%{_user}) %dir %{_sysconfdir}/dehydrated
|
|
|
|
%attr(700,%{_user},%{_user}) %dir %{_sysconfdir}/dehydrated/accounts
|
|
|
|
%attr(700,%{_user},%{_user}) %dir %{_sysconfdir}/dehydrated/certs
|
|
|
|
%config(noreplace) %attr(640,root,%{_user}) %{_sysconfdir}/dehydrated/config
|
2017-09-22 15:35:31 +02:00
|
|
|
%config(noreplace) %attr(750,root,%{_user}) %{_sysconfdir}/dehydrated/config.d
|
2017-02-13 07:49:05 +01:00
|
|
|
%config(noreplace) %attr(640,root,%{_user}) %{_sysconfdir}/dehydrated/domains.txt
|
|
|
|
%config(noreplace) %attr(750,root,%{_user}) %{_sysconfdir}/dehydrated/hook.sh
|
2017-09-22 15:35:31 +02:00
|
|
|
%config(noreplace) %attr(750,root,%{_user}) %{_sysconfdir}/dehydrated/hooks
|
2017-01-27 11:00:22 +01:00
|
|
|
%{_bindir}/dehydrated
|
|
|
|
%attr(-,%{_user},root) %dir %{_localstatedir}/lib/acme-challenge
|
2017-09-22 15:35:31 +02:00
|
|
|
%{_mandir}/man1/*
|
2017-01-27 11:00:22 +01:00
|
|
|
%doc LICENSE README.md docs/*.md docs/*.jpg
|
2017-02-13 07:49:05 +01:00
|
|
|
%if %{with systemd}
|
|
|
|
%{_tmpfilesdir}/%{name}.conf
|
2017-09-19 17:42:45 +02:00
|
|
|
%{_unitdir}/dehydrated-update.service
|
|
|
|
%{_unitdir}/dehydrated-update.timer
|
|
|
|
%{_sbindir}/rcdehydrated-update
|
2017-02-13 07:49:05 +01:00
|
|
|
%ghost %attr(700,%{_user},%{_user}) %dir %{_lock_dir}
|
|
|
|
%else
|
2017-09-19 17:42:45 +02:00
|
|
|
%config %{_sysconfdir}/cron.d/dehydrated
|
2017-02-13 07:49:05 +01:00
|
|
|
%attr(700,%{_user},%{_user}) %dir %{_lock_dir}
|
|
|
|
%endif
|
2017-01-27 11:00:22 +01:00
|
|
|
|
|
|
|
%files %{_apache}
|
|
|
|
%defattr(-,root,root,-)
|
2017-02-13 07:49:05 +01:00
|
|
|
%config %{_sysconfdir}/%{_apache}/conf.d/acme-challenge.conf
|
2017-01-27 11:00:22 +01:00
|
|
|
|
2017-02-13 07:49:05 +01:00
|
|
|
%if %{with nginx}
|
2017-01-27 11:00:22 +01:00
|
|
|
%files nginx
|
|
|
|
%defattr(-,root,root,-)
|
2017-02-13 07:49:05 +01:00
|
|
|
%config %attr(640,root,nginx) %{_sysconfdir}/nginx/acme-challenge
|
|
|
|
%endif #with nginx
|
2017-01-27 11:00:22 +01:00
|
|
|
|
2017-02-13 07:49:05 +01:00
|
|
|
%if %{with lighttpd}
|
|
|
|
%files lighttpd
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%config %attr(640,root,lighttpd) %{_sysconfdir}/lighttpd/conf.d/acme-challenge
|
|
|
|
%endif #with lighttpd
|
2017-01-27 11:00:22 +01:00
|
|
|
|
2017-02-13 07:49:05 +01:00
|
|
|
%changelog
|