Re: [ansible-project] ansible.builtin.apt - Updating all installed packages to latest gives "parameters are mutually exclusive deb|package|upgrade

2022-03-21 Thread Stefan Hornburg (Racke)
On 19/03/2022 01:05, John Himpel wrote: The following ansible block: - name: Block update APT hosts   block:     - name: main - Update APT repo and cache       ansible.builtin.apt:         update_cache: true         force_apt_get: true         cache_valid_time: 3600   # 1 Hour     -

[ansible-project] ansible.builtin.apt - Updating all installed packages to latest gives "parameters are mutually exclusive deb|package|upgrade

2022-03-18 Thread John Himpel
The following ansible block: - name: Block update APT hosts block: - name: main - Update APT repo and cache ansible.builtin.apt: update_cache: true force_apt_get: true cache_valid_time: 3600 # 1 Hour - name: main - Update APT hosts