ansible
This commit is contained in:
21
roles/armbian/tasks/main.yaml
Normal file
21
roles/armbian/tasks/main.yaml
Normal file
@@ -0,0 +1,21 @@
|
||||
- name: Add Armbian Repo
|
||||
block:
|
||||
- name: Armbian GPG Key
|
||||
ansible.builtin.get_url:
|
||||
url: https://apt.armbian.com/armbian.key
|
||||
dest: /etc/apt/trusted.gpg.d/armbian-archive-keyring.asc
|
||||
- name: Armbian Repo
|
||||
ansible.builtin.apt_repository:
|
||||
filename: armbian
|
||||
repo: deb http://apt-cache.service.nr5/apt.armbian.com bookworm main bookworm-utils
|
||||
- name: Armbian config Repo & Package
|
||||
block:
|
||||
- name: Armbian-config Repo
|
||||
ansible.builtin.apt_repository:
|
||||
filename: armbian-config
|
||||
repo: deb https://github.armbian.com/configng stable main
|
||||
- name: armbian-config install
|
||||
apt:
|
||||
state: present
|
||||
name:
|
||||
- armbian-config
|
||||
Reference in New Issue
Block a user