summaryrefslogtreecommitdiffstats
path: root/abs/core/LinHES-config/mv_common.py
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2020-06-17 04:35:59 (GMT)
committerBritney Fransen <brfransen@gmail.com>2020-06-17 04:35:59 (GMT)
commit15100dde98b146bda93ddb4987477407e7d9b7ac (patch)
treeb313084f7e7b1572ac48d53007558684d73cf1ab /abs/core/LinHES-config/mv_common.py
parent9368d08f072ae32e7984417deb44472293129754 (diff)
downloadlinhes_pkgbuild-15100dde98b146bda93ddb4987477407e7d9b7ac.zip
linhes_pkgbuild-15100dde98b146bda93ddb4987477407e7d9b7ac.tar.gz
linhes_pkgbuild-15100dde98b146bda93ddb4987477407e7d9b7ac.tar.bz2
LinHES-config: remove --force from pacman cmds
Diffstat (limited to 'abs/core/LinHES-config/mv_common.py')
-rwxr-xr-xabs/core/LinHES-config/mv_common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/abs/core/LinHES-config/mv_common.py b/abs/core/LinHES-config/mv_common.py
index 367a067..fd97741 100755
--- a/abs/core/LinHES-config/mv_common.py
+++ b/abs/core/LinHES-config/mv_common.py
@@ -236,7 +236,7 @@ def pacinstall(pkg):
elif pkg == "xymonclient":
if os.path.exists('/home/xymon/client'):
- cmd='''pacman --noconfirm --dbonly -Sdd --force xymonclient'''
+ cmd='''pacman --noconfirm --dbonly -Sdd xymonclient'''
runcmd(cmd)
if not pkg_blacklist_check(pkg):
@@ -244,7 +244,7 @@ def pacinstall(pkg):
logging.info(" %s is already installed, will not install",pkg)
else:
logging.info(" Installing %s",pkg)
- cmd ='''pacman --noconfirm -S --force %s ''' %pkg
+ cmd ='''pacman --noconfirm -S %s ''' %pkg
runcmd(cmd)
else:
logging.info(" %s is blacklisted, will not install",pkg)