测试发现 systemd中 timers可以实现相同功能
# 创建 service 文件
cat << EOF > /etc/systemd/system/vxSSLupdate.service
[Unit]
Description=Update SSL certificate
[Service]
ExecStart= /path/to/vxSSLupdate.sh
EOF
# 创建 timer 文件
cat << EOF > /etc/systemd/system/vxSSLupdate.timer
[Unit]
Description=Run vxSSLupdate daily
[Timer]
OnCalendar=daily
Persistent=true
[Install]
WantedBy=timers.target
EOF
# 重新加载 systemd,使其识别新的 service 和 timer
systemctl daemon-reload
# 启动并使 timer 持久化
systemctl start vxSSLupdate.timer
systemctl enable vxSSLupdate.timer```