style: add YAML document start markers to Ansible playbooks and tasks
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 1m34s
Nix Format Check / check-format (push) Successful in 57s

This commit is contained in:
2025-03-12 14:05:42 +01:00
parent 785bd9b122
commit 112d3679da
36 changed files with 202 additions and 31 deletions

View File

@@ -1,3 +1,4 @@
---
- name: Check if 1Password is installed
ansible.builtin.command: 1password --version
register: onepassword_check
@@ -14,7 +15,7 @@
ansible.builtin.file:
path: /etc/1password
state: directory
mode: '0755'
mode: "0755"
become: true
- name: Add Zen browser to 1Password custom allowed browsers
@@ -27,7 +28,7 @@
dest: /etc/1password/custom_allowed_browsers
owner: root
group: root
mode: '0755'
mode: "0755"
become: true
register: custom_browsers_file