added steps to get pushover credentials where they need to go

This commit is contained in:
2026-06-22 12:20:27 -05:00
parent af9cf16759
commit a0f41b10de
2 changed files with 9 additions and 0 deletions
+7
View File
@@ -11,3 +11,10 @@
path: "{{ ansible_facts['user_dir'] }}/dotfiles/zsh/.zshrc" path: "{{ ansible_facts['user_dir'] }}/dotfiles/zsh/.zshrc"
line: 'export PATH="$HOME/scripts:$PATH"' line: 'export PATH="$HOME/scripts:$PATH"'
state: present state: present
- name: Deploy pushover credentials
ansible.builtin.template:
src: pushover.j2
dest: "{{ ansible_facts['user_dir'] }}/.pushover"
mode: "0600"
no_log: true
+2
View File
@@ -0,0 +1,2 @@
export PUSHOVER_USER={{ lookup('pipe', 'pass show pushover/user') }}
export PUSHOVER_TOKEN={{ lookup('pipe', 'pass show pushover/token') }}