File tree Expand file tree Collapse file tree 4 files changed +16
-20
lines changed Expand file tree Collapse file tree 4 files changed +16
-20
lines changed Original file line number Diff line number Diff line change 11podman_users :
22 - name : " {{ ansible_user }}"
3- podman_tmp_dir_root : /run # MUST be on a tmpfs
Original file line number Diff line number Diff line change 4444 with_items : " {{ podman_users }}"
4545 register : podman_user_info
4646 become : yes
47+
48+ - name : Clear up podman temporary files on startup
49+ copy :
50+ content : |
51+ # Created by ansible
52+ # Delete ephemeral podman files to avoid issues where /tmp is not of type tmpfs and persists across reboots.
53+ # See tmpfiles.d(5) man page, note "R" specifies recursive removal and "!" marks as happening only on boot.
54+ #
55+ # Type Path Mode User Group Age Argument
56+ R! /tmp/containers-user-*
57+ R! /tmp/podman-run-*
58+ dest : /etc/tmpfiles.d/podman-local.conf
59+ owner : root
60+ group : root
61+ mode : 0660
62+ become : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2929 'enable_configless' not found in openhpc_config.SlurmctldParameters - is variable openhpc_config overridden?
3030 Additional slurm.conf parameters should be provided using variable openhpc_config_extra.
3131 success_msg : Checked Slurm will be configured for configless operation
32-
33- - name : Validate podman configuration
34- hosts : podman
35- gather_facts : false
36- tags : podman
37- tasks :
38- - import_role :
39- name : podman
40- tasks_from : validate.yml
41- tags : validate
4232
4333- name : Validate filebeat configuration
4434 hosts : filebeat
You can’t perform that action at this time.
0 commit comments