diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2017-08-20 18:18:35 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2017-08-20 18:18:35 +0200 |
| commit | 81553c1042de3fc2970d1afa5f1605ed7f54b495 (patch) | |
| tree | 125639debfbda4431de7338c2e669b67b7a3aa85 | |
| parent | b5898106657c3fac6ae4b8eba1516e74dd43054c (diff) | |
| download | geldschieberbot-81553c1042de3fc2970d1afa5f1605ed7f54b495.tar.gz geldschieberbot-81553c1042de3fc2970d1afa5f1605ed7f54b495.zip | |
add config.sh.sample
| -rw-r--r-- | config.sh.sample | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/config.sh.sample b/config.sh.sample new file mode 100644 index 0000000..247a382 --- /dev/null +++ b/config.sh.sample @@ -0,0 +1,16 @@ +#!/bin/bash + +# Group the bot should monitor +export GSB_GROUP_ID="" +# Path where the bots data shoul be stored +export GSB_STORE_PATH="~/geldschieberbot" +# Command the bot uses to send responses +export GSB_SEND_CMD="" +# SIganl user the bot should use +export GSB_USER="" + +# create GSB_STORE_PATH +if [[ ! -e "$GSB_STORE_PATH" ]] +then + mkdir -p $GSB_STORE_PATH 2>/dev/null +fi |
