mirror of
https://github.com/bestnite/quadlet-migrator-skill.git
synced 2026-04-26 19:21:53 +00:00
Add helper script templates and align reference guidance.
Point helper-script generation at shared templates, tighten prefix-based Quadlet handling, and refresh the bundled Quadlet reference formatting. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
# Stop the reviewed lifecycle unit(s).
|
||||
# Update the variables and systemctl_cmd() function below before using this template.
|
||||
|
||||
LIFECYCLE_UNITS='app-pod.service'
|
||||
|
||||
systemctl_cmd() {
|
||||
systemctl --user "$@"
|
||||
}
|
||||
|
||||
for unit in $LIFECYCLE_UNITS; do
|
||||
systemctl_cmd stop "$unit"
|
||||
done
|
||||
Reference in New Issue
Block a user