From e61c812f5f652c87cae76bdd155249cda14dcdff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Smodi=C5=A1?= Date: Mon, 5 Oct 2015 21:27:39 +0200 Subject: Implemented systemd unit files to manage CodeQ daemons. --- scripts/systemd/codeq-server.service | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 scripts/systemd/codeq-server.service (limited to 'scripts/systemd/codeq-server.service') 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 + -- cgit v1.2.1