mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-02 14:29:10 -07:00
Adjust booleans in system modules (#5153)
* Adjust booleans in system modules. * Fix some IP addresses Co-authored-by: Sandra McCann <samccann@redhat.com> Co-authored-by: Sandra McCann <samccann@redhat.com>
This commit is contained in:
parent
bcecf2dcdc
commit
be2de15c66
39 changed files with 162 additions and 146 deletions
|
@ -21,13 +21,13 @@ options:
|
|||
description:
|
||||
- Name of the inittab entry.
|
||||
type: str
|
||||
required: yes
|
||||
required: true
|
||||
aliases: [ service ]
|
||||
runlevel:
|
||||
description:
|
||||
- Runlevel of the entry.
|
||||
type: str
|
||||
required: yes
|
||||
required: true
|
||||
action:
|
||||
description:
|
||||
- Action what the init has to do with this entry.
|
||||
|
@ -49,7 +49,7 @@ options:
|
|||
description:
|
||||
- What command has to run.
|
||||
type: str
|
||||
required: yes
|
||||
required: true
|
||||
insertafter:
|
||||
description:
|
||||
- After which inittabline should the new entry inserted.
|
||||
|
@ -78,7 +78,7 @@ EXAMPLES = '''
|
|||
command: echo hello
|
||||
insertafter: existingservice
|
||||
state: present
|
||||
become: yes
|
||||
become: true
|
||||
|
||||
# Change inittab entry startmyservice to runlevel "2" and processaction "wait".
|
||||
- name: Change startmyservice to inittab
|
||||
|
@ -88,7 +88,7 @@ EXAMPLES = '''
|
|||
action: wait
|
||||
command: echo hello
|
||||
state: present
|
||||
become: yes
|
||||
become: true
|
||||
|
||||
- name: Remove startmyservice from inittab
|
||||
community.general.aix_inittab:
|
||||
|
@ -97,7 +97,7 @@ EXAMPLES = '''
|
|||
action: wait
|
||||
command: echo hello
|
||||
state: absent
|
||||
become: yes
|
||||
become: true
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue