From 416a8f70759bccfda2597ba147e49462cd6bbdc6 Mon Sep 17 00:00:00 2001 From: shixuantong Date: Mon, 27 May 2024 09:52:07 +0800 Subject: [PATCH] create /etc/at.allow (cherry picked from commit 7589166a4076f51397792a7b8adccf5f2cddb7f9) --- at.spec | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/at.spec b/at.spec index 5863664..765a8c8 100644 --- a/at.spec +++ b/at.spec @@ -1,6 +1,6 @@ Name: at Version: 3.2.2 -Release: 5 +Release: 6 Summary: A job manager License: GPLv3+, GPLv2+, ISC, MIT, Public Domain URL: http://ftp.debian.org/debian/pool/main/a/at @@ -95,6 +95,11 @@ make test %systemd_preun atd.service %post +if ! test -f %{_sysconfdir}/at.allow; then + touch %{_sysconfdir}/at.allow + chown root:root %{_sysconfdir}/at.allow + chmod og-rwx %{_sysconfdir}/at.allow +fi touch %{_localstatedir}/spool/at/.SEQ chmod 600 %{_localstatedir}/spool/at/.SEQ chown root:root %{_localstatedir}/spool/at/.SEQ @@ -124,6 +129,12 @@ chown root:root %{_localstatedir}/spool/at/.SEQ %{_mandir}/man*/* %changelog +* Mon May 27 2024 shixuantong - 3.2.2-6 +- Type:bugfix +- ID:NA +- SUG:NA +- DESC:create /etc/at.allow + * Fri May 24 2024 shixuantong - 3.2.2-5 - Type:bugfix - ID:NA -- Gitee