mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
b1c60eaa83
This commit introduces a new module called vr_startup_script_facts. This module aims to return the list of startup scripts avaiable avaiable in Vultr. Sample available here: ``` "vultr_startup_script_facts": [ { "date_created": "2018-07-19 08:52:55", "date_modified": "2018-07-19 08:52:55", "id": 327140, "name": "myteststartupscript", "script": "#!/bin/bash\necho Hello World > /root/hello", "type": "boot" } ] ```
30 lines
1 KiB
YAML
30 lines
1 KiB
YAML
# Copyright (c) 2018, Yanis Guenane <yanis+ansible@guenane.org>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
---
|
|
- name: Create the script
|
|
vr_startup_script:
|
|
name: '{{ startup_script_name }}'
|
|
script_type: '{{ startup_script_type }}'
|
|
script: '{{ startup_script_content }}'
|
|
|
|
- name: test gather vultr startup script facts in check mode
|
|
vr_startup_script_facts:
|
|
check_mode: yes
|
|
|
|
- name: verify test gather vultr startup script facts in check mode
|
|
assert:
|
|
that:
|
|
- ansible_facts.vultr_startup_script_facts|selectattr('name','equalto','{{ startup_script_name }}') | list | count == 1
|
|
|
|
- name: test gather vultr startup script facts
|
|
vr_startup_script_facts:
|
|
|
|
- name: verify test gather vultr startup script facts
|
|
assert:
|
|
that:
|
|
- ansible_facts.vultr_startup_script_facts|selectattr('name','equalto','{{ startup_script_name }}') | list | count == 1
|
|
|
|
- name: Delete the script
|
|
vr_startup_script:
|
|
name: '{{ startup_script_name }}'
|
|
state: absent
|