diff options
Diffstat (limited to 'scripts/systemd/codeq-server.service')
-rw-r--r-- | scripts/systemd/codeq-server.service | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/systemd/codeq-server.service b/scripts/systemd/codeq-server.service new file mode 100644 index 0000000..26e05f9 --- /dev/null +++ b/scripts/systemd/codeq-server.service @@ -0,0 +1,15 @@ +# /etc/systemd/system/codeq-server.service +[Unit] +Wants=postgresql.service codeq-prolog.service +After=network.target postgresql.service codeq-prolog.service +Description=CodeQ server + +[Service] +ExecStart=/usr/bin/python3 /var/local/codeq-server/daemon.py +Restart=on-failure +Type=simple +StandardInput=null +StandardOutput=null +StandardError=null +EnvironmentFile=-/etc/default/codeq + |