From 08af0f00b667ed1aee53c3fce7897618fa72403c Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Sun, 6 Nov 2022 15:54:54 +0000 Subject: [PATCH] Add CAD software to Windows playbook The `autodesk-fusion360` and `prusiaslicer` roles are added to the `Windows.yaml` playbook but disabled by default behind the `install_cad_apps` flag. To enable them create a `~/.config/local.yaml` file with the following: ```yaml - import_playbook: local/Windows.yaml vars: install_cad_apps: true ``` --- Windows.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Windows.yaml b/Windows.yaml index cf8d811..5856afe 100644 --- a/Windows.yaml +++ b/Windows.yaml @@ -1,6 +1,9 @@ --- - hosts: windows + vars: + install_cad_apps: false + roles: - role: git - role: powershell @@ -25,3 +28,8 @@ - role: obsidian - role: powertoys - role: windows-terminal + + - role: autodesk-fusion360 + when: install_cad_apps + - role: prusaslicer + when: install_cad_apps