Remove CAD apps because of Autodesk
Autodesk change distribution of Fusion360 to require a login breaking the Chocolatey package, easier to manage this manually anyway since they won't be installed on all Windows systems.
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
---
|
||||
- assert:
|
||||
that: ansible_os_family == "Windows"
|
||||
|
||||
- name: install chocolatey package
|
||||
win_chocolatey:
|
||||
name: autodesk-fusion360
|
||||
state: latest
|
||||
@@ -1,14 +0,0 @@
|
||||
---
|
||||
- assert:
|
||||
that: ansible_os_family == "Windows"
|
||||
|
||||
- name: install chocolatey package
|
||||
win_chocolatey:
|
||||
name: prusaslicer
|
||||
state: latest
|
||||
|
||||
- name: create start menu shortcut
|
||||
win_shortcut:
|
||||
src: '{{ansible_env.ProgramData}}/chocolatey/bin/prusa-slicer.exe'
|
||||
dest: '{{ansible_env.ProgramData}}/Microsoft/Windows/Start Menu/Programs/PrusaSlicer.lnk'
|
||||
icon: '{{ansible_env.ProgramData}}/chocolatey/bin/prusa-slicer.exe,0'
|
||||
@@ -40,15 +40,18 @@
|
||||
dest: external/ansible-win_git
|
||||
version: master
|
||||
|
||||
- set_fact:
|
||||
modules_dir: ~/.config/local/modules
|
||||
|
||||
- name: create ansible modules directory
|
||||
file:
|
||||
dest: ~/.ansible/plugins/modules
|
||||
dest: '{{modules_dir}}'
|
||||
state: directory
|
||||
|
||||
- name: copy win_git files to ansible modules directory
|
||||
copy:
|
||||
src: '~/.config/local/external/ansible-win_git/{{item}}'
|
||||
dest: '~/.config/local/modules/{{item}}'
|
||||
dest: '{{modules_dir}}/{{item}}'
|
||||
with_items:
|
||||
- win_git.ps1
|
||||
- win_git.py
|
||||
|
||||
Reference in New Issue
Block a user