mirror of
https://github.com/vmstan/gravity-sync.git
synced 2024-08-30 18:22:11 +00:00
d23ae53628
* feat: add option to override file owner setting (#94) * Merge changes * Change beta updater * Dev branch changes * Add check for SQLite3 * SQLite message formattitng * sqlite * repo checks * sudoers file * add sudo file * sudoer auto * overwrite not append * sudo docs * sudo instructions * SUDO instructions Co-authored-by: Dylan Praul <dpraul@users.noreply.github.com> Co-authored-by: Michael Stanclift <vmstan@Sovereign.vmstan.net>
50 lines
1003 B
Plaintext
50 lines
1003 B
Plaintext
# REQUIRED SETTINGS ######################
|
|
|
|
# Primary Pi-hole host (in IP or DNS name)
|
|
REMOTE_HOST='192.168.1.10'
|
|
|
|
# User account on primary with SUDO rights
|
|
REMOTE_USER='pi'
|
|
|
|
# OPTIONAL SETTINGS ######################
|
|
|
|
# Password for REMOTE_USER account
|
|
# Requires 'SSHPASS' installed on server
|
|
# (ex: sudo apt install sshpass)
|
|
# Less secure and possibly less reliable
|
|
# Leave blank to use (preferred) key-pair
|
|
|
|
REMOTE_PASS=''
|
|
|
|
# ADVANCED SETTINGS ######################
|
|
|
|
# Uncomment and set for auxiliary control
|
|
# Overrides gravity-sync.sh defaults
|
|
# See ADVANCED.md for more information
|
|
|
|
# SSH_PORT=''
|
|
# SSH_PKIF=''
|
|
# LOG_PATH=''
|
|
# SYNCING_LOG=''
|
|
# CRONJOB_LOG=''
|
|
# HISTORY_MD5=''
|
|
|
|
# VERIFY_PASS=''
|
|
# SKIP_CUSTOM=''
|
|
# DATE_OUTPUT=''
|
|
# PING_AVOID=''
|
|
# ROOT_CHECK_AVOID=''
|
|
|
|
# BACKUP_RETAIN=''
|
|
|
|
# PIHOLE DEFAULTS ########################
|
|
|
|
# Have a very good reason to change these!
|
|
|
|
# PIHOLE_DIR=''
|
|
# GRAVITY_FI=''
|
|
# CUSTOM_DNS=''
|
|
# PIHOLE_BIN=''
|
|
# RIHOLE_BIN=''
|
|
# FILE_OWNER=''
|
|
# REMOTE_FILE_OWNER='' |