Activated update for debian

This commit is contained in:
2020-12-31 13:21:56 +01:00
parent baeef4aad2
commit 6e4ae4d03b
7 changed files with 31 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
# role native-apt-update
This role updates the packages
# upgrade
Keep in mind that you have to do the upgrade manual because debian based distributions are no runing release

View File

@@ -0,0 +1,4 @@
- name: apt update all packages to their latest version
apt:
name: "*"
state: latest

View File

@@ -1,2 +1,3 @@
dependencies:
- native-ssh
- native-user-alarm

View File

@@ -0,0 +1,3 @@
dependencies:
- { role: native-pacman-update, when: ansible_distribution == 'Archlinux' }
- { role: native-apt-update, when: ansible_distribution == "Debian" }