diff options
author | Guillermo Ramos | 2020-05-16 16:48:32 +0200 |
---|---|---|
committer | Guillermo Ramos | 2020-05-16 16:48:32 +0200 |
commit | 8e98632c27aa98be010eab4e1fc30a7c0acbfe29 (patch) | |
tree | 0a506a7d83230833e9bf958b612573b25ffd24d9 | |
download | s6-services-8e98632c27aa98be010eab4e1fc30a7c0acbfe29.tar.gz |
Initial commit: aeon services
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | .log/run | 2 | ||||
l--------- | syncthing/log | 1 | ||||
-rwxr-xr-x | syncthing/run | 2 | ||||
l--------- | tgbot_deefine/log | 1 | ||||
-rwxr-xr-x | tgbot_deefine/run | 6 | ||||
l--------- | tgbot_escato/log | 1 | ||||
-rwxr-xr-x | tgbot_escato/run | 6 | ||||
l--------- | tgbot_pegatino/log | 1 | ||||
-rwxr-xr-x | tgbot_pegatino/run | 6 | ||||
l--------- | tgbot_savefc/log | 1 | ||||
-rwxr-xr-x | tgbot_savefc/run | 6 | ||||
l--------- | waev/log | 1 | ||||
-rwxr-xr-x | waev/run | 8 |
14 files changed, 43 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0a764a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +env diff --git a/.log/run b/.log/run new file mode 100755 index 0000000..e097ba5 --- /dev/null +++ b/.log/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec s6-log . diff --git a/syncthing/log b/syncthing/log new file mode 120000 index 0000000..918546a --- /dev/null +++ b/syncthing/log @@ -0,0 +1 @@ +../.log
\ No newline at end of file diff --git a/syncthing/run b/syncthing/run new file mode 100755 index 0000000..7343b85 --- /dev/null +++ b/syncthing/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec syncthing -no-browser diff --git a/tgbot_deefine/log b/tgbot_deefine/log new file mode 120000 index 0000000..01062cd --- /dev/null +++ b/tgbot_deefine/log @@ -0,0 +1 @@ +../.log/
\ No newline at end of file diff --git a/tgbot_deefine/run b/tgbot_deefine/run new file mode 100755 index 0000000..9558f39 --- /dev/null +++ b/tgbot_deefine/run @@ -0,0 +1,6 @@ +#!/bin/sh + +source $(dirname $0)/env + +exec ~/git/tgutils/tgserver --token $TOKEN -v -- \ + ~/bots/deefine.pl ~/fcphrases.txt 2>&1 diff --git a/tgbot_escato/log b/tgbot_escato/log new file mode 120000 index 0000000..01062cd --- /dev/null +++ b/tgbot_escato/log @@ -0,0 +1 @@ +../.log/
\ No newline at end of file diff --git a/tgbot_escato/run b/tgbot_escato/run new file mode 100755 index 0000000..2931f04 --- /dev/null +++ b/tgbot_escato/run @@ -0,0 +1,6 @@ +#!/bin/sh + +source $(dirname $0)/env + +exec ~/git/tgutils/tgserver --token $TOKEN -v -- \ + ~/bots/escato.pl ~/fcphrases.txt 2>&1 diff --git a/tgbot_pegatino/log b/tgbot_pegatino/log new file mode 120000 index 0000000..01062cd --- /dev/null +++ b/tgbot_pegatino/log @@ -0,0 +1 @@ +../.log/
\ No newline at end of file diff --git a/tgbot_pegatino/run b/tgbot_pegatino/run new file mode 100755 index 0000000..72672f8 --- /dev/null +++ b/tgbot_pegatino/run @@ -0,0 +1,6 @@ +#!/bin/sh + +source $(dirname $0)/env + +exec ~/git/tgutils/tgserver --token $TOKEN -v -- \ + ~/bots/pegatino.pl ~/fcphrases.txt 2>&1 diff --git a/tgbot_savefc/log b/tgbot_savefc/log new file mode 120000 index 0000000..01062cd --- /dev/null +++ b/tgbot_savefc/log @@ -0,0 +1 @@ +../.log/
\ No newline at end of file diff --git a/tgbot_savefc/run b/tgbot_savefc/run new file mode 100755 index 0000000..dec9ecc --- /dev/null +++ b/tgbot_savefc/run @@ -0,0 +1,6 @@ +#!/bin/sh + +source $(dirname $0)/env + +exec ~/git/tgutils/tgserver --token $TOKEN -v -- \ + ~/bots/savefc.pl ~/fcphrases.txt 2>&1 diff --git a/waev/log b/waev/log new file mode 120000 index 0000000..01062cd --- /dev/null +++ b/waev/log @@ -0,0 +1 @@ +../.log/
\ No newline at end of file diff --git a/waev/run b/waev/run new file mode 100755 index 0000000..96da40c --- /dev/null +++ b/waev/run @@ -0,0 +1,8 @@ +#!/bin/sh + +source $(dirname $0)/env + +cd ~/git/waev +mix deps.get +mix phx.digest +exec mix phx.server |