updating all packages

master
parent 39fdbbee19
commit e08c74e5da
  1. 4
      hosts
  2. 5
      run.yml
  3. 4
      tasks/essentials.yml

@ -1,2 +1,2 @@
[local]
local ansible_host=localhost ansible_user={{username}} ansible_connection=ssh ansible_ssh_private_key_file=/home/{{username}}/.ssh/id_rsa
[defaults]
transport = local

@ -1,6 +1,7 @@
---
- hosts: local
- hosts: localhost
become: yes
connection: local
tasks:
- import_tasks: #TODO:
- import_tasks: tasks/essentials.yml

@ -0,0 +1,4 @@
- name: Update all packages
ansible.builtin.dnf:
name: "*"
state: latest
Loading…
Cancel
Save