fix: ignore /usr/bin/python link existed warning

v3.4
gjmzj 2023-01-17 17:23:59 +08:00
parent cf4aaa3f0a
commit faedff121a
1 changed files with 3 additions and 3 deletions

6
ezctl
View File

@ -324,7 +324,7 @@ function add-node() {
sed -n '/^\[kube_master/,/^\[harbor/p' "$BASE/clusters/$1/hosts"|grep -E "^$2$|^$2 " && { logger error "node $2 already existed in $BASE/clusters/$1/hosts"; return 2; }
# add '/usr/bin/python' soft link, needed in some OS (ubuntu 16.04+)
ssh "$2" ln -s /usr/bin/python3 /usr/bin/python || echo ""
ssh "$2" ln -s /usr/bin/python3 /usr/bin/python > /dev/null 2>&1 || echo ""
logger info "add $2 into 'kube_node' group"
NODE_INFO="${@:2}"
@ -342,7 +342,7 @@ function add-master() {
sed -n '/^\[kube_master/,/^\[kube_node/p' "$BASE/clusters/$1/hosts"|grep -E "^$2$|^$2 " && { logger error "master $2 already existed!"; return 2; }
# add '/usr/bin/python' soft link, needed in some OS (ubuntu 16.04+)
ssh "$2" ln -s /usr/bin/python3 /usr/bin/python || echo ""
ssh "$2" ln -s /usr/bin/python3 /usr/bin/python > /dev/null 2>&1 || echo ""
logger info "add $2 into 'kube_master' group"
MASTER_INFO="${@:2}"
@ -366,7 +366,7 @@ function add-etcd() {
sed -n '/^\[etcd/,/^\[kube_master/p' "$BASE/clusters/$1/hosts"|grep -E "^$2$|^$2 " && { logger error "etcd $2 already existed!"; return 2; }
# add '/usr/bin/python' soft link, needed in some OS (ubuntu 16.04+)
ssh "$2" ln -s /usr/bin/python3 /usr/bin/python || echo ""
ssh "$2" ln -s /usr/bin/python3 /usr/bin/python > /dev/null 2>&1 || echo ""
logger info "add $2 into 'etcd' group"
ETCD_INFO="${@:2}"