Browse Source

initial commit

ffggrz.de 8 years ago
commit
c6a0ec8120
2 changed files with 41 additions and 0 deletions
  1. 3 0
      .gitignore
  2. 38 0
      README.md

+ 3 - 0
.gitignore

@@ -0,0 +1,3 @@
+*.swp
+alias.json
+config.json

+ 38 - 0
README.md

@@ -0,0 +1,38 @@
+respondd Status for Servers
+---------------------------------
+
+A gluon compatible status script for respondd in python.
+
+## Dependencies
+
+ * lsb_release
+ * ethtool
+ * python3.3
+ * python3-netifaces
+ * py-cpuinfo
+
+## Setup
+
+Adjust config.json
+Adjust aliases.json
+
+Create systemd Startup-File:
+/etc/systemd/system/ext-respondd.service
+```
+[Unit]
+Description=ext-respondd (respondd Status for Servers)
+After=syslog.target network.target
+
+[Service]
+Type=simple
+User=root
+Group=root
+WorkingDirectory=/usr/local/src/ext-respondd
+ExecStart=/usr/local/src/ext-respondd/ext-respondd.py
+
+[Install]
+WantedBy=multi-user.target
+```
+
+systemctl enable ext-respondd
+systemctl start ext-respondd