Commit Graph

14250 Commits (3691c784d25c173f0967f536c52ee0c15922948d)

Author SHA1 Message Date
Toshio Kuratomi 51491c9904 Remove itervalues (not available on py3) 9 years ago
Toshio Kuratomi a8af6c6baf Fix some SSL errors in mail.py causing SMTP Syntax Errors (Rebase of https://github.com/ansible/ansible-modules-extras/pull/708 ) (#19253)
* Rebase of https://github.com/ansible/ansible-modules-extras/pull/708

708 was full of extraneous merge commits interwoven with commits to
implement the feature. In the end the only way I could clean this up
in reasonable time was to just take a regular diff between the PR and
the base.  This lost the history of intermediate commits but I've
preserved attribution to @dayton967 via git's --author field.

Although I preserved the logic of the PR, there were a few additional
things that I cleaned up:

* Fixed import of email.mime.multipart
* Used the argspec to set port and timeout to integers instead of having
  ad hoc code inside of the module.
* Used argspec's choices for secure instead of ad hoc code inside of the
  module.
* Removed some unused variables
* Made secure_state a python boolean instead of using 0 and 1
* Used secure with string comparisons instead of turning it into an
  integer code.  This is much more readable.
* Fixed catching of SMTPExceptions (SMTPException wasn't imported
  directly so it needed to use the smtplib namespace.)
9 years ago
René Moser a28d898c29 cloudstack: cs_securitygroup_rule: fix impossible to set icmp_code and icmp_type to 0 (#19258) 9 years ago
Andrea Tartaglia ef391a11ec Removed dict.iteritems() in modules. (#18859)
This is for py3 compatibility, addressed in #18506
9 years ago
Vlad Glagolev 4b27d08643 dropped 'BOOLEANS' choices, converted env vars to str 9 years ago
Clark Boylan a65e34ce77 Fix synchronize retries (#18535)
* Fix synchronize retries

The synchronize module munges its task args on every invocation of
run(). This was problematic because the munged data was not fit for use
by a second pass of the synchronize module. Correct this by using a copy
of the task args on every invocation of run() so that the original args
are not affected.

Local testing using this playbook seems to confirm that things work as
expected:

  - hosts: all
  tasks:
    - delay: 2
      register: task_result
      retries: 1
      until: task_result.rc == 0
      synchronize:
        dest: /tmp/out
        mode: pull
        src: /tmp/nonexistent/

fixes #18281

* Update synchroncization fixture assertions

When we started operating on a copy of the task args the test assertions
were no longer asserting things about the munged state but of the
pristine state. Convert the copy of task args to a class member so that
it can be compared against later in testing and update the assertions to
check this munged copy.
* Shuffle objects around for cleaner testing

Attach the temporary args dict to the task rather than the action as
this makes updating the existing tests cleaner.
9 years ago
ikelos 9e5d4de49a Fix overwrite parameter in module_utils.junos (#18671)
The overwrite parameter is forcibly set to false, meaning a module
passing that parameter will have no effect.  The overwrite facility
is necessary to ensure that conflicting options can be written the
configuration (which, in replace mode, they cannot).

This change ensures that if overwrite is set, it will not be changed
to False in the logic.
9 years ago
Patrick Ogenstad 05e5474c52 Disable CLI errors when typing enable (#18531) 9 years ago
Juan Antonio Valiño García 40ddbe026d Fixes #18663. Bad handling of existing config in dellos9 module. (#18664)
* Fixes #18663. Bad handling of existing config in dellos9 module.

The dellos9 module doesn't build correctly the internal
structures used to represent the existing config of the managed
network device. This leads to apply changes every time the
playbook is run, even if the existing config is the same that the
one you are trying to push into the device.

Probably this problem exist also in the dellos6 and dellos10
modules, but I only fixed it in the dellos9 module.

The fix modifies two methods. The first one is `get_config`,
where the return clause didn't work correctly when the flow
doesn't enter in the `if` block. In that case the `contents`
variable is not an array an this should be handled.

The second fix is in the `get_sublevel_config` method. In this
case the indentation whitespaces of the parents should be rebuild
because further functions and methods required it to handle
correctly comparisons used to check if changes should be pushed
into device.

* Fixes #18663 for dellos10 module with the same patches as dellos9.
9 years ago
Matt Clay 43785aa246 Add --all option to ansible-doc. 9 years ago
Nehal J Wani ead0022255 Open temp file only once
mkstemp() returns a tuple containing an OS-level handle to an open file
(as would be returned by os.open()) and the absolute pathname of that
file, in that order.

This patch makes sure that the fd opened by tempfile.mkstemp() is
re-used and closed properly.
9 years ago
Fabio Alessandro Locati 470d1e3aea Remove unused quotes (#19207) 9 years ago
Fabio Alessandro Locati 4b9a65fd7c Improve quotes - notification/hall.py (#19166) 9 years ago
Fabio Alessandro Locati 64e4c2798c Improve quotes - notification/nexmo.py (#19168) 9 years ago
Fabio Alessandro Locati 5e9b763937 Remove useless quotes - notification/sns.py (#19169) 9 years ago
Fabio Alessandro Locati 3d15f622b0 Always run on localhost - notification/rocketchat.py (#19170) 9 years ago
Fabio Alessandro Locati cf5424e165 Remove useless quotes - monitoring/statusio_maintenance.py (#19173) 9 years ago
Kevin Burke 114e3cb7a4 Fix typos in git.py (#19186) 9 years ago
Evan Kaufman aaf13e07fe Handle byte/string conversion on read/write with text module_utils (#19188)
Fixes ansible/ansible-modules-core#5840, moved from ansible/ansible-modules-core#5847
9 years ago
Vlad Glagolev 45b2f4b479 Source Mage GNU/Linux package manager support (#19072)
* added alpha version of the 'sorcery' module

* fully conforming YAML

* use bundled check for executables

* - codex_list(): use commands instead of checksums to get sorcery version and verify codex equality - renamed: - manage_depends() -> match_depends() - tocast -> cast_queue, todispel -> dispel_queue, needs_recast -> depends_ok - SORCERY_LOG -> SORCERY_LOG_DIR, SORCERY_STATE -> SORCERY_STATE_DIR - removed: - SORCERY_VERSION_FILE - CODEX - added commentary to match_depends() and manage_spells() - fixed bug about dropped dependency line for previously existed dependency - fixed bug about not fixing depends for the 'latest' state - simplified several code constructions

* cleaned up some docs

* do not use separate message for Codex update, rely on the 'changed' status instead

* use built-in list conversion (_check_type_list()) for spells

* corrected spell name extraction from list in match_depends()

* avoid non-matching dependencies line duplication in depends file

* added more complex playbook example

* tiny stylistic fix for docs

* replaced ternary construction with a regular statement

* replaced yet another ternary construction with a regular statement

* enable Python 2.4 compatibility by splitting try-finally block

* enable Python 2.4 compatibility by replacing 'with' statement with try-except+try-finally blocks

* unify spells' assign

* replaced one regex with startswith()

* go Ansible 2.1

* added dummy RETURN template

* go Ansible 2.2

* better clarify permissions' requirements

* - updated copyright years - fixed rebuild command bug - re-used run_command_environ_update dict for env var management

* handle Python 3.5

* Revert "handle Python 3.5"

This reverts commit 33a5a0eb64c1193318298e111f063cdd5f93b73a.

* handle Python 3.5 (2nd try)

* go Ansible 2.3

* clarity++
9 years ago
Fabio Alessandro Locati 4bfb83c966 Native YAML - notification/mqtt.py (#19164) 9 years ago
Alexandre Garnier 0f7abad38f Fix python 2.4 compatibility
`start` keyword of `enumerate` is only available since python 2.6
9 years ago
Chris Houseknecht 65491cc839 For docker add --blocking-io only when missing (#19171) 9 years ago
Irina Muchnik 9f58e69d63 Fix secure temp file creation (#19096)
* For realz this time

* Fix tempfile.mkstemp (#2)

* back to square one, removing temp file from the mix

* Adding temp back

* Adding tuple  back

* Adding another tuple back

* Trying to get around weird Jenkins behavior of blowing up when both .hpi and jpi file found

* Incorporating PR feedback

* Delete .hpi file instead of backing it up, some basic clean up

* Moving file deletion to the right location

* Blank lines. They always get me.
9 years ago
Fabio Alessandro Locati 2adde7a6d1 Remove unused quotes - notification/pushbullet.py (#19149) 9 years ago
Fabio Alessandro Locati c3887138c5 Remove unused quotes (#19150) 9 years ago
Fabio Alessandro Locati 261fad8fee Remove unused quotes - notification/hipchat.py (#19151) 9 years ago
Fabio Alessandro Locati 617e82fe8c Remove unused quotes - notification/twilio.py (#19152) 9 years ago
Fabio Alessandro Locati e788f13956 Remove unused quotes - files/unarchive.py (#19155) 9 years ago
Fabio Alessandro Locati 90a698c367 Remove unused quotes - notification/rocketchat.py (#19156) 9 years ago
Fabio Alessandro Locati 372352f35d Remove unused quotes - web_infrastructure/deploy_helper.py (#19157) 9 years ago
Fabio Alessandro Locati e32b0da0b0 Improve examples - monitoring/logicmonitor_facts.py (#19158) 9 years ago
Fabio Alessandro Locati a8fa008bbe Remove unused quotes - source_control/github_hooks.py (#19159) 9 years ago
Fabio Alessandro Locati b42cda4dd2 Remove deprecated example (#19161) 9 years ago
Chris Houseknecht b02491ba70 Add --blocking-io option when docker connection (#19140) 9 years ago
Rene Moser b1ea79af51 cloudstack: cs_role: doc fixes. 9 years ago
René Moser a8fc8249b4 cloudstack: new module cs_role (#19134) 9 years ago
Matt Clay 2cb6a10a0e Fix module names in module docs. 9 years ago
Matt Clay cd47cb2a15 Remove remnants of obsolete fireball mode. 9 years ago
Matt Clay ac7edef2be Fix modules with documentation errors. 9 years ago
Fabio Alessandro Locati 9a075b5917 Avoid using an object if it does not exists (#19058) 9 years ago
Fabio Alessandro Locati 28a12e8b27 Use dbus only if it is present (#19060) 9 years ago
Fabio Alessandro Locati 3b509b1095 Avoid extending a class if it does not exists (#19059) 9 years ago
Kash 6b1586748f Fixes #4538 passing int params as required by boto (#18999) 9 years ago
Yury V. Zaytsev 395b59ea6c Update ec2_vpc_peer.py (#19069)
Document `peering_id` module parameter.
9 years ago
José Sabater Montes 66ced41485 Add new Amazon EBS volume types. Fixes issue 4041 of ansible-modules-core 9 years ago
Adam Chainz 0b8aada1bc Cloudformation - allow re-using an existing template (#19009)
* Allow re-using an existing template when updating a stack by not passing 'template' or 'template_url'. This is a big one for me as our deploy process creates a new stack and then modifies the old one; to avoid changing the resources inside the old one, we have had to avoid using the Ansible module and use the AWS CLI instead in order to pass `--use-previous-template`.
* Split create and update logic into separate functions
* Remove dead `update` variable
9 years ago
Maarten Bezemer 7b4eb078c6 Leave current secutiry groups as-is if not provided (#19043) 9 years ago
Tom Paine 1d80f5cf0f Update ec2_group.py (#19033)
PR move of https://github.com/ansible/ansible-modules-core/pull/3588

##### ISSUE TYPE
- Docs Pull Request

##### COMPONENT NAME
ec2_group.py

##### ANSIBLE VERSION

```
ansible 2.0.2.0
  config file = /Users/tpai/src/cm-secure/ansible.cfg
  configured module search path = Default w/o overrides
```
##### SUMMARY

Make it clear you can specify the created group in the rules list, allowing idempotent use for group<->group networking rules.

This is a really useful feature that isn't obvious enough in the docs.
9 years ago
Andy Freeland cb9b5ab146 Include volume encryption status in 'ec2_vol_facts' module (#19017) 9 years ago
Fabio Alessandro Locati ea46d5548b Native YAML - cloud/softlayer/sl_vm.py (#19056)
* Native YAML - cloud/softlayer/sl_vm.py

* Pointless to delegate/localaction, since we are already running on localhost
9 years ago
Fabio Alessandro Locati ee27c688fd Unquote strings that do not need quotes and retab - clustering/consul.py (#18834) 9 years ago
Fabio Alessandro Locati b811350f00 Native YAML - web_infrastructure/jira.py (#18832) 9 years ago
Fabio Alessandro Locati 21940f8c8e Remove unneeded quotes - source_control/bzr.py (#18825) 9 years ago
Fabio Alessandro Locati 19f0b5f1cc Remove unneeded quotes - notification/slack.py (#18826) 9 years ago
Fabio Alessandro Locati 6c06aeb792 Explicitally add the state - system/authorized_key.py (#18837) 9 years ago
Fabio Alessandro Locati 464e1b6a5a Improve the dependency on univention (aka: declare it and fail nicely if it is not present) (#18840) 9 years ago
Fabio Alessandro Locati 60f6bab430 Remove x bit - windows/win_copy.py (#18824) 9 years ago
Fabio Alessandro Locati 013722d974 Inline attays (#19061) 9 years ago
Fabio Alessandro Locati e5bc2e0570 Put spaces between graphs and var name (#19063) 9 years ago
Andy Freeland 72310ff3e8 Fix `wait` parameter in ec2 module docs (#19037)
Fixes #18913.
9 years ago
Fabio Alessandro Locati 2b47246e94 Native YAML - source_control/gitlab_user (#19053) 9 years ago
Fabio Alessandro Locati ba22514d47 Native YAML - source_control/gitlab_group (#19054) 9 years ago
Fabio Alessandro Locati 503f4c48db Inline array in example (#19055) 9 years ago
Fabio Alessandro Locati 3fa1ddc9db Native YAML - source_control/gitlab_project (#19062)
* Native YAML - source_control/gitlab_project

* Use example domain as for RFC2606
9 years ago
René Moser 345e39e1b1 cloudstack: cs_instance: fix userdata not up to date (#18942)
Fixes unnecessary VM restart.

VM userdata is currently not returned by the API listVirtualMachine and task will always be marked as changed in has_changed(), which will result in an unnecessary VM restart if force=true.

Reported by @Mayeu
9 years ago
Matt Clay 1da20c9716 Clean up issue templates. (#19011)
* Remove legacy GitHub templates.
* Remove references to module repos.
9 years ago
Matt Clay c709b22e5c Fix differences with devel. 9 years ago
James Cammarata fa5386c488 Some additional module cleanup of mistakes made during merging 9 years ago
James Cammarata 6ba6819446 Re-adding the init py for modules 9 years ago
Matt Davis cb1888125d add metadata to doc support (#18802)
fix broken module docs
change doc AST id extraction to use == instead of in
9 years ago
Fabio Alessandro Locati c786f7ca3c Native YAML - monitoring/logicmonitor.py (#18790)
* Native YAML - monitoring/logicmonitor.py

* Fix comments as well

* Fix quotes
9 years ago
Matt Clay 851b264fb0 Add missing znode module description. 9 years ago
Fabio Alessandro Locati f5da520bbb Consistency in space between parenthesys (#18796) 9 years ago
Fabio Alessandro Locati f8832bf302 Native YAML - monitoring/boundary_meter (#18791)
* Native YAML - monitoring/boundary_meter

* Fix apikey
9 years ago
Fabio Alessandro Locati 327cff7274 Native YAML - monitoring/pagerduty_alert (#18784) 9 years ago
Toshio Kuratomi df9059936b Metadata Status needs to be a list, not a scalar.
The default metadata was specified with a string "preview" instead of
the list ["preview"].
9 years ago
James Cammarata 14833f1c7a A few more organizational cleanups from the repo merge 9 years ago
James Cammarata 011ea55a8f Relocating extras into lib/ansible/modules/ after merge 9 years ago
James Cammarata c65ba07d2c Cleaning up diffs after extras modules merge 9 years ago
Toshio Kuratomi 2cfa25c930 Add metadata for xbps
Pass pyflakes
9 years ago
James Cammarata d2fc24b771 Removing unnecessary files before repo merge 9 years ago
Toshio Kuratomi bd12c4bfe7 Refreshed metadata for extras modules 9 years ago
Ryan S. Brown 92588923f4 Style fix for xbps module 9 years ago
Dino Occhialini 3821ea020f Add XBPS module (#1749)
Adds xbps module for managing Void Linux packages.

Currently supports:
* Installation
* Removal
* Updating Specific Packages
* Updating All Packages
* Updating package cache
9 years ago
Slezhuk Evgeniy 867c85af05 Add 'link' action to jira module 9 years ago
Ben Tomasik 62acd6286f Add check mode support (#3523) 9 years ago
0livd ff4deba55d Fetch vmid from the ProxmoxAPI when not set (#3591)
The vmid is no longer a required parameter
For the 'present' state:
 If not set, the next available one will be fetched from the API
For the 'started', 'stopped', 'restarted' and 'absent' states:
 If not set, the module will try to fetch it from the API based on the hostname
Inspired from the behavior of the proxmox_kvm module
9 years ago
Fabian Krämer 320ae068ed Allow Datadog monitors to be retrieved by id instead of name. (#3456) 9 years ago
David Stygstra 5454c562e9 Fix #3410 (#3411)
A port with the same name as the bridge is implicitly created for every
bridge, but it doesn't show in in `ovs-vsctl list-ports BRIDGE`.
9 years ago
MDCollins 7d8d830aee Update the status codes to look for (#2120)
Creation of a maintenance window returns a 201 (PagerDuty Developer documentation is unfortunately incorrect). Deleting a maintenance window returns a 204.
9 years ago
Colin Walters 5bfbeadca3 yum_repository: use https:// for EPEL examples (#3464)
This whole module is really lacking in security guidelines, but
downloading RPMs via plain `http://` without gpg is quite bad.  Let's
use `https://` for the EPEL examples for a start.
9 years ago
Arthur 9513388819 Update route53_zone.py fix indentation typo in examples (#3255) 9 years ago
Bill Wang 246ce5aa85 improve example for module ec2_vpc_subnet_facts (#3511) 9 years ago
Ondra Machacek 937117d871 Add oVirt ovirt_permissions and ovirt_permissions_facts modules (#3160) 9 years ago
Ondra Machacek 1d7c2eb00d Add oVirt ovirt_external_providers and ovirt_external_providers_facts modules (#3168) 9 years ago
Ondra Machacek 995ac40e8e Add oVirt ovirt_vmpools and ovirt_vmpools_facts modules (#3171) 9 years ago
Ondra Machacek 55274a4eec Add oVirt ovirt_quotas and ovirt_quotas_facts modules (#3172) 9 years ago
Ondra Machacek f6e257201c Add oVirt ovirt_nics and ovirt_nics_facts modules (#3205) 9 years ago
Ondra Machacek 489272890a Add oVirt ovirt_templates and ovirt_templates_facts modules (#3221) 9 years ago
Ondra Machacek 42737bc7c3 Add oVirt ovirt_storage_domains and ovirt_storage_domains_facts modules (#3222) 9 years ago
Ondra Machacek 190357e51f Add oVirt ovirt_vms_facts module (#3226) 9 years ago
Ondra Machacek 1057c2f89d ovirt_vms: Add new cloud_init_nics parameter (#3557) 9 years ago
Ondra Machacek 370d8332ae Add oVirt ovirt_affinity_labels and ovirt_affinity_labels_facts modules (#3570) 9 years ago
Ondra Machacek 6ade61a3ba Add oVirt users/groups and users_facts/group/facts modules (#3153) 9 years ago
Ondra Machacek 77c3868670 Add ovirt_networks and ovirt_networks_facts modules (#3148) 9 years ago
Ondra Machacek 68e83bba91 Add ovirt_datacenters and ovirt_datacenters_facts modules (#3146) 9 years ago
Ondra Machacek c12b705df8 Add ovirt_clusters and ovirt_clusters_facts modules (#3138)
* Add ovirt_clusters and ovirt_clusters_facts modules

* Add return values examples

* Improve documentation

* Added all cluster parameters
9 years ago
Krzysztof Magosa c385c6746a kubernetes: handle situation when target host does not have yaml library (fixes #3301) (#3449) 9 years ago
Ondra Machacek 32c7f1eae7 Add new ovirt_mac_pools module (#3646)
This patch adds new module to manage oVirt MAC pools.
9 years ago
Constantin 4bdbbed49c Fix: convert owner_ids to a list of strings (#3488) 9 years ago
Ben Tomasik 163f16658e Add check mode support (#3522) 9 years ago
Tristan de Cacqueray 8a02b5d702 Use parameters in os_stack update (#3560)
This change makes os_stack module idempotent. Otherwise, re-use of the
module fails with:
Error updating stack: ERROR: The Parameter (...) was not provided.

Fixes #3165.
9 years ago
Fabio Alessandro Locati 7a2d1a4210 Make `main()` calls conditional - commands (#3655) 9 years ago
Fabio Alessandro Locati cefb569797 Make `main()` calls conditional - messaging (#3654) 9 years ago
Fabio Alessandro Locati 6f019c1066 Make `main()` calls conditional - web_infrastructure (#3653) 9 years ago
Fabio Alessandro Locati cbe3f4e5e1 Make `main()` calls conditional - system (#3652) 9 years ago
Fabio Alessandro Locati 45b31fa514 Make `main()` calls conditional - source_control (#3651) 9 years ago
Fabio Alessandro Locati 007abb5373 Make `main()` calls conditional - packaging (#3650) 9 years ago
Fabio Alessandro Locati 95be8b8276 Make `main()` calls conditional - network (#3649) 9 years ago
Fabio Alessandro Locati 9f7ad2ca3b Conditional main - monitoring (#3648) 9 years ago
Fabio Alessandro Locati e788ce068a Make `main()` calls conditional - clustering (#3647) 9 years ago
Fabio Alessandro Locati 96780cf035 Make `main()` calls conditional - notifications (#3656) 9 years ago
Fabio Alessandro Locati afa6fa9a89 Make `main()` calls conditional - cloud (#3657) 9 years ago
Fabio Alessandro Locati 11e3ec26ea Make `main()` calls conditional - files (#3658) 9 years ago
Fabio Alessandro Locati 06bf2e1e63 Make `main()` calls conditional - database (#3659) 9 years ago
Ondra Machacek 103e3341f5 ovirt_vms: Add support to specify template version (#3567) 9 years ago
René Moser 3c48b4a7a1 cloudstack: cs_ip_address: implement VPC support (#3403) 9 years ago
René Moser 93ebe0f7c1 cloudstack: cs_staticnat: implement VPC support (#3409) 9 years ago
Fabio Alessandro Locati 7d1a006629 Native YAML, improve quotation (#3643) 9 years ago
Fabio Alessandro Locati 8b31d48410 Native YAML - monitoring/sensu_check (#3635) 9 years ago
Fabio Alessandro Locati 3b5826b828 Native YAML - monitoring/datadog_event (#3637) 9 years ago
Fabio Alessandro Locati 616752c2e3 Correct indentation in examples - files/blockinfile.py (#3630)
* indentation in with_items section is out, correct that.
9 years ago
Matthew Krupcale a6f0a279a9 FreeIPA module polymorphic restructuring and small fixes. (#3485)
* Moved JSON-RPC client IPAClient class to ansible.module_utils.ipa, which is extended by all ipa modules
* ipa_user: incorporate displayname and userpassword attributes in module_user
* ipa_user: capitalized "I" in comment
* ipa_user: updated get_ssh_key_fingerprint to include possibility of the uploaded SSH key including user@hostname comment, which also appears in the queried fingerprint. This fixes a mismatch in the calculated and queried SSH key fingerprint in the user_diff calculation when the user already exists.
* ipa_hbacrule: ipaenabledflag must be 'TRUE' or 'FALSE', not 'NO'
* ipa_sudorule: ipaenabledflag must be 'TRUE' or 'FALSE', not 'NO'
* Add author to files missing it
9 years ago
Fabian von Feilitzsch 92a53a7182 Check values for vm_id and vm_names instead of keys (#3621) 9 years ago
Jon Hawkesworth 50deb312fe Fix documentation error on read message from file example. 9 years ago
Fabio Alessandro Locati 2ea57deb72 Native YAML - cloud/centurylink/clc_loadbalancer.py (#3632) 9 years ago
Fabio Alessandro Locati cc25f24475 Native YAML - system (#3625)
* Native YAML - system

* Remove comment that is not applicable to the code
9 years ago
Fabio Alessandro Locati 737c6afb54 Native YAML - database/misc/mongodb_user.py (#3631) 9 years ago
Fabio Alessandro Locati cd54cd973a Native YAML - cloud/amazon/lambda.py (#3628) 9 years ago
Fabio Alessandro Locati 723556fc98 Native YAML - notification leftovers (#3626) 9 years ago
Fabio Alessandro Locati 2f369dff88 Native YAML - cloud/misc (#3615)
* Native YAML - cloud/misc

* Fix mistake
9 years ago
Fabio Alessandro Locati 75f9cb30e1 Add quotes for non-floats decimals (#3609) 9 years ago
Fabio Alessandro Locati d9231d065e Native YAML - cloud/openstack (#3614) 9 years ago
Fabio Alessandro Locati fb2ddac407 Native YAML - database/postgresql/postgresql_ext (#3617) 9 years ago
Fabio Alessandro Locati c284125e66 Native YAML - cloud/serverless (#3618) 9 years ago
Fabio Alessandro Locati d11a5bd492 Native YAML - windows (#3602)
* Native YAML - windows

* Fix baskslash

* Sorry
9 years ago
Fabio Alessandro Locati 684045a316 Fix spacing (#3616) 9 years ago
Fabio Alessandro Locati 4561c75d1c Normalize YAML - Cloud/VMWare (#3612) 9 years ago
Fabio Alessandro Locati 1a7b9090df Native YAML - cloud/cloudstack (#3613) 9 years ago