forked from coreos/fedora-coreos-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsystem-configuration.yaml
More file actions
55 lines (52 loc) · 1.93 KB
/
Copy pathsystem-configuration.yaml
File metadata and controls
55 lines (52 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# These are packages that are related to configuring parts of the system.
# It is intended to be kept generic so that it may be shared downstream with
# RHCOS.
packages:
# Manage and load rules in the audit subsystem in the kernel
# https://github.com/coreos/fedora-coreos-tracker/issues/1362
- audit
# Configuring SSH keys, cloud provider check-in, etc
- afterburn afterburn-dracut
# NTP support
- chrony
# Installing CoreOS itself
- coreos-installer coreos-installer-bootinfra
# Storage configuration/management
## cloud-utils-growpart - For growing root partition
- cifs-utils
- cloud-utils-growpart
- device-mapper-multipath
- iscsi-initiator-utils
- mdadm
- sg3_utils
# User configuration
- shadow-utils
- acl
# There are things that write outside of the journal still (such as the
# classic wtmp, etc.). auditd also writes outside the journal but it has its
# own log rotation.
# Anything package layered will also tend to expect files dropped in
# /etc/logrotate.d to work. Really, this is a legacy thing, but if we don't
# have it then people's disks will slowly fill up with logs.
- logrotate
# Boost starving threads
# https://github.com/coreos/fedora-coreos-tracker/issues/753
- stalld
conditional-include:
# numad is not available for s390x
- if: basearch != "s390x"
include:
packages:
# https://github.com/coreos/fedora-coreos-tracker/issues/2096
# numad: Daemon that provides placement advice for efficient use of CPUs and memory on systems with NUMA topology.
# numactl: Control NUMA policy for processes or shared memory
- numad
- numactl
postprocess:
# Mask systemd-repart. Ignition is responsible for partition setup on first
# boot and does not use systemd-repart currently. See also
# https://github.com/coreos/fedora-coreos-tracker/issues/570
- |
#!/usr/bin/bash
set -eux -o pipefail
systemctl mask systemd-repart.service