From f618f92a8eb1f18db5ca9f56fe744d9bfebce653 Mon Sep 17 00:00:00 2001 From: root <root@zhangxuantong.ihep.ac.cn> Date: Tue, 24 Sep 2024 11:20:43 +0800 Subject: [PATCH] update remote --- bootstrap_remote.sh | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/bootstrap_remote.sh b/bootstrap_remote.sh index 4082301..d2f0ddb 100755 --- a/bootstrap_remote.sh +++ b/bootstrap_remote.sh @@ -1,11 +1,29 @@ #!/bin/bash -remote_command="cd ~; \ +host_list="src/hostlist.txt" +command1="cd ~; \ which git &>/dev/null || yum install -y git &>/dev/null; \ git -C .mysetting pull || git clone https://code.ihep.ac.cn/zhangxuantong/mysetting.git .mysetting; \ cd .mysetting; \ source bootstrap.sh git;" -host_list="src/hostlist.txt" +command2="yum upgrade -y --noplugins --disablerepo fts3-el9" +command3="cd ~; \ + which git &>/dev/null || yum install -y git &>/dev/null; \ + git -C node-exporter pull || git clone https://code.ihep.ac.cn/grid-services/monitoring/node-exporter.git node-exporter; \ + cd node-exporter; \ + source ./install.sh;" + +case $1 in + update) + remote_command=$command2 + ;; + monitor) + remote_command=$command3 + ;; + *) + remote_command=$command1 + ;; +esac ./tools/firewall-update.sh $host_list for remote_host in $(cat src/hostlist.txt); do -- GitLab