selinux 允许自定义 systemd 服务

selinux 允许自定义 systemd 服务

在 RHEL 8.8 中,我有一个自定义的/etc/systemd/system/custom.service.

[Unit]
Description=custom

[Service]
Type=simple
ExecStart=/root/scripts/custom.sh

[Install]
WantedBy=default.target

/root/scripts/custom.sh的是root.root -rwx------

/var/log/messages我在有关 selinux 拒绝执行脚本的声明中看到。我需要做什么才能让我的/root/scripts/custom.sh脚本从我的运行custom.service

相关内容