mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-01 04:31:22 +00:00
fcdf86b31c
This commit appends the README.md to state that yaml files should start with `---` and end with `...`. This also addresses some linting warnings that were not appearing during pre-commit on local system.
28 lines
487 B
YAML
28 lines
487 B
YAML
---
|
|
# Account Services
|
|
- name: Install packages
|
|
package:
|
|
name:
|
|
- httpd
|
|
- mod_ssl
|
|
- python3
|
|
- python3-setuptools
|
|
- python3-kdcproxy
|
|
state: present
|
|
|
|
- name: Deploy relevant httpd configuration
|
|
template:
|
|
src: "etc/httpd/conf.d/id.conf.j2"
|
|
dest: "/etc/httpd/conf.d/id.conf"
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
notify: restart_httpd
|
|
|
|
- name: Enable and start
|
|
systemd:
|
|
name: httpd
|
|
state: running
|
|
enabled: true
|
|
...
|