New roles: - workstation: Arch base (yay, UV, Hyprland, tiling tools, fonts, productivity apps, NVIDIA auto-detect, tmux + TPM) - dev_apps: optional dev tools (PyCharm, R/RStudio, databases) - claude_code: Claude Code CLI install/update via npm - user_bootstrap: fresh machine user setup (SSH key, sudo) CLI/shell/terminal setup excluded — handled by existing cli_modern role. workstation.yml runs cli_modern first, then workstation roles in phases. All roles tagged for selective deployment. Passes ansible-lint at production level.
12 lines
266 B
YAML
12 lines
266 B
YAML
---
|
|
- name: restart docker
|
|
ansible.builtin.service:
|
|
name: docker
|
|
state: "{{ docker_restart_handler_state }}"
|
|
ignore_errors: "{{ ansible_check_mode }}"
|
|
when: docker_service_manage | bool
|
|
|
|
- name: apt update
|
|
ansible.builtin.apt:
|
|
update_cache: true
|