Skip to content

Commit

Permalink
AIXPB: add maxuproc to sys0 role (#3139)
Browse files Browse the repository at this point in the history
* aixPB: rename role on device rather than on a single setting

* aixPB: rename role on mechanism rather than on object type

* aixPB: remove task as duplicate

* aixPB: add maxuproc setting to sys0 role
  • Loading branch information
aixtools authored Aug 1, 2023
1 parent e6c7d50 commit d8da264
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions ansible/playbooks/AdoptOpenJDK_AIX_Playbook/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@

# 2. AIX BOS configuration

- syslogs
- sys0
- syslog
- crontab
# TBD: additional tasks below that need to be promoted to
# or migrated into an AIX setup role - in paritcular -
Expand Down Expand Up @@ -96,7 +97,6 @@
- bash_login
- ntp_time_server
- disable_sendmail
- fullcore
- enable_swap

- role: logs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@
- name: Ensure full AIX core files are enabled
command: chdev -l sys0 -a fullcore=true
changed_when: false
tags: fullcore
tags: sys0

- name: Ensure maxuproc is 512
command: chdev -l sys0 -a maxuproc=512
changed_when: false
tags: sys0
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,3 @@
service: name=syslogd state=reloaded
changed_when: false
tags: syslog

- name: Ensure full core files are enabled
command: chdev -l sys0 -a fullcore=true
changed_when: false
tags: syslog

0 comments on commit d8da264

Please sign in to comment.