summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg2021-07-21 12:47:30 +0200
committerGeorg2021-07-21 12:47:30 +0200
commitb3cac70a7fd19c1f3e9aae6ac4fea528d7a85865 (patch)
tree6431154e8ea0e33e5f28d1302d20fdf9062f6a52
parenta7b59a951b5b884bb2ba0fd1105918d2d5150fcd (diff)
downloadsystem-b3cac70a7fd19c1f3e9aae6ac4fea528d7a85865.tar.gz
system-b3cac70a7fd19c1f3e9aae6ac4fea528d7a85865.tar.bz2
system-b3cac70a7fd19c1f3e9aae6ac4fea528d7a85865.zip
Initial Systemd Service Run: 2/3
Signed-off-by: Georg <georg@lysergic.dev>
-rw-r--r--systemd/calico.service12
-rw-r--r--systemd/confluence.service19
-rw-r--r--systemd/dyndns-pdns.service15
-rw-r--r--systemd/etherpad.service16
-rw-r--r--systemd/gitea.service21
-rw-r--r--systemd/kfcgi.service14
-rw-r--r--systemd/litterbox@.service16
-rw-r--r--systemd/pounce@.service14
-rw-r--r--systemd/shodan.service19
-rw-r--r--systemd/xen-orchestra.service16
10 files changed, 162 insertions, 0 deletions
diff --git a/systemd/calico.service b/systemd/calico.service
new file mode 100644
index 0000000..18bbbbf
--- /dev/null
+++ b/systemd/calico.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=calico
+Wants=network.target
+
+[Service]
+User=pounce
+Group=pounce
+ExecStart=/usr/local/bin/calico -H irc.lsd.systems -P 6561 /var/run/calico
+RuntimeDirectory=calico
+
+[Install]
+WantedBy=multi-user.target
diff --git a/systemd/confluence.service b/systemd/confluence.service
new file mode 100644
index 0000000..9a479e2
--- /dev/null
+++ b/systemd/confluence.service
@@ -0,0 +1,19 @@
+[Unit]
+Description = Confluence Server
+After=syslog.target network.target
+
+[Service]
+Type=forking
+#Environment=CONFLUENCE_HOME=/opt/atlassian/homes/confluence
+Environment=JAVA_HOME=/opt/jdk
+PermissionsStartOnly=true
+User=confluence
+Group=atlassian
+ExecStart=/opt/confluence/bin/startup.sh
+ExecStop=/opt/confluence/bin/shutdown.sh
+TimeoutStartSec=120
+TimeoutStopSec=600
+PrivateTmp=true
+
+[Install]
+WantedBy = multi-user.target
diff --git a/systemd/dyndns-pdns.service b/systemd/dyndns-pdns.service
new file mode 100644
index 0000000..7175bfe
--- /dev/null
+++ b/systemd/dyndns-pdns.service
@@ -0,0 +1,15 @@
+[Unit]
+Description=Dynamic DNS Collector
+After=network.target
+
+[Service]
+Type=simple
+User=dyndns
+Group=dyndns
+WorkingDirectory=/opt/dyndns/
+ExecStart=/opt/dyndns/go/bin/dyndns-pdns -config=/opt/dyndns/config.yml
+RestartSec=15
+Restart=always
+
+[Install]
+WantedBy=multi-user.target
diff --git a/systemd/etherpad.service b/systemd/etherpad.service
new file mode 100644
index 0000000..5bc093e
--- /dev/null
+++ b/systemd/etherpad.service
@@ -0,0 +1,16 @@
+[Unit]
+Description=etherpad-lite
+After=syslog.target network.target
+
+[Service]
+Type=simple
+User=etherpad
+Group=etherpad
+WorkingDirectory=/opt/etherpad
+Environment=NODE_ENV=production
+Environment=PATH=/opt/etherpad/.nvm/versions/node/v16.4.0/bin:/usr/local/bin:/usr/bin:/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin
+ExecStart=/opt/etherpad/.nvm/versions/node/v16.4.0/bin/node /opt/etherpad/etherpad-lite/src/node/server.js
+Restart=always
+
+[Install]
+WantedBy=multi-user.target
diff --git a/systemd/gitea.service b/systemd/gitea.service
new file mode 100644
index 0000000..895f2f1
--- /dev/null
+++ b/systemd/gitea.service
@@ -0,0 +1,21 @@
+[Unit]
+Description=Gitea (Git with a cup of tea)
+After=syslog.target
+After=network.target
+Wants=mysqld.service
+After=mysqld.service
+
+[Service]
+RestartSec=2s
+Type=simple
+User=git
+Group=git
+WorkingDirectory=/var/lib/gitea/
+
+ExecStart=/usr/local/bin/gitea web --config /etc/gitea/app.ini
+Restart=always
+Environment=USER=git HOME=/var/lib/git GITEA_WORK_DIR=/var/lib/gitea
+
+[Install]
+WantedBy=multi-user.target
+
diff --git a/systemd/kfcgi.service b/systemd/kfcgi.service
new file mode 100644
index 0000000..f9027f8
--- /dev/null
+++ b/systemd/kfcgi.service
@@ -0,0 +1,14 @@
+[Unit]
+Description=kfcgi server for scooper
+After=litterbox@.service var-lib-pounce-.local-dev.mount var-lib-pounce-.local-usr.mount var-lib-pounce-.local-lib.mount var-lib-pounce-.local-lib64.mount
+Requires=litterbox@.service var-lib-pounce-.local-dev.mount var-lib-pounce-.local-usr.mount var-lib-pounce-.local-lib.mount var-lib-pounce-.local-lib64.mount
+Wants=network.target
+
+
+[Service]
+User=root
+Group=pounce
+ExecStart=/usr/local/sbin/kfcgi -d -n 8 -l 16 -u nginx -s /var/run/kfcgi/scooper.sock -U pounce -p /var/lib/pounce/.local -- /bin/scooper /share/litterbox/litterbox.sqlite
+
+[Install]
+WantedBy=multi-user.target
diff --git a/systemd/litterbox@.service b/systemd/litterbox@.service
new file mode 100644
index 0000000..85f0e92
--- /dev/null
+++ b/systemd/litterbox@.service
@@ -0,0 +1,16 @@
+[Unit]
+Description=litterbox for %i
+After=pounce@%i.service
+Requires=pounce@%i.service
+Wants=network.target
+
+[Service]
+User=pounce
+Group=pounce
+ExecStart=/usr/local/bin/litterbox /var/lib/pounce/.config/litterbox/%i
+Restart=always
+RestartSec=15
+SyslogIdentifier=litterbox-%i
+
+[Install]
+WantedBy=multi-user.target
diff --git a/systemd/pounce@.service b/systemd/pounce@.service
new file mode 100644
index 0000000..79c7881
--- /dev/null
+++ b/systemd/pounce@.service
@@ -0,0 +1,14 @@
+[Unit]
+Description=pounce for %i
+Wants=network.target
+
+[Service]
+User=pounce
+Group=pounce
+ExecStart=/usr/local/bin/pounce /var/lib/pounce/.config/pounce/%i
+Restart=always
+RestartSec=15
+SyslogIdentifier=pounce-%i
+
+[Install]
+WantedBy=multi-user.target
diff --git a/systemd/shodan.service b/systemd/shodan.service
new file mode 100644
index 0000000..61b3359
--- /dev/null
+++ b/systemd/shodan.service
@@ -0,0 +1,19 @@
+[Unit]
+Description=Limnoria (shodan)
+After=network.target
+
+[Service]
+Type=simple
+ExecStart=/opt/limnoria/shodan/venv/bin/supybot /opt/limnoria/shodan/shodan.conf
+ExecReload=/bin/kill -HUP $MAINPID
+Restart=always
+User=shodan
+Group=shodan
+SyslogIdentifier=shodan
+SystemCallFilter=~@raw-io @clock @cpu-emulation @debug @keyring @module @mount @obsolete @privileged @raw-io
+ProtectSystem=strict
+ProtectHome=read-only
+ReadWritePaths=/opt/limnoria/shodan
+
+[Install]
+WantedBy=multi-user.target
diff --git a/systemd/xen-orchestra.service b/systemd/xen-orchestra.service
new file mode 100644
index 0000000..766eae1
--- /dev/null
+++ b/systemd/xen-orchestra.service
@@ -0,0 +1,16 @@
+[Unit]
+Description=Xen-Orchestra
+After=redis@xen-orchestra.service
+Wants=network.target redis@xen-orchestra.service
+
+[Service]
+User=xo
+Group=xo
+ENVIRONMENT=NODE_ENV=PRODUCTION
+ExecStart=/opt/xen-orchestra/start.sh
+Restart=always
+RestartSec=15
+SyslogIdentifier=orchestra
+
+[Install]
+WantedBy=multi-user.target