summaryrefslogtreecommitdiffstats
path: root/retiolum/scripts
diff options
context:
space:
mode:
authortv <tv@nomic.retiolum>2014-02-19 14:23:13 +0100
committertv <tv@nomic.retiolum>2014-02-19 14:23:13 +0100
commit1cd304b57bc2ad725fa074d4537c2bdefa821085 (patch)
treed40529fe6ddafcd283d8eaf0a003d3092aac7eed /retiolum/scripts
parent180f3dd6c9cf6ea3a0d150c8a85d300dd09b177b (diff)
hosts-sync: add #?-doc
Diffstat (limited to 'retiolum/scripts')
-rw-r--r--retiolum/scripts/github_hosts_sync/README26
1 files changed, 26 insertions, 0 deletions
diff --git a/retiolum/scripts/github_hosts_sync/README b/retiolum/scripts/github_hosts_sync/README
new file mode 100644
index 00000000..12aa8dfe
--- /dev/null
+++ b/retiolum/scripts/github_hosts_sync/README
@@ -0,0 +1,26 @@
+#? /bin/sh
+
+useradd -m hosts-sync
+cp systemd/hosts-sync.service /etc/systemd/system/
+cp systemd/hosts-sync.conf /etc/conf.d/
+
+sudo -u hosts-sync -i ssh-keygen
+add /home/hosts-sync/.ssh/id_rsa.pub as github/krebscode/hosts deploy key
+sudo -u hosts-sync -i git clone git@github.com:krebscode/hosts.git ~hosts-sync/hosts # to accept the remote key (and have an initial copy)
+
+sudo -u hosts-sync -i git config --global user.email hosts-sync@ire.retiolum
+sudo -u hosts-sync -i git config --global user.name hosts-sync
+sudo -u hosts-sync -i git config --global push.default simple
+
+systemctl start hosts-sync
+systemctl enable hosts-sync
+
+TODO firewall setup
+
+#? /bin/sh (update service)
+git pull
+cp retiolum/scripts/github_hosts_sync/systemd/hosts-sync.service /etc/systemd/system/
+systemctl daemon-reload
+systemctl restart hosts-sync
+
+