Argument parsing for synamic DNS where no provider given
This commit is contained in:
parent
5480616315
commit
919354059c
|
@ -277,6 +277,9 @@ function parse_args {
|
|||
read_config_param 'MY_USERNAME'
|
||||
read_config_param 'SYSTEM_TYPE'
|
||||
read_config_param 'ONION_ONLY'
|
||||
read_config_param 'DDNS_PROVIDER'
|
||||
read_config_param 'DDNS_USERNAME'
|
||||
read_config_param 'DDNS_PASSWORD'
|
||||
|
||||
if [ ! -d /home/$MY_USERNAME ]; then
|
||||
echo $"There is no user '$MY_USERNAME' on the system. Use 'adduser $MY_USERNAME' to create the user."
|
||||
|
@ -295,6 +298,7 @@ function parse_args {
|
|||
exit 3
|
||||
fi
|
||||
if [[ $SYSTEM_TYPE != "mesh"* ]]; then
|
||||
if [[ $DDNS_PROVIDER != 'none' ]]; then
|
||||
if [[ $ONION_ONLY == "no" ]]; then
|
||||
if [ ! $DDNS_USERNAME ]; then
|
||||
echo $'Please provide the username for your dynamic DNS provider with the --ddnsuser option'
|
||||
|
@ -306,6 +310,7 @@ function parse_args {
|
|||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ ! $SYSTEM_TYPE ]; then
|
||||
SYSTEM_TYPE=$'full'
|
||||
|
|
Loading…
Reference in New Issue