34 lines
No EOL
813 B
YAML
34 lines
No EOL
813 B
YAML
---
|
|
- name: re-add PSGallery repository
|
|
win_shell: Register-PSRepository -Default -InstallationPolicy Untrusted
|
|
|
|
- name: remove registered repos
|
|
win_psrepository:
|
|
name: '{{ item }}'
|
|
state: absent
|
|
loop:
|
|
- PSRepo 1
|
|
- PSRepo 2
|
|
|
|
- name: remove CA cert from trusted root store
|
|
win_certificate_store:
|
|
thumbprint: '{{ ca_cert_import.thumbprints[0] }}'
|
|
store_location: LocalMachine
|
|
store_name: Root
|
|
state: absent
|
|
|
|
- name: remove signing key from trusted publisher store
|
|
win_certificate_store:
|
|
thumbprint: '{{ sign_cert_import.thumbprints[0] }}'
|
|
store_location: LocalMachine
|
|
store_name: TrustedPublisher
|
|
state: absent
|
|
|
|
- name: remove test packages
|
|
win_psmodule:
|
|
name: '{{ item }}'
|
|
state: absent
|
|
loop:
|
|
- ansible-test1
|
|
- ansible-test2
|
|
- ansible-clobber |