mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-27 10:40:22 -07:00
[WIP] Removed windows dep and unify shippable.sh (#38)
* Removed windows dep and unify shippable.sh * Removed uneeded -p * Fix chmod. * Update tests/utils/shippable/shippable.sh Co-Authored-By: John R Barker <john@johnrbarker.com> * Distribute sanity tests into groups. * Remove docs-build test, which doesn't yet exist for collections. * Remove package-data. * Remove unsupported option. * Fix paths. Co-authored-by: Jordan Borean <jborean93@gmail.com> Co-authored-by: John R Barker <john@johnrbarker.com>
This commit is contained in:
parent
7ead1c14fc
commit
a91ebb4e97
6 changed files with 120 additions and 77 deletions
|
@ -1,9 +1,6 @@
|
|||
- name: postgresql_ext - install postgis on Linux
|
||||
package: name=postgis state=present
|
||||
when: ansible_os_family != "Windows"
|
||||
- name: postgresql_ext - install postgis on Windows
|
||||
when: ansible_os_family == "Windows"
|
||||
ansible.windows.win_package: name=postgis state=present
|
||||
- name: postgresql_ext - create schema schema1
|
||||
become_user: '{{ pg_user }}'
|
||||
become: true
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
- name: delete temporary directory (windows)
|
||||
ansible.windows.win_file:
|
||||
path: '{{ remote_tmp_dir }}'
|
||||
state: absent
|
|
@ -1,10 +0,0 @@
|
|||
- name: create temporary directory
|
||||
register: remote_tmp_dir
|
||||
notify:
|
||||
- delete temporary directory (windows)
|
||||
ansible.windows.win_tempfile:
|
||||
state: directory
|
||||
suffix: .test
|
||||
- name: record temporary directory
|
||||
set_fact:
|
||||
remote_tmp_dir: '{{ remote_tmp_dir.path }}'
|
Loading…
Add table
Add a link
Reference in a new issue