Changes in the getent command

This commit is contained in:
Sofia Boldyreva 2023-12-08 14:10:26 +01:00
parent 4b1df610cc
commit 7b6490cfcc
1 changed files with 5 additions and 2 deletions

View File

@ -153,8 +153,8 @@ rm -f $RPM_BUILD_ROOT%{_pkgdocdir}/contrib/multilevel-init.patch
rm -rf $RPM_BUILD_ROOT%{_pkgdocdir}/sample/sample-keys
%pre
getent group openvpn &>/dev/null || groupadd -r openvpn
getent passwd openvpn &>/dev/null || \
getent group openvpn >/dev/null 2>&1 || groupadd -r openvpn
getent passwd openvpn >/dev/null 2>&1 || \
/usr/sbin/useradd -r -g openvpn -s /sbin/nologin -c OpenVPN \
-d /etc/openvpn openvpn
exit 0
@ -205,6 +205,9 @@ done
%changelog
* Fri Dec 8 2023 Elkhan Mammadli <elkhan.mammadli@protonmail.com> - 2.5.9-3
- Changes in the commands with 2>&1 (%% pre section)
* Wed Dec 6 2023 Elkhan Mammadli <elkhan.mammadli@protonmail.com> - 2.5.9-3
- Added Requires(pre): /usr/sbin/groupadd
- Added exit 0 to the %%pre section