mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 11:51:26 -07:00
fixed docs for host list examples
This commit is contained in:
parent
8ca836ad14
commit
6dc2a6ce8b
2 changed files with 12 additions and 12 deletions
|
@ -23,12 +23,12 @@ DOCUMENTATION:
|
||||||
description:
|
description:
|
||||||
- Parses a host list string as a comma separated values of hosts and supports host ranges.
|
- Parses a host list string as a comma separated values of hosts and supports host ranges.
|
||||||
- This plugin only applies to inventory sources that are not paths and contain at least one comma.
|
- This plugin only applies to inventory sources that are not paths and contain at least one comma.
|
||||||
EXAMPLES:
|
EXAMPLES: |
|
||||||
# simple range
|
# simple range
|
||||||
ansible -i 'host[1:10],' -m ping
|
ansible -i 'host[1:10],' -m ping
|
||||||
|
|
||||||
# still supports w/o ranges also
|
# still supports w/o ranges also
|
||||||
ansible-playbook -i 'localhost,' play.yml
|
ansible-playbook -i 'localhost,' play.yml
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
'''
|
r'''
|
||||||
DOCUMENTATION:
|
DOCUMENTATION:
|
||||||
inventory: host_list
|
inventory: host_list
|
||||||
version_added: "2.4"
|
version_added: "2.4"
|
||||||
|
@ -23,14 +23,14 @@ DOCUMENTATION:
|
||||||
- Parses a host list string as a comma separated values of hosts
|
- Parses a host list string as a comma separated values of hosts
|
||||||
- This plugin only applies to inventory strings that are not paths and contain a comma.
|
- This plugin only applies to inventory strings that are not paths and contain a comma.
|
||||||
EXAMPLES: |
|
EXAMPLES: |
|
||||||
# define 2 hosts in command line
|
# define 2 hosts in command line
|
||||||
ansible -i '10.10.2.6, 10.10.2.4' -m ping all
|
ansible -i '10.10.2.6, 10.10.2.4' -m ping all
|
||||||
|
|
||||||
# DNS resolvable names
|
# DNS resolvable names
|
||||||
ansible -i 'host1.example.com, host2' -m user -a 'name=me state=abset' all
|
ansible -i 'host1.example.com, host2' -m user -a 'name=me state=abset' all
|
||||||
|
|
||||||
# just use localhost
|
# just use localhost
|
||||||
ansible-playbook -i 'localhost,' play.yml -c local
|
ansible-playbook -i 'localhost,' play.yml -c local
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue