Skip to content

Commit c426be5

Browse files
committed
apt-get, not yum
1 parent 642db37 commit c426be5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

install/vst-install-debian.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ help() {
2626
-f, --force Force installation
2727
-i, --disable-iptables Disable iptables support
2828
-b, --disable-fail2ban Disable fail2ban protection
29-
-n, --noupdate Do not run yum update command
29+
-n, --noupdate Do not run apt-get upgrade command
3030
-s, --hostname Set server hostname
3131
-e, --email Set email address
3232
-p, --password Set admin password instead of generating it
@@ -78,7 +78,7 @@ while getopts "hfibdnqe:m:p:s:" Option; do
7878
f) force='yes' ;; # Force install
7979
i) disable_iptables='yes' ;; # Disable iptables
8080
b) disable_fail2ban='yes' ;; # Disable fail2ban
81-
n) noupdate='yes' ;; # Disable yum update
81+
n) noupdate='yes' ;; # Disable apt-get upgrade
8282
s) servername=$OPTARG ;; # Server hostname
8383
e) email=$OPTARG ;; # Set email
8484
p) vpass=$OPTARG ;; # Admin password

install/vst-install-ubuntu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ help() {
2525
-f, --force Force installation
2626
-i, --disable-iptables Disable iptables support
2727
-b, --disable-fail2ban Disable fail2ban protection
28-
-n, --noupdate Do not run yum update command
28+
-n, --noupdate Do not run apt-get upgrade command
2929
-s, --hostname Set server hostname
3030
-e, --email Set email address
3131
-p, --password Set admin password instead of generating it
@@ -77,7 +77,7 @@ while getopts "hfibdnqe:m:p:s:" Option; do
7777
f) force='yes' ;; # Force install
7878
i) disable_iptables='yes' ;; # Disable iptables
7979
b) disable_fail2ban='yes' ;; # Disable fail2ban
80-
n) noupdate='yes' ;; # Disable yum update
80+
n) noupdate='yes' ;; # Disable apt-get upgrade
8181
s) servername=$OPTARG ;; # Server hostname
8282
e) email=$OPTARG ;; # Set email
8383
p) vpass=$OPTARG ;; # Admin password

0 commit comments

Comments
 (0)