This commit is contained in:
qiaofeng1227 2023-11-08 16:12:10 +08:00
parent 996fb99dc2
commit d3a27e5579

View File

@ -21,11 +21,8 @@ FILES="$cockpit_service_path $config_path"
# 监控文件发生变动时需要做的事情
on_change() {
set +e
# 从配置文件中获取端口号
cockpit_port=$(docker exec -i websoft9-apphub apphub getconfig --section cockpit --key port)
listen_stream=$(grep -Po 'ListenStream=\K[0-9]*' /lib/systemd/system/cockpit.socket)
if [ "$cockpit_port" != "$listen_stream" ]; then
sed -i "s/ListenStream=${listen_stream}/ListenStream=${cockpit_port}/" /lib/systemd/system/cockpit.socket
systemctl daemon-reload
@ -33,7 +30,6 @@ on_change() {
systemctl restart cockpit || exit 1
set_Firewalld
fi
set -e
}