mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 23:49:56 +00:00
Add initial Ubuntu workstation orchestration
This commit is contained in:
@@ -1 +1,18 @@
|
||||
# install packages with apt
|
||||
---
|
||||
- name: Refresh apt package cache
|
||||
tags: [packages]
|
||||
ansible.builtin.apt:
|
||||
update_cache: true
|
||||
cache_valid_time: 3600
|
||||
|
||||
- name: Install packages on Ubuntu
|
||||
tags: [packages]
|
||||
ansible.builtin.apt:
|
||||
name: >-
|
||||
{{
|
||||
(common_packages | default([]))
|
||||
+ (ubuntu_packages_base | default([]))
|
||||
+ (profile_packages | default([]))
|
||||
+ (host_packages | default([]))
|
||||
}}
|
||||
state: present
|
||||
|
||||
Reference in New Issue
Block a user