Update to latest upstream version, v14
This commit is contained in:
parent
1c516e45a0
commit
3830667585
12
clevis.spec
12
clevis.spec
@ -1,6 +1,6 @@
|
|||||||
Name: clevis
|
Name: clevis
|
||||||
Version: 13
|
Version: 14
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Automated decryption framework
|
Summary: Automated decryption framework
|
||||||
|
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
@ -38,6 +38,7 @@ Requires: jose >= 8
|
|||||||
Requires: curl
|
Requires: curl
|
||||||
Requires(pre): shadow-utils
|
Requires(pre): shadow-utils
|
||||||
Recommends: cracklib-dicts
|
Recommends: cracklib-dicts
|
||||||
|
Recommends: clevis-pin-tpm2
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Clevis is a framework for automated decryption. It allows you to encrypt
|
Clevis is a framework for automated decryption. It allows you to encrypt
|
||||||
@ -118,6 +119,10 @@ getent group %{name} >/dev/null || groupadd -r %{name}
|
|||||||
getent passwd %{name} >/dev/null || \
|
getent passwd %{name} >/dev/null || \
|
||||||
useradd -r -g %{name} -d %{_localstatedir}/cache/%{name} -s /sbin/nologin \
|
useradd -r -g %{name} -d %{_localstatedir}/cache/%{name} -s /sbin/nologin \
|
||||||
-c "Clevis Decryption Framework unprivileged user" %{name}
|
-c "Clevis Decryption Framework unprivileged user" %{name}
|
||||||
|
# Add clevis user to tss group.
|
||||||
|
if getent group tss >/dev/null && ! groups %{name} | grep -q "\btss\b"; then
|
||||||
|
usermod -a -G tss %{name}
|
||||||
|
fi
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -165,6 +170,9 @@ exit 0
|
|||||||
%attr(4755, root, root) %{_libexecdir}/%{name}-luks-udisks2
|
%attr(4755, root, root) %{_libexecdir}/%{name}-luks-udisks2
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Aug 31 2020 Sergio Correia <scorreia@redhat.com> - 14-1
|
||||||
|
- Update to new clevis upstream release, v14.
|
||||||
|
|
||||||
* Sun Aug 02 2020 Benjamin Gilbert <bgilbert@redhat.com> - 13-3
|
* Sun Aug 02 2020 Benjamin Gilbert <bgilbert@redhat.com> - 13-3
|
||||||
- Downgrade cracklib-dicts to Recommends
|
- Downgrade cracklib-dicts to Recommends
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user