aix_inittab – Manages the inittab on AIX¶
Parameters¶
Notes¶
Note
- The changes are persistent across reboots.
- You need root rights to read or adjust the inittab with the
lsitab
,chitab
,mkitab
orrmitab
commands. - Tested on AIX 7.1.
Examples¶
# Add service startmyservice to the inittab, directly after service existingservice.
- name: Add startmyservice to inittab
aix_inittab:
name: startmyservice
runlevel: 4
action: once
command: echo hello
insertafter: existingservice
state: present
become: yes
# Change inittab entry startmyservice to runlevel "2" and processaction "wait".
- name: Change startmyservice to inittab
aix_inittab:
name: startmyservice
runlevel: 2
action: wait
command: echo hello
state: present
become: yes
- name: Remove startmyservice from inittab
aix_inittab:
name: startmyservice
runlevel: 2
action: wait
command: echo hello
state: absent
become: yes
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Status¶
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by the Ansible Community. [community]
Authors¶
- Joris Weijters (@molekuul)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.