summaryrefslogtreecommitdiffstats
path: root/kickstart.sh
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2017-06-18 01:23:29 +0300
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2017-06-18 01:23:29 +0300
commit1c0178330661d47747c10ea7b854e91ec185ecb4 (patch)
tree231f1f0427033fed3c901d08ff51b4c0b1bf1d2a /kickstart.sh
parente63b165f051272d0b9c893074932eb30bd0f0aca (diff)
renamed --src-dst to --src-dir
Diffstat (limited to 'kickstart.sh')
-rwxr-xr-xkickstart.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/kickstart.sh b/kickstart.sh
index ca99faee87..7929a757e5 100755
--- a/kickstart.sh
+++ b/kickstart.sh
@@ -9,7 +9,7 @@
# bash <(curl -Ss https://my-netdata.io/kickstart.sh) all
#
# Other options:
-# --src-dst PATH keep netdata.git at PATH/netdata.git
+# --src-dir PATH keep netdata.git at PATH/netdata.git
# --dont-wait do not prompt for user input
# --non-interactive do not prompt for user input
# --no-updates do not install script for daily updates
@@ -238,14 +238,14 @@ do
then
INTERACTIVE=0
shift 1
- elif [ "${1}" = "--src-dst" -o "${1}" = "--src-dir" ]
+ elif [ "${1}" = "--src-dir" ]
then
SOURCE_DST="${2}"
- echo >&2 "netdata source will be installed at ${SOURCE_DST}/netdata.git"
+ # echo >&2 "netdata source will be installed at ${SOURCE_DST}/netdata.git"
shift 2
elif [ "${1}" = "--no-updates" ]
then
- echo >&2 "netdata will not auto-update"
+ # echo >&2 "netdata will not auto-update"
NETDATA_UPDATES=
shift 1
else