21 lines
469 B
Bash
21 lines
469 B
Bash
#!/bin/bash
|
|
#CONFIG A MODIF
|
|
URL_API="A NOUS DEMANDER SUR DISCORD"
|
|
APIKEY="A RETROUVER DANS VOTRE PROFIL"
|
|
DB_FILE="/home/$USER/autopost/base_autopost.db"
|
|
DOSSIER_GLOBAL="/home/$USER/"
|
|
DOSSIER_NFO="/home/$USER/autopost/mediainfo/"
|
|
DOSSIER_LOGS="/home/$USER/autopost/logs/"
|
|
DOSSIER_NZB_ATTENTE="/home/$USER/autopost/ATTENTE/"
|
|
DOSSIER_NZB_FINAL="/home/$USER/autopost/FINIS/"
|
|
|
|
#CONFIG FOURNISSEUR USENET DE POST
|
|
NG_HOST=""
|
|
NG_PORT=""
|
|
NG_USER=""
|
|
NG_PASS=""
|
|
NG_NBR_CONN=""
|
|
|
|
|
|
|