This commit is contained in:
2024-01-17 20:38:25 +08:00
parent 92a46667b1
commit 827ada36c9
2 changed files with 11 additions and 4 deletions

View File

@@ -1,10 +1,14 @@
#!/bin/bash
filename="$1"
neType="$2"
extension=$(basename "${1}" | awk -F . '{print $NF}')
case "${extension}" in
deb)
if [ neType == "OMC" ]; then
systemctl stop restagent.service
fi
expect <<EOF
spawn dpkg -i --force-all "$filename"
set timeout 180
@@ -14,6 +18,9 @@ case "${extension}" in
EOF
;;
rpm)
if [ neType == "OMC" ]; then
systemctl stop restagent.service
fi
expect <<EOF
spawn rpm -Uvh --oldpackage "$filename"
set timeout 180