Fixes #56832: Remove warning when falling back to apt-get if aptitude is missing. (#61782)

pull/62226/head
Jeff Geerling 5 years ago committed by Sam Doran
parent 606e13919e
commit a6ec6c3175

@ -0,0 +1,2 @@
bugfixes:
- Remove the unnecessary warning about aptitude not being installed (https://github.com/ansible/ansible/issues/56832).

@ -1077,7 +1077,6 @@ def main():
use_apt_get = p['force_apt_get']
if not use_apt_get and not APTITUDE_CMD:
module.warn("Could not find aptitude. Using apt-get instead")
use_apt_get = True
updated_cache = False

@ -35,14 +35,6 @@
when:
- force_apt_get
- name: check that warning is given when aptitude not found and force_apt_get not set
assert:
that:
- "'Could not find aptitude. Using apt-get instead' in upgrade_result.warnings[0]"
when:
- not aptitude_present
- not force_apt_get
- name: check that old version upgraded correctly
assert:
that:

Loading…
Cancel
Save