added steps to get pushover credentials where they need to go
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
export PUSHOVER_USER={{ lookup('pipe', 'pass show pushover/user') }}
|
||||||
|
export PUSHOVER_TOKEN={{ lookup('pipe', 'pass show pushover/token') }}
|
||||||
Reference in New Issue
Block a user