apt now uses module function to find bin paths
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
This commit is contained in:
parent
8dd72d2828
commit
a8ca48888f
1 changed files with 3 additions and 2 deletions
|
@ -117,8 +117,6 @@ import os
|
|||
import datetime
|
||||
|
||||
# APT related constants
|
||||
APTITUDE_CMD = "aptitude"
|
||||
APT_GET_CMD = "apt-get"
|
||||
APT_ENVVARS = "DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical"
|
||||
DPKG_OPTIONS = '-o "Dpkg::Options::=--force-confdef" -o "Dpkg::Options::=--force-confold"'
|
||||
APT_GET_ZERO = "0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded."
|
||||
|
@ -265,6 +263,9 @@ def main():
|
|||
except:
|
||||
module.fail_json(msg="Could not import python modules: apt, apt_pkg. Please install python-apt package.")
|
||||
|
||||
global APTITUDE_CMD = module.get_bin_path("aptitude", False)
|
||||
global APT_GET_CMD = module.get_bin_path("apt-get")
|
||||
|
||||
p = module.params
|
||||
install_recommends = p['install_recommends']
|
||||
|
||||
|
|
Loading…
Reference in a new issue