Systemdで複数の引数を渡すことが出来ず困っています
dotnetコマンドに対してdllのpathとrunという文字列を渡したいのですがうまくいきません
Bashからは実行する事が出来たのでSystemdの設定が悪いのだと思います
よろしくお願いいたします
###試したこと
"dllPath" "run"
"dllPath run"
dllPath run
Result
Failed with result 'exit-code'.
Serviceファイル
[Unit] Description=description After=network.target [Service] TimeoutStartSec=0 WorkingDirectory= /home/username/project ExecStart=/root/dotnet/dotnet /home/username/project/project.dll run Restart=on-failure RestartSec=5s [Install] WantedBy=default.target
あなたの回答
tips
プレビュー