forked from AntonioCS/no-ip.com-bash-updater
-
Notifications
You must be signed in to change notification settings - Fork 29
/
config_sample
26 lines (20 loc) · 834 Bytes
/
config_sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Sample config file for Bash No-IP Updater
# Copy this file to "config" in the same directory as noipupdater.sh.
# Retain the double quotes surrounding each of the values below.
# No-IP uses your email address for the username.
USERNAME="[email protected]"
PASSWORD="password"
# Multiple hosts associated with a single IP address can be entered by
# separating them with commas: HOST="host1.domain.org,host2.domain.org"
HOST="host.domain.com"
# The directory where logs will be stored (required)
LOGDIR="$HOME/logs"
# Rotate and compress (if gzip support is present) log files when
# length exceeds 10010 lines, moving 10000 lines to backup and
# retaining remaining lines in original logfile
ROTATE_LOGS=true
# Console output verbosity
# 0 - Show all output
# 4 - Show only errors
# 6 - Hide all output
CONSOLE_OUTPUT_LEVEL=0