Compare commits

..

No commits in common. "c72e1bb34f4f59951e2988b5686df97c5ef96196" and "6f8ee3627d124906701bfd45e06ccef98d78ab4d" have entirely different histories.

2 changed files with 0 additions and 32 deletions

View File

@ -1,9 +0,0 @@
---
- name: Install additional packages
package:
name: "{{ item }}"
state: present
loop:
- bash
- bash-completion

View File

@ -1,23 +0,0 @@
---
- name: Install package
package:
name: pass
state: present
- name: Initialise password store
command:
cmd: "pass init {{ passwordstore_id }}"
- name: Set password store git upstream
command:
cmd: "pass git remote set origin ssh://git@git.finallycoffee.eu:8022/{{ ansible_user }}/password-store.git"
- name: Fetch upstream password store
command:
cmd: "pass git fetch --all"
- name: Set master to upstream master
command:
cmd: "pass git checkout -B master origin/master"