this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make the commit.sh file format properly and add 2 new systemd services

+23 -1
+7 -1
commit.sh
··· 1 - echo "\n\nGot new commit: $(date)\n-----" 1 + #!/usr/bin/env bash 2 + 3 + echo 4 + echo 5 + echo "Got new commit: $(date)" 6 + echo "---" 7 + echo 2 8 3 9 # saves current state of fs 4 10 git stash
+8
docker-up.service
··· 1 + [Unit] 2 + Description=Preload docker 3 + After=network.target 4 + 5 + [Service] 6 + Type=oneshot 7 + ExecStart=/bin/bash /root/commit.sh 8 + WorkingDirectory=/root/server-config
+8
tangled-on-commit.service
··· 1 + [Unit] 2 + Description=Tangled on Commit 3 + After=network.target 4 + After=docker-up.service 5 + 6 + [Service] 7 + ExecStart=/bin/tangled-on-commit 8 + WorkingDirectory=/root/server-config