community.general.aix_inittab module – Manages the inittab on AIX
Note
This module is part of the community.general collection (version 10.7.5).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.general.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.general.aix_inittab.
Synopsis
- Manages the - inittabon AIX.
Requirements
The below requirements are needed on the host that executes this module.
- itertools 
Parameters
| Parameter | Comments | 
|---|---|
| Action what the init has to do with this entry. Choices: 
 | |
| What command has to run. | |
| After which inittabline should the new entry inserted. | |
| Name of the  | |
| Runlevel of the entry. | |
| Whether the entry should be present or absent in the inittab file. Choices: 
 | 
Attributes
| Attribute | Support | Description | 
|---|---|---|
| Support: full | Can run in  | |
| Support: none | Will return details on what has changed (or possibly needs changing in  | 
Notes
Note
- The changes are persistent across reboots. 
- You need root rights to read or adjust the inittab with the - lsitab,- chitab,- mkitabor- rmitabcommands.
- Tested on AIX 7.1. 
Examples
# Add service startmyservice to the inittab, directly after service existingservice.
- name: Add startmyservice to inittab
  community.general.aix_inittab:
    name: startmyservice
    runlevel: 4
    action: once
    command: echo hello
    insertafter: existingservice
    state: present
  become: true
# Change inittab entry startmyservice to runlevel "2" and processaction "wait".
- name: Change startmyservice to inittab
  community.general.aix_inittab:
    name: startmyservice
    runlevel: 2
    action: wait
    command: echo hello
    state: present
  become: true
- name: Remove startmyservice from inittab
  community.general.aix_inittab:
    name: startmyservice
    runlevel: 2
    action: wait
    command: echo hello
    state: absent
  become: true
Return Values
Common return values are documented here, the following are the fields unique to this module:
| Key | Description | 
|---|---|
| Name of the adjusted  Returned: always Sample:  | 
