[email protected]
是我的模板服务单位。
[Unit]
Description=my service unit
[Service]
Type=oneshot
ExecStart=/home/username/scripts/myprogram.py %I
我想%I
成为--arg1 --arg2=/path/to/something
我试过...
systemctl start myservice@'--arg1 --arg2=/path/to/something'.service
但它认为--arg1
这是一个糟糕的选择systemctl
。和...
systemctl start $(systemd-escape --template [email protected] '--arg1 --arg2=/path/to/something'
认为--arg1
是一个糟糕的选择systemd-escape
。
请帮忙