19 lines
400 B
YAML
19 lines
400 B
YAML
---
|
|
- set_fact:
|
|
obsidian_notes_repo: '{{ansible_env.USERPROFILE}}/Documents/Notes'
|
|
|
|
- name: install chocolatey package
|
|
win_chocolatey:
|
|
name: obsidian
|
|
state: latest
|
|
|
|
- name: clone notes repository
|
|
win_git:
|
|
repo: git@github.com:kbenzie/notes.git
|
|
dest: '{{obsidian_notes_repo}}'
|
|
branch: main
|
|
- win_owner:
|
|
path: '{{obsidian_notes_repo}}'
|
|
user: Benie
|
|
recurse: true
|