!90 在源码中避免使用硬编码vendor name
From: @chenxi-mao Reviewed-by: @gwei3 Signed-off-by: @gwei3
This commit is contained in:
commit
d16867a6e6
41
Do-not-hard-code-vendor-name-in-source-code.patch
Normal file
41
Do-not-hard-code-vendor-name-in-source-code.patch
Normal file
@ -0,0 +1,41 @@
|
||||
From d9e61c144ba0988c4931d516f754673678a0b026 Mon Sep 17 00:00:00 2001
|
||||
From: Chenxi Mao <chenxi.mao@suse.com>
|
||||
Date: Fri, 6 Jan 2023 15:04:13 +0800
|
||||
Subject: [PATCH 1/1] Do not hard code vendor name in source code
|
||||
|
||||
Signed-off-by: Chenxi Mao <chenxi.mao@suse.com>
|
||||
---
|
||||
openEuler-security.service => custom-security.service | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
rename openEuler-security.service => custom-security.service (81%)
|
||||
|
||||
diff --git a/openEuler-security.service b/custom-security.service
|
||||
similarity index 81%
|
||||
rename from openEuler-security.service
|
||||
rename to custom-security.service
|
||||
index ab60920..0e15e5f 100644
|
||||
--- a/openEuler-security.service
|
||||
+++ b/custom-security.service
|
||||
@@ -14,7 +14,7 @@
|
||||
#######################################################################################
|
||||
|
||||
[Unit]
|
||||
-Description=OpenEuler Security Tool
|
||||
+Description=@VENDOR@ Security Tool
|
||||
After=network.target sshd.service auditd.service crond.service tuned.service NetworkManager.service
|
||||
Wants=sshd.service auditd.service rsyslog.service tuned.service NetworkManager.service
|
||||
ConditionFileIsExecutable=/usr/sbin/security-tool.sh
|
||||
@@ -22,8 +22,8 @@ ConditionFileIsExecutable=/usr/sbin/security-tool.sh
|
||||
[Service]
|
||||
Type=oneshot
|
||||
RemainAfterExit=yes
|
||||
-EnvironmentFile=/etc/openEuler_security/security
|
||||
-ExecStart=/usr/sbin/security-tool.sh -d / -c /etc/openEuler_security/security.conf -u /etc/openEuler_security/usr-security.conf -l /var/log/openEuler-security.log -s
|
||||
+EnvironmentFile=/etc/@VENDOR@_security/security
|
||||
+ExecStart=/usr/sbin/security-tool.sh -d / -c /etc/@VENDOR@_security/security.conf -u /etc/@VENDOR@_security/usr-security.conf -l /var/log/@VENDOR@-security.log -s
|
||||
TimeoutSec=0
|
||||
|
||||
[Install]
|
||||
--
|
||||
2.33.0
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
Summary: openEuler Security Tool
|
||||
Name : security-tool
|
||||
Version: 2.0
|
||||
Release: 1.85
|
||||
Release: 1.86
|
||||
Source0: https://gitee.com/openeuler/security-tool/repository/archive/v2.0.tar.gz
|
||||
License: MulanPSL-2.0
|
||||
URL: https://gitee.com/openeuler/security-tool
|
||||
@ -19,6 +19,7 @@ Patch1: do-not-create-allow-file-while-the-command-does-not-.patch
|
||||
Patch2: remove-sha1-in-sshd-config.patch
|
||||
Patch3: fix-function-allow-rpm-q.patch
|
||||
Patch4: add-secure-hostKey-algorithms.patch
|
||||
Patch5: Do-not-hard-code-vendor-name-in-source-code.patch
|
||||
|
||||
%description
|
||||
%{vendor} Security Tool
|
||||
@ -27,6 +28,7 @@ Patch4: add-secure-hostKey-algorithms.patch
|
||||
|
||||
%prep
|
||||
%autosetup -n security-tool-v%{version} -p1
|
||||
sed -i 's|@VENDOR@|%{vendor}|g' custom-security.service
|
||||
|
||||
%build
|
||||
|
||||
@ -39,7 +41,7 @@ install -m0600 security $RPM_BUILD_ROOT%{_sysconfdir}/%{vendor}_security/securit
|
||||
install -m0400 security.conf $RPM_BUILD_ROOT%{_sysconfdir}/%{vendor}_security/security.conf
|
||||
install -m0600 usr-security.conf $RPM_BUILD_ROOT%{_sysconfdir}/%{vendor}_security/usr-security.conf
|
||||
install -d -m0755 $RPM_BUILD_ROOT/%{_unitdir}
|
||||
install -m0644 %{vendor}-security.service $RPM_BUILD_ROOT/%{_unitdir}/%{vendor}-security.service
|
||||
install -m0644 custom-security.service $RPM_BUILD_ROOT/%{_unitdir}/%{vendor}-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
|
||||
@ -123,6 +125,9 @@ fi
|
||||
%attr(0500,root,root) %{_sbindir}/security-tool.sh
|
||||
|
||||
%changelog
|
||||
* Fri Jan 6 2023 Chenxi Mao <chenxi.mao@suse.com> - 2.0-1.86
|
||||
- Do not hard code vendor name in source code
|
||||
|
||||
* Sat Nov 26 2022 zhengxiaoxiao <zhengxiaoxiao2@huawei.com> - 2.0-1.85
|
||||
- replace openEuler to vendor
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user