2019-12-25 17:13:05 +08:00
|
|
|
Summary: openEuler Security Tool
|
|
|
|
|
Name : security-tool
|
|
|
|
|
Version: 2.0
|
2020-04-29 15:12:59 +08:00
|
|
|
Release: 1.44
|
2019-12-25 17:13:05 +08:00
|
|
|
Source0: %{name}-%{version}.tar.bz2
|
|
|
|
|
Source1: security
|
|
|
|
|
Source2: security.conf
|
|
|
|
|
Source3: security-tool.sh
|
|
|
|
|
Source4: openEuler-security.service
|
|
|
|
|
Source5: usr-security.conf
|
2020-04-29 15:12:59 +08:00
|
|
|
License: Mulan PSL v2
|
2019-12-25 17:13:05 +08:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
Requires: bash setup pam util-linux binutils sudo crontabs cronie
|
2020-01-22 14:34:49 +08:00
|
|
|
Requires: shadow initscripts ca-certificates openssh rsyslog dbus-daemon
|
2019-12-25 17:13:05 +08:00
|
|
|
Requires(post): systemd-units
|
|
|
|
|
Requires(preun): systemd-units
|
|
|
|
|
Requires(postun): systemd-units
|
|
|
|
|
BuildRequires: xauth
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
openEuler Security Tool
|
|
|
|
|
|
|
|
|
|
%global debug_package %{nil}
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
install -d -m0700 $RPM_BUILD_ROOT%{_sysconfdir}/openEuler_security
|
|
|
|
|
install -m0600 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/openEuler_security/security
|
|
|
|
|
install -m0400 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/openEuler_security/security.conf
|
|
|
|
|
install -m0600 %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/openEuler_security/usr-security.conf
|
|
|
|
|
install -d -m0755 $RPM_BUILD_ROOT/%{_unitdir}
|
|
|
|
|
install -m0644 %{SOURCE4} $RPM_BUILD_ROOT/%{_unitdir}/openEuler-security.service
|
|
|
|
|
install -d -m0755 $RPM_BUILD_ROOT/%{_sbindir}
|
|
|
|
|
install -m0500 %{SOURCE3} $RPM_BUILD_ROOT/%{_sbindir}/security-tool.sh
|
|
|
|
|
install -m0644 csh.precmd $RPM_BUILD_ROOT%{_sysconfdir}/csh.precmd
|
|
|
|
|
install -d -m0755 $RPM_BUILD_ROOT/%{_sysconfdir}/profile.d
|
|
|
|
|
install -m0644 zzz_openEuler_history.csh $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/zzz_openEuler_history.csh
|
|
|
|
|
install -m0644 zzz_openEuler_history.sh $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/zzz_openEuler_history.sh
|
|
|
|
|
install -d -m0755 $RPM_BUILD_ROOT/%{_sysconfdir}/pam.d
|
|
|
|
|
install -m0644 password-auth-crond $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/password-auth-crond
|
|
|
|
|
install -m0644 su-local $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/su-local
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
%pre
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
sed -i 's/password-auth$/password-auth-crond/g' /etc/pam.d/crond
|
|
|
|
|
|
|
|
|
|
if [ $1 -ge 2 ]
|
|
|
|
|
then
|
|
|
|
|
sed -i 's/readonly HISTSIZE$//g' /etc/profile
|
|
|
|
|
sed -i 's/readonly TMOUT$//g' /etc/profile
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ -h /etc/pam.d/su ]
|
|
|
|
|
then
|
|
|
|
|
rm -f /etc/pam.d/su
|
|
|
|
|
else
|
|
|
|
|
mv -f /etc/pam.d/su /etc/pam.d/su-bak
|
|
|
|
|
fi
|
|
|
|
|
ln -s /etc/pam.d/su-local /etc/pam.d/su
|
|
|
|
|
|
|
|
|
|
%systemd_post openEuler-security.service
|
|
|
|
|
systemctl enable openEuler-security.service
|
|
|
|
|
|
|
|
|
|
%preun
|
|
|
|
|
%systemd_preun openEuler-security.service
|
|
|
|
|
if [ $1 -eq 0 ]
|
|
|
|
|
then
|
|
|
|
|
sed -i 's/password-auth-crond$/password-auth/g' /etc/pam.d/crond
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
%postun
|
|
|
|
|
%systemd_postun_with_restart openEuler-security.service
|
|
|
|
|
|
|
|
|
|
if [ $1 -eq 0 ]
|
|
|
|
|
then
|
|
|
|
|
|
|
|
|
|
if [ -f /etc/pam.d/su-bak ]
|
|
|
|
|
then
|
|
|
|
|
mv -f /etc/pam.d/su-bak /etc/pam.d/su
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ -f /etc/pam.d/password-auth-ac ]
|
|
|
|
|
then
|
|
|
|
|
rm -f /etc/pam.d/password-auth
|
|
|
|
|
ln -s /etc/pam.d/password-auth-ac /etc/pam.d/password-auth
|
|
|
|
|
elif [ -f /etc/pam.d/password-auth-bak ]
|
|
|
|
|
then
|
|
|
|
|
mv -f /etc/pam.d/password-auth-bak /etc/pam.d/password-auth
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ -f /etc/pam.d/system-auth-ac ]
|
|
|
|
|
then
|
|
|
|
|
rm -f /etc/pam.d/system-auth
|
|
|
|
|
ln -s /etc/pam.d/system-auth-ac /etc/pam.d/system-auth
|
|
|
|
|
elif [ -f /etc/pam.d/system-auth-bak ]
|
|
|
|
|
then
|
|
|
|
|
mv -f /etc/pam.d/system-auth-bak /etc/pam.d/system-auth
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
%attr(0700,root,root) %dir %{_sysconfdir}/openEuler_security
|
|
|
|
|
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/openEuler_security/security
|
|
|
|
|
%attr(0400,root,root) %config %{_sysconfdir}/openEuler_security/security.conf
|
|
|
|
|
%attr(0600,root,root) %config %{_sysconfdir}/openEuler_security/usr-security.conf
|
|
|
|
|
%attr(0644,root,root) %{_sysconfdir}/csh.precmd
|
|
|
|
|
%attr(0644,root,root) %{_sysconfdir}/profile.d/zzz_openEuler_history.csh
|
|
|
|
|
%attr(0644,root,root) %{_sysconfdir}/profile.d/zzz_openEuler_history.sh
|
|
|
|
|
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/pam.d/password-auth-crond
|
|
|
|
|
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/pam.d/su-local
|
|
|
|
|
%attr(0644,root,root) %{_unitdir}/openEuler-security.service
|
|
|
|
|
%attr(0500,root,root) %{_sbindir}/security-tool.sh
|
|
|
|
|
|
|
|
|
|
%changelog
|
2020-04-29 15:12:59 +08:00
|
|
|
* Wed Apr 29 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.44
|
|
|
|
|
- Allow wheel group to use sudo by default
|
|
|
|
|
|
2020-02-21 17:37:10 +08:00
|
|
|
* Fri Feb 21 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.43
|
|
|
|
|
- Allow wheel group to use sudo by default
|
|
|
|
|
|
|
|
|
|
* Wed Jan 22 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.42
|
2020-02-19 14:48:54 +08:00
|
|
|
- Fix problems of script caused by "*" and multiple spaces
|
|
|
|
|
|
2020-01-22 14:34:49 +08:00
|
|
|
* Wed Jan 22 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.41
|
|
|
|
|
- Fix the problem of dbus-daemon-launch-helper's group
|
|
|
|
|
|
2020-01-13 09:11:23 +08:00
|
|
|
* Sun Jan 12 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.40
|
2020-01-12 16:54:57 +08:00
|
|
|
- Delete password-auth-local and system-auth-local
|
|
|
|
|
|
2019-12-29 10:59:34 +08:00
|
|
|
* Sun Dec 29 2019 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.39
|
|
|
|
|
- Add copyright for su-local
|
|
|
|
|
|
2019-12-25 17:13:05 +08:00
|
|
|
* Thu Dec 19 2019 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.38
|
|
|
|
|
- Delete unused infomation
|
|
|
|
|
|
|
|
|
|
* Mon Nov 11 2019 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.37
|
|
|
|
|
- Modify License
|
|
|
|
|
|
|
|
|
|
* Mon Sep 25 2019 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.36
|
|
|
|
|
- Add requires
|
|
|
|
|
|
|
|
|
|
* Mon Sep 16 2019 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.35
|
|
|
|
|
- Package init for openEuler
|