summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2025-04-04 02:31:36 +0200
committerJohannes Stoelp <johannes.stoelp@gmail.com>2025-04-04 02:34:31 +0200
commit78561724fa4f58b8d256227f8913e712ecbd30f5 (patch)
tree73bb4d741d7c47d4d2afed5f46fb87898b5ab420
parent7675dc593326936276cea39f347342bcad8fd96c (diff)
downloadansible-ship-78561724fa4f58b8d256227f8913e712ecbd30f5.tar.gz
ansible-ship-78561724fa4f58b8d256227f8913e712ecbd30f5.zip
packages: move package update & install into own playbook
-rw-r--r--Makefile4
-rw-r--r--packages.yml34
-rw-r--r--setup.yml17
3 files changed, 36 insertions, 19 deletions
diff --git a/Makefile b/Makefile
index 5399bc9..a3ab0bc 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,8 @@ BACKUP := backup
setup:
ansible-playbook -i inventory.ini --diff setup.yml
-update:
- ansible -i inventory.ini -b -m ansible.builtin.package --args 'state=latest name=*' ship.lan
+packages:
+ ansible-playbook -i inventory.ini --diff packages.yml
backup:
ssh -t ship.lan "test -d $(BACKUP) \
diff --git a/packages.yml b/packages.yml
new file mode 100644
index 0000000..fe22ff1
--- /dev/null
+++ b/packages.yml
@@ -0,0 +1,34 @@
+
+- name: ship setup
+ hosts: all
+ gather_facts: no
+ vars:
+ user: "{{ '$USER' | expandvars }}"
+ data: "{{ '$HOME/services' | expandvars }}"
+
+ tasks:
+
+ # -- UPDATE ALL ------------------------------------------------------------
+
+ - name: update-packages
+ become: true
+ ansible.builtin.package:
+ name: "*"
+ state: latest
+
+ # -- PACKAGES --------------------------------------------------------------
+
+ - name: install-packages
+ become: true
+ ansible.builtin.package:
+ name: "{{ item }}"
+ state: latest
+ loop:
+ - vim
+ - podman
+ - tmux
+ - git
+ - ncdu
+ - restic
+ # For restic mount.
+ - fuse
diff --git a/setup.yml b/setup.yml
index 5fe4922..9dc1926 100644
--- a/setup.yml
+++ b/setup.yml
@@ -38,23 +38,6 @@
# https://docs.ansible.com/ansible/latest/collections/ansible/builtin/command_module.html#parameter-creates
creates: "/var/lib/systemd/linger/{{ user }}"
- # -- PACKAGES --------------------------------------------------------------
-
- - name: install-packages
- become: true
- ansible.builtin.package:
- name: "{{ item }}"
- state: latest
- loop:
- - vim
- - podman
- - tmux
- - git
- - ncdu
- - restic
- # For restic mount.
- - fuse
-
# -- COPY FILES ------------------------------------------------------------
- name: copy-files