|
@@ -87,15 +87,17 @@ function argument_checks {
|
87
|
87
|
echo './install-freedombone.sh [domain] [username] [subdomain code]'
|
88
|
88
|
echo ''
|
89
|
89
|
if [ ! $DOMAIN_NAME ]; then
|
90
|
|
- echo "Please specify your domain name"
|
|
90
|
+ echo 'Please specify your domain name'
|
91
|
91
|
exit
|
92
|
92
|
fi
|
93
|
93
|
if [ ! $MY_USERNAME ]; then
|
94
|
|
- echo "Please specify your username"
|
|
94
|
+ echo 'Please specify your username'
|
95
|
95
|
exit
|
96
|
96
|
fi
|
97
|
97
|
if [ ! $FREEDNS_SUBDOMAIN_CODE ]; then
|
98
|
|
- echo "Please specify the freedns subdomain code. To find it from https://freedns.afraid.org select 'Dynamic DNS', then 'quick cron example' and copy the code located between '?' and '=='."
|
|
98
|
+ echo 'Please specify the freedns subdomain code. To find it from '
|
|
99
|
+ echo "https://freedns.afraid.org select 'Dynamic DNS', then 'quick "
|
|
100
|
+ echo "cron example' and copy the code located between '?' and '=='."
|
99
|
101
|
exit
|
100
|
102
|
fi
|
101
|
103
|
}
|