|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- {%- from "linux/map.jinja" import system with context %}
- {%- from "linux/map.jinja" import network with context %}
- include:
- - linux.system.env
- - linux.system.profile
- - linux.system.shell
- {%- if system.login_defs is defined %}
- - linux.system.login_defs
- {%- endif %}
- {%- if system.at is defined %}
- - linux.system.at
- {%- endif %}
- {%- if system.cron is defined %}
- - linux.system.cron
- {%- endif %}
- {%- if system.repo|length > 0 %}
- - linux.system.repo
- {%- endif %}
- {%- if system.pkgs|length > 0 %}
- - linux.system.package
- {%- endif %}
- {%- if pillar.linux.system.autoupdates is defined %}
- - linux.system.autoupdates
- {%- endif %}
- {%- if system.timezone is defined %}
- - linux.system.timezone
- {%- endif %}
- {%- if system.kernel is defined %}
- - linux.system.kernel
- {%- if system.kernel.hugepages is defined %}
- - linux.system.hugepages
- {%- endif %}
- {%- if network.dpdk is defined %}
- - linux.system.dpdk
- {%- endif %}
- {%- if system.kernel.sriov is defined %}
- - linux.system.sriov
- {%- endif %}
- {%- endif %}
- {%- if system.cpu is defined %}
- - linux.system.cpu
- {%- endif %}
- {%- if system.sysfs is defined %}
- - linux.system.sysfs
- {%- endif %}
- {%- if system.cgroup is defined %}
- - linux.system.cgroup
- {%- endif %}
- {%- if system.locale|length > 0 %}
- - linux.system.locale
- {%- endif %}
- {%- if system.prompt is defined %}
- - linux.system.prompt
- {%- endif %}
- {%- if system.bash is defined %}
- - linux.system.bash
- {%- endif %}
- {%- if system.user|length > 0 %}
- - linux.system.user
- {%- endif %}
- {%- if system.group|length > 0 %}
- - linux.system.group
- {%- endif %}
- {%- if system.rc is defined %}
- - linux.system.rc
- {%- endif %}
- {%- if system.job|length > 0 %}
- - linux.system.job
- {%- endif %}
- {%- if grains.os_family == 'RedHat' %}
- - linux.system.selinux
- {%- endif %}
- {%- if system.ca_certificates is defined %}
- - linux.system.certificate
- {%- endif %}
- {%- if system.apparmor is defined %}
- - linux.system.apparmor
- {%- endif %}
- {%- if pillar.linux.system.atop is defined %}
- - linux.system.atop
- {%- endif %}
- {%- if system.console is defined %}
- - linux.system.console
- {%- endif %}
- {%- if system.limit|length > 0 %}
- - linux.system.limit
- {%- endif %}
- {%- if system.motd|length > 0 %}
- - linux.system.motd
- {%- endif %}
- {%- if system.get('policyrcd', [])|length > 0 %}
- - linux.system.policyrcd
- {%- endif %}
- {%- if system.haveged is defined %}
- - linux.system.haveged
- {%- endif %}
- {%- if system.config is defined %}
- - linux.system.config
- {%- endif %}
- {%- if system.sudo is defined %}
- - linux.system.sudo
- {%- endif %}
- {%- if system.netconsole is defined %}
- - linux.system.netconsole
- {%- endif %}
- {%- if system.service is defined %}
- - linux.system.service
- {%- endif %}
- {%- if system.systemd is defined %}
- - linux.system.systemd
- {%- endif %}
- {%- if system.directory is defined %}
- - linux.system.directory
- {%- endif %}
- {%- if system.file is defined %}
- - linux.system.file
- {%- endif %}
- {%- if system.ld is defined %}
- - linux.system.ld
- {%- endif %}
- {%- if system.apt is defined and grains.os_family == 'Debian' %}
- - linux.system.apt
- {%- endif %}
- {%- if system.auth is defined %}
- - linux.system.auth
- {%- endif %}
- {%- if system.banner is defined %}
- - linux.system.banner
- {%- endif %}
- {%- if system.mcelog is defined %}
- - linux.system.mcelog
- {%- endif %}
|