176 lines
5.7 KiB
RPMSpec
176 lines
5.7 KiB
RPMSpec
Summary: openEuler Security Tool
|
|
Name : security-tool
|
|
Version: 2.0
|
|
Release: 1.52
|
|
Source0: https://gitee.com/openeuler/security-tool/repository/archive/v2.0.tar.gz
|
|
License: Mulan PSL v2
|
|
URL: https://gitee.com/openeuler/security-tool
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
Requires: bash setup pam util-linux binutils sudo crontabs cronie
|
|
Requires: shadow initscripts ca-certificates openssh rsyslog dbus-daemon
|
|
Requires(post): systemd-units
|
|
Requires(preun): systemd-units
|
|
Requires(postun): systemd-units
|
|
BuildRequires: xauth
|
|
|
|
Patch0: Use-secure-MACs-and-KexAlgorithms.patch
|
|
Patch1: do-not-create-allow-file-while-the-command-does-not-.patch
|
|
Patch2: remove-sha1-in-sshd-config.patch
|
|
|
|
%description
|
|
openEuler Security Tool
|
|
|
|
%global debug_package %{nil}
|
|
|
|
%prep
|
|
%autosetup -n security-tool -p1
|
|
|
|
%build
|
|
|
|
%check
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
install -d -m0700 $RPM_BUILD_ROOT%{_sysconfdir}/openEuler_security
|
|
install -m0600 security $RPM_BUILD_ROOT%{_sysconfdir}/openEuler_security/security
|
|
install -m0400 security.conf $RPM_BUILD_ROOT%{_sysconfdir}/openEuler_security/security.conf
|
|
install -m0600 usr-security.conf $RPM_BUILD_ROOT%{_sysconfdir}/openEuler_security/usr-security.conf
|
|
install -d -m0755 $RPM_BUILD_ROOT/%{_unitdir}
|
|
install -m0644 openEuler-security.service $RPM_BUILD_ROOT/%{_unitdir}/openEuler-security.service
|
|
install -d -m0755 $RPM_BUILD_ROOT/%{_sbindir}
|
|
install -m0500 security-tool.sh $RPM_BUILD_ROOT/%{_sbindir}/security-tool.sh
|
|
install -m0644 security-tool-%{version}/csh.precmd $RPM_BUILD_ROOT%{_sysconfdir}/csh.precmd
|
|
install -d -m0755 $RPM_BUILD_ROOT/%{_sysconfdir}/profile.d
|
|
install -d -m0755 $RPM_BUILD_ROOT/%{_sysconfdir}/pam.d
|
|
install -m0644 security-tool-%{version}/password-auth-crond $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/password-auth-crond
|
|
install -m0644 security-tool-%{version}/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) %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
|
|
* Mon Feb 7 2022 renmingshuai <renmingshuai@huawei.com> - 2.0-1.52
|
|
- remove sha1 in sshd_config
|
|
|
|
* Thu Mar 18 2021 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.51
|
|
- do not create allow file while the command does not exist
|
|
|
|
* Fri Oct 9 2020 gaoyusong <gaoyusong1@huawei.com> - 2.0-1.50
|
|
- Use secure MACs and KexAlgorithms
|
|
|
|
* Thu Sep 17 2020 gaoyusong <gaoyusong1@huawei.com> - 2.0-1.49
|
|
- Upgrade to v2.0
|
|
|
|
* Fri Jul 3 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.48
|
|
- rm zzz_openEuler_history.sh
|
|
|
|
* Fri May 29 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.47
|
|
- Move -- befora path
|
|
|
|
* Fri May 29 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.46
|
|
- Do not set umask to 077 any more
|
|
|
|
* Thu May 7 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.45
|
|
- Update LICENSE of files
|
|
|
|
* Wed Apr 29 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.44
|
|
- Update LICENSE to Mulan PSL v2.0
|
|
|
|
* 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
|
|
- Fix problems of script caused by "*" and multiple spaces
|
|
|
|
* Wed Jan 22 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.41
|
|
- Fix the problem of dbus-daemon-launch-helper's group
|
|
|
|
* Sun Jan 12 2020 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.40
|
|
- Delete password-auth-local and system-auth-local
|
|
|
|
* Sun Dec 29 2019 openEuler Buildteam <buildteam@openEuler.org> - 2.0-1.39
|
|
- Add copyright for su-local
|
|
|
|
* 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
|