mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
813 B
YAML
34 lines
813 B
YAML
6 years ago
|
---
|
||
|
- 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
|