1 |
%define name smeserver-letsencrypt |
%define name smeserver-letsencrypt |
2 |
%define version 0.4 |
%define version 0.4 |
3 |
%define release 1 |
%define release 6 |
4 |
Summary: Plugin to enable letsencrypt certificates |
Summary: Plugin to enable letsencrypt certificates |
5 |
Name: %{name} |
Name: %{name} |
6 |
Version: %{version} |
Version: %{version} |
9 |
URL: https://letsencrypt.org/ |
URL: https://letsencrypt.org/ |
10 |
Group: SMEserver/addon |
Group: SMEserver/addon |
11 |
Source: %{name}-%{version}.tar.gz |
Source: %{name}-%{version}.tar.gz |
12 |
|
Patch0: smeserver-letsencrypt-0.4-bz10253.patch |
13 |
|
Patch1: smeserver-letsencrypt-events.patch |
14 |
|
Patch2: smeserver-letsencrypt-events-fix.patch |
15 |
|
|
16 |
BuildRoot: /var/tmp/%{name}-%{version} |
BuildRoot: /var/tmp/%{name}-%{version} |
17 |
BuildArchitectures: noarch |
BuildArchitectures: noarch |
18 |
BuildRequires: e-smith-devtools |
BuildRequires: e-smith-devtools |
19 |
Requires: e-smith-release >= 8.0 |
Requires: e-smith-release >= 9.0 |
20 |
Requires: dehydrated >= 0.3.1 |
Requires: dehydrated >= 0.5 |
21 |
AutoReqProv: no |
AutoReqProv: no |
22 |
|
|
23 |
%description |
%description |
25 |
https://letsencrypt.org/ |
https://letsencrypt.org/ |
26 |
|
|
27 |
%changelog |
%changelog |
28 |
|
* Wed Jun 06 2018 John Crisp <jcrisp@safeandsoundit.co.uk> 0.4-6.sme |
29 |
|
- Fix missing event actions [SME: 10315] |
30 |
|
|
31 |
|
* Thu May 31 2018 John Crisp <jcrisp@safeandsoundit.co.uk> 0.4-5.sme |
32 |
|
- Fix typo in Accept Terms |
33 |
|
- add domain-delete to createlinks [SME: 10315] |
34 |
|
- Update requires release to SME v9 |
35 |
|
- Update requires dehydrated to v0.5 |
36 |
|
|
37 |
|
* Fri Aug 18 2017 Jean-Philipe Pialasse <tests@pialasse.com> 0.4-4.sme |
38 |
|
- change ACCEPT_TERMS template position to appear after shebang in config file [SME: 10410] |
39 |
|
|
40 |
|
* Wed Jul 12 2017 Jean-Philipe Pialasse <tests@pialasse.com> 0.4-3.sme |
41 |
|
- remove workaround for curl dns resolution [SME: 10300] |
42 |
|
- should be corrected at dnscache level (djbdns-1.05-10) |
43 |
|
|
44 |
|
* Fri Apr 28 2017 Jean-Philipe Pialasse <tests@pialasse.com> 0.4-2.sme |
45 |
|
- help accept licence [SME: 10253] |
46 |
|
- workaround for curl issues |
47 |
|
- spec tidying |
48 |
|
|
49 |
* Sat Feb 04 2017 John Crisp <jcrisp@safeandsoundit.co.uk> 0.4-1 |
* Sat Feb 04 2017 John Crisp <jcrisp@safeandsoundit.co.uk> 0.4-1 |
50 |
- first attempt at using stock letsencrypt script |
- first attempt at using stock letsencrypt script |
51 |
|
|
170 |
|
|
171 |
%prep |
%prep |
172 |
%setup |
%setup |
173 |
|
%patch0 -p1 |
174 |
|
%patch1 -p1 |
175 |
|
%patch2 -p1 |
176 |
|
|
177 |
%build |
%build |
178 |
perl createlinks |
perl createlinks |
197 |
%preun |
%preun |
198 |
|
|
199 |
%post |
%post |
200 |
if [[ ! -e /etc/letsencrypt.sh ]]; |
# if previously installed letsencrypt.sh, but first migration to dehydrated |
201 |
then mv -f /etc/letsencrypt.sh /etc/letsencrypt.sh.old; |
if [[ -e /etc/letsencrypt.sh ]] && [[ ! -e /etc/dehydrated ]]; |
202 |
|
then |
203 |
|
# assume in production |
204 |
|
# CA="https://acme-v01.api.letsencrypt.org/directory" ; |
205 |
|
# CAHASH="$(echo "${CA}" | urlbase64)" |
206 |
|
# mkdir /etc/dehydrated; |
207 |
|
# mkdir -p /etc/dehydrated/accounts |
208 |
|
# cp -a /etc/letsencrypt.sh/private_key.json /etc/dehydrated/accounts/${CAHASH}/registration_info.json |
209 |
|
# cp -a /etc/letsencrypt.sh/private_key.pem /etc/dehydrated/accounts/${CAHASH}/account_key.pem |
210 |
|
# cp -a /etc/letsencrypt.sh/certs /etc/dehydrated/ |
211 |
|
mv -f /etc/letsencrypt.sh /etc/letsencrypt.sh.old; |
212 |
|
fi |
213 |
|
|
214 |
|
# if letsencrypt still there but already migrated to dehydrated |
215 |
|
if [[ -e /etc/letsencrypt.sh ]] && [[ -e /etc/dehydrated/certs ]]; |
216 |
|
then |
217 |
|
mv -f /etc/letsencrypt.sh /etc/letsencrypt.sh.old; |
218 |
fi |
fi |
219 |
|
|
220 |
|
# if first installation of dehydrated |
221 |
if [[ ! -e /etc/dehydrated ]]; |
if [[ ! -e /etc/dehydrated ]]; |
222 |
then mkdir /etc/dehydrated; |
then mkdir /etc/dehydrated; |
223 |
fi |
fi |
242 |
chown -R apache:shared /home/e-smith/files/ibays/Primary/html/.well-known |
chown -R apache:shared /home/e-smith/files/ibays/Primary/html/.well-known |
243 |
|
|
244 |
|
|
|
echo "###################################################################" |
|
|
echo "" |
|
|
echo "************************************************************" |
|
|
echo " NOTE ! letsencrypt.sh has had to be renamed to 'dehydrated'" |
|
|
echo "************************************************************" |
|
|
echo "" |
|
|
echo "# After install please set your db keys" |
|
|
echo "# Make sure you set the letsencrypt status key to test" |
|
|
echo "# Enable some domains or hosts" |
|
|
echo "# Then run the following" |
|
|
echo "# signal-event console-save" |
|
|
echo "# dehydrated -c" |
|
|
echo "# Once you are satisfied set the letsencrypt status key to enabled" |
|
|
echo "# mv /etc/dehydrated/private_key.pem /etc/dehydrated/private_key.test" |
|
|
echo "# Run the dehydrated file again to generate your keys" |
|
|
echo "# signal-event console-save" |
|
|
echo "# dehydrated -c -x" |
|
|
echo "# Thereafter only use" |
|
|
echo "# dehydrated -c" |
|
|
echo "# If you make any key changes run console-save first" |
|
|
echo "###################################################################" |
|
245 |
|
|
246 |
%postun |
%postun |