Files
updates/install_openitcockpit.yaml
T

93 lines
2.5 KiB
YAML

---
- hosts: debianhosts
gather_facts: no
tasks:
# Copy remote file (host.example.com:/tmp/somefile) into
# /tmp/fetched/host.example.com/tmp/somefile on local machine
# - ansible.builtin.copy:
# src: ./files/openitcockpit-agent_3.1.1_amd64.deb
# dest: /tmp/openitcockpit-agent_3.1.1_amd64.deb
# owner: root
# group: root
# mode: '0644'
# - name: change working directory
# ansible.builtin.shell:
# cmd: ls -l
# chdir: /tmp
# - name: Install openitcockpit agent
# ansible.builtin.shell:
# cmd: dpkg -i /tmp/openitcockpit-agent_3.1.1_amd64.deb
# - ansible.builtin.copy:
# src: ./files/config.ini
# dest: /etc/openitcockpit-agent/config.ini
# owner: root
# group: root
# mode: '0644'
# - name: Restart openitcockpit agent
# ansible.builtin.shell:
# cmd: systemctl restart openitcockpit-agent
- name: Remove multiple packages
become: yes
tasks:
- name: Uninstall multiple packages
ansible.builtin.apt:
name:
- viopenitcockpit-agentm
state: absent
# - name: Install a list of packages
# ansible.builtin.apt:
# pkg:
# - apt-transport-https
# - curl
# - gnupg
# - name: Get GPG key
# ansible.builtin.shell:
# cmd: curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg
# - name: Move GPG key
# ansible.builtin.shell:
# cmd: mv bazel-archive-keyring.gpg /usr/share/keyrings
# - name: Add Key and repo to system
# ansible.builtin.shell:
# cmd: echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8' > /etc/apt/sources.list.d/bazel.list
# - name: Run the equivalent of "apt-get update" as a separate step
# ansible.builtin.apt:
# update_cache: yes
# - name: Update all installed packages using APT module
# apt:
# name: '*'
# state: latest
# update_cache: yes
# only_upgrade: yes
# register: apt_update_status
# - name: Update all installed packages using APT module
# apt:
# name: '*'
# state: latest
# update_cache: yes
# only_upgrade: yes
# register: apt_update_status
# - name: Remove packages not needed anymore
# apt:
# autoremove: yes
# - name: Reboot when packages were updated
# reboot:
# post_reboot_delay: 60
# when: apt_update_status.changed
#