cachy-workstation

Log | Files | Refs | README

commit a0f41b10de681f56a33de274f828bca4b0d169d5
parent af9cf16759e7034355d6d827c5773b4f686318ef
Author: Chris Roberts <chris.roberts@learningunix.net>
Date:   Mon, 22 Jun 2026 12:20:27 -0500

added steps to get pushover credentials where they need to go

Diffstat:
Mroles/scripts/tasks/main.yml | 7+++++++
Aroles/scripts/templates/pushover.j2 | 2++
2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/roles/scripts/tasks/main.yml b/roles/scripts/tasks/main.yml @@ -11,3 +11,10 @@ path: "{{ ansible_facts['user_dir'] }}/dotfiles/zsh/.zshrc" line: 'export PATH="$HOME/scripts:$PATH"' state: present + +- name: Deploy pushover credentials + ansible.builtin.template: + src: pushover.j2 + dest: "{{ ansible_facts['user_dir'] }}/.pushover" + mode: "0600" + no_log: true diff --git a/roles/scripts/templates/pushover.j2 b/roles/scripts/templates/pushover.j2 @@ -0,0 +1,2 @@ +export PUSHOVER_USER={{ lookup('pipe', 'pass show pushover/user') }} +export PUSHOVER_TOKEN={{ lookup('pipe', 'pass show pushover/token') }}