Files
gitlab-instance-0a899031_sh/d2ypp2/scripts/linux/refresh_live_console_unit.sh
eric 78e1308063 ss
2026-05-19 06:47:07 +00:00

16 lines
560 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env bash
# git pull 后若改了 systemd 模板(如 live-console 或 Neko watcher执行本脚本重写对应 unit 并 enable --now
set -euo pipefail
SELF_DIR="$(cd "$(dirname "$0")" && pwd)"
INSTALL_TAG="refresh-unit"
. "$SELF_DIR/lib/common.sh"
ensure_root "$@"
load_env
log "Rewriting /etc/systemd/system/live-console.service from repo"
install_live_console_service
log "Rewriting /etc/systemd/system/live-neko-ip-watch.service from repo"
install_neko_ip_watch_service
log "Done. Check: systemctl status live-console.service --no-pager"