Commit Graph

53228 Commits (1bda6750f5f4fb8b01de21d1949b02d7547ff838)
 

Author SHA1 Message Date
Sloane Hertel f9cb679675
compile role with all parents in the dep chain (#79079)
fix inheriting from parents when role depth exceeds 3

Fixes #47023
2 years ago
mtoivo cc2e7501db
Disable IP address lookups in iptables -module when listing (#78828)
* add --numeric to list

Co-authored-by: Mikko Toivola <mikko.toivola@insta.fi>
2 years ago
Brian Coca 5d253a1380
fix password lookup's use of f=v settings (#76551)
update tests
2 years ago
Matt Clay 14e7f05318 ansible-test - Update pylint to 2.15.4. 2 years ago
Martin Krizek 58637702b4
Cache field attributes list on the playbook classes (#79091)
* Cache field attributes list on the playbook classes
2 years ago
NitrogenPointBlue 1286b7d42e
Apply minor formatting changes to "playbooks directory" section (#79092) 2 years ago
Sharif Nassar dfef3260a5
Add code-block wrappers to code examples in playbooks_filters.rst (#79093)
Fixes #79029
2 years ago
Abhijeet Kasurde a48c442275
Misc Typo fixes (#79088) 2 years ago
Andrew Klychkov ad1eba9876
community_steering_committee: add a new member (#79089) 2 years ago
taso 7d6984618d
Docs: syntax error in Parsing semi-structured text with Ansible (#79085) 2 years ago
12-malak 8ecfb7c6d8
Added code-block wrappers in implicit_localhost.rst (#79086)
Fixes #79031
2 years ago
KIDANI Akito ad5d9843d6
docs: fix typos (#79082) 2 years ago
Sloane Hertel eecc4046e8
Fix empty str defaults in config/base.yml (#77733)
* fix empty str default for config/base.yml config options by rendering '' instead of ``''``

Co-authored-by: Brian Coca <bcoca@users.noreply.github.com>
2 years ago
Sloane Hertel e208fe5932
copy module - fix copying directories recursively with remote_src=True (#76997)
* copy module - fix copying directories containing modified subdirs with remote_src=True. Previously, the first changed subdir would prevent recursively checking for changes for in subdirs at the same level.

* Fix reporting changed for copying empty directories with remote_src=True. If a directory is created on the remote but nothing else, changed is True.
2 years ago
Brian Coca 27ab589ee8
ansible-config, only subvalues should use yaml shorthand (#79073)
* ensure we only use shorthand for assigned values

* fix ansible-config std display

* split baby

* killed offending whitespace

* moved to func instead

* the revenge of whitespace
2 years ago
Brian Coca fcea07bbef
Custom salt for ansible-vault encrypt (#79063)
* Custom salt for ansible-vault encrypt

  add VAULT_ENCRYPT_SALT config
  add salt testing


Co-authored-by: Abhijeet Kasurde <akasurde@redhat.com>
Co-authored-by: Piotr Stawarski <p@stawarski.pl>
2 years ago
sbettid 8cf7a0d3f0
Fix collection install from source respects symlinks (#78983)
* Fix installation from source transforms symlinks of dirs to empty dirs

* Add test to check symlinks to dirs are respected when installing from source

* Add changelog for collection install from source symlink to dirs issue
2 years ago
Matt Martz 420564c5bc
Ensure that we do not squash keywords in validate (#79049)
* Ensure that we do not squash keywords in validate. Fixes #79021

* become_user: nobody should only apply to the test tasks, not the setup_test_user role

* Update how become_user is specified

* Add test to ensure keyword inheritance is working for become

* Add clog frag

* Cache fattributes to prevent re-calculation

* ci_complete

* Remove unnecessary getattr
2 years ago
Donatas Abraitis 11c1777d56
facts: List all local (scope host) IP address ranges (#79018)
After changes:
```
        "ansible_locally_reachable_ips": {
            "ipv4": [
                "127.0.0.0/8",
                "127.0.0.1",
                "192.168.0.1",
                "192.168.1.0/24"
            ],
            "ipv6": [
                "::1",
                "fe80::2eea:7fff:feca:fe68",
                ...
            ]
        },
```

192.168.1.0/24 is a local prefix, where any IP address inside this range
is reachable locally (or outside this host if this prefix is announced via
EGP/IGP).

Signed-off-by: Donatas Abraitis <donatas.abraitis@hostinger.com>
2 years ago
Martin Krizek e1daaae42a
Fix using FQCN for flush_handlers (#79057)
Fixes #79023
2 years ago
Leo Ochoa f8f1c6a6b5
Add password_hash filter and fix some nits (#78743)
Co-authored-by: Abhijeet Kasurde <akasurde@redhat.com>
2 years ago
Matt Martz 44581289e8
Use python re to parse service output instead of grep (#79015)
* Use python re to parse service output instead of grep. Fixes #78541

* Add clog frag

* Add an extra guard to abort if rc is 4, and /etc/init.d is missing
2 years ago
Shubhadeep Das 680bf029b1
Docs: Add code-block wrappers in lookup.rst & strategy.rst (#79032, #79033) (#79048) 2 years ago
Shellylo 35700f57cc
Docs: Add code-block wrappers in faq.rst (#79047) 2 years ago
shade34321 25a770de37
Docs: fixed configs docs to properly display code blocks (#79040)
* fixed some docs to properly display code blocks
Co-authored-by: Shade Alabsa <shadealabsa@microsoft.com>
2 years ago
shade34321 3fc3371463
Cleaned up test_strategies doc (#79045)
Authored-by: Shade Alabsa <shadealabsa@microsoft.com>
2 years ago
Deepshri M 3a788314a2
Docs: Adding code blocks wrapper (#79042)
* Adding code blocks wrapper
2 years ago
Mudit Choudhary 63b5fc4b8d
Docs: Add code-block wrappers to code examples (#79037)
* Docs: Add code-block wrappers to code examples
2 years ago
Deepshri M 57f22529cb
Add code-block wrappers in network_debug_troubleshooting.rst 2 years ago
Brian Coca ff6e4da36a
fixes to FA inheritance (#78990)
finalized applies to all field attributes
fix getting parent value
also remove unused/needed extend/prepend signature
moar testing
2 years ago
Dmytro Khomutnyk b5db71e318
ansible-vault: add newline to the output of the 'encrypt_string' command (#79017)
* ansible-vault: add newline to the output of the 'encrypt_string' command

* Add comment with issue description and improve string joining

* Add changelog fragment

* Update changelogs/fragments/79017-ansible-vault-string-encryption-ending-with-newline.yml

Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>

* Fixed some typos in changelog fragment

* Improve comment regarding newline character at the end of file

Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>

Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
2 years ago
prayatharth 56285b1d2b
Docs: true/false with boolean values (#78980)
* Adding FQCN community.postgresql. to postgresql modules
2 years ago
Felix Fontein 6d0aeac1e1
Do not crash templating when filter/test name is not a valid Ansible plugin name (#78913)
* Do not crash templating when filter/test name is not a valid Ansible plugin name.
* Store and re-raise KeyError if there was one.

Co-authored-by: s-hertel <19572925+s-hertel@users.noreply.github.com>
2 years ago
Samuel Gaist 367cdae3b2
docs: replace latin terms with english in the scenario_guides (#79008) 2 years ago
Samuel Gaist 4d3c12ae9e
docs: replace latin terms with english in the reference_appendices (#79010) 2 years ago
smeet07 8f4133b514
Docs: Replace Latin in the porting guides (#79011) 2 years ago
taso ea04d05a1e
Docs: Typo in Alibaba Cloud Compute Services Guide (#78984) 2 years ago
Samuel Gaist 8d665a1a8e
docs: replace latin terms with english in network (#79013)
fixes #78999 by removing Latin usage in network docs
2 years ago
Ishan Siddiqui f0cc70f9e1
No latin terms (#79009)
Fixes #79006
2 years ago
Suven-p 173ddde126
Docs: true/false with boolean values in docsite/rst/playbook_guide (#78958) 2 years ago
Ishan Siddiqui 4f4ad453c4
Fixed Latin words, replaced all via with either through or by (#79004) 2 years ago
Samuel Gaist 55925958ea
docs: replace latin terms with english in the os_guide directory (#79007)
Fixes #79003
2 years ago
Niranjan Meghwal 78c9fb4159
replace with boolean true/false (#78950) 2 years ago
Mazen Ramadan fbd98cd824
Docs: Replace Latin terms in the dev_guide #78997 (#79005) 2 years ago
J-F-Far 5b333c9665
scenario guide doc changes (#78934) 2 years ago
Kampftoast 5137cb16e9
Update porting_guide_5.rst (#78954) 2 years ago
Kampftoast ba32642538
Update porting_guide_4.rst (#78953) 2 years ago
Kampftoast 919c449256
Update porting_guide_3.rst (#78952)
Fixes #78914
2 years ago
Kampftoast dc2d15fca4
Update porting_guide_2.0.rst (#78951)
Replaced http link with rst version - issue https://github.com/ansible/ansible/issues/78914
2 years ago
Blaster4385 f7c01bc866
Docs: Provide descriptive labels for http references (#78959) 2 years ago