Kaynağa Gözat

Set up main script and dev config files.

master
treyzania 6 yıl önce
ebeveyn
işleme
1b4190b1e7
3 değiştirilmiş dosya ile 16 ekleme ve 0 silme
  1. 1
    0
      .gitignore
  2. 14
    0
      booty.sh
  3. 1
    0
      localconfig

+ 1
- 0
.gitignore Dosyayı Görüntüle

@@ -0,0 +1 @@
fakeplex/

+ 14
- 0
booty.sh Dosyayı Görüntüle

@@ -0,0 +1,14 @@
#!/bin/bash

MAIN_CONFIG="/etc/bootybot.conf"
if [ -f localconfig ]; then
source localconfig
elif [ -f "$MAIN_CONFIG" ]; then
source $MAIN_CONFIG
else
echo 'error: no valid config found'
exit 1
fi

# TODO The rest of the script.


+ 1
- 0
localconfig Dosyayı Görüntüle

@@ -0,0 +1 @@
PLEX_ROOT=./fakeplex

Loading…
İptal
Kaydet