├── .github └── workflows │ ├── ansible-firewalld.yml │ ├── build-zfs-module.yml │ ├── butane.yml │ ├── convert-ubuntu-package.yml │ ├── dracut-module.yml │ ├── generate-rhcos-versions.yml │ ├── initramfs-module.yml │ ├── inject-go-binary.yml │ ├── podman-next.yml │ ├── replace-kernel.yml │ ├── replace-systemd.yml │ ├── rsyslog.yml │ ├── selinux.yml │ ├── tailscale.yml │ └── wifi.yml ├── LICENSE ├── README.md ├── ansible-firewalld ├── Containerfile ├── README.md └── configure-firewall-playbook.yml ├── autoupdate-unit ├── Containerfile └── usr │ └── lib │ └── systemd │ └── system │ ├── autoupdate-host.service │ ├── autoupdate-host.timer │ └── timers.target.wants │ └── autoupdate-host.timer ├── butane ├── Containerfile └── demo.bu ├── ci └── generate-rhcos-versions.py ├── convert-ubuntu-package ├── Containerfile └── README.md ├── dracut-module ├── Containerfile ├── README.md └── files │ ├── echo-here.service │ └── module-setup.sh ├── initramfs-module └── Containerfile ├── inject-go-binary ├── Containerfile ├── README.md ├── hello-world.go └── hello-world.service ├── kernel-rt └── Containerfile ├── loading-kernel-module ├── Containerfile ├── README.md └── fcos-config.fcc ├── nexodus ├── Containerfile ├── copr-nexodus-fedora.repo └── copr-nexodus-pubkey.gpg ├── podman-next ├── Containerfile ├── rhcontainerbot-podman-next-fedora.gpg └── rhcontainerbot-podman-next-fedora.repo ├── replace-kernel └── Containerfile ├── replace-systemd └── Containerfile ├── rsyslog ├── Containerfile ├── README.md └── remote.conf ├── selinux └── Containerfile ├── tailscale └── Containerfile └── wifi ├── Containerfile └── etc └── NetworkManager └── system-connections └── ExampleCorpWifi.ini /.github/workflows/ansible-firewalld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/ansible-firewalld.yml -------------------------------------------------------------------------------- /.github/workflows/build-zfs-module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/build-zfs-module.yml -------------------------------------------------------------------------------- /.github/workflows/butane.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/butane.yml -------------------------------------------------------------------------------- /.github/workflows/convert-ubuntu-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/convert-ubuntu-package.yml -------------------------------------------------------------------------------- /.github/workflows/dracut-module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/dracut-module.yml -------------------------------------------------------------------------------- /.github/workflows/generate-rhcos-versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/generate-rhcos-versions.yml -------------------------------------------------------------------------------- /.github/workflows/initramfs-module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/initramfs-module.yml -------------------------------------------------------------------------------- /.github/workflows/inject-go-binary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/inject-go-binary.yml -------------------------------------------------------------------------------- /.github/workflows/podman-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/podman-next.yml -------------------------------------------------------------------------------- /.github/workflows/replace-kernel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/replace-kernel.yml -------------------------------------------------------------------------------- /.github/workflows/replace-systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/replace-systemd.yml -------------------------------------------------------------------------------- /.github/workflows/rsyslog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/rsyslog.yml -------------------------------------------------------------------------------- /.github/workflows/selinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/selinux.yml -------------------------------------------------------------------------------- /.github/workflows/tailscale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/tailscale.yml -------------------------------------------------------------------------------- /.github/workflows/wifi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/.github/workflows/wifi.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/README.md -------------------------------------------------------------------------------- /ansible-firewalld/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/ansible-firewalld/Containerfile -------------------------------------------------------------------------------- /ansible-firewalld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/ansible-firewalld/README.md -------------------------------------------------------------------------------- /ansible-firewalld/configure-firewall-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/ansible-firewalld/configure-firewall-playbook.yml -------------------------------------------------------------------------------- /autoupdate-unit/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/autoupdate-unit/Containerfile -------------------------------------------------------------------------------- /autoupdate-unit/usr/lib/systemd/system/autoupdate-host.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/autoupdate-unit/usr/lib/systemd/system/autoupdate-host.service -------------------------------------------------------------------------------- /autoupdate-unit/usr/lib/systemd/system/autoupdate-host.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/autoupdate-unit/usr/lib/systemd/system/autoupdate-host.timer -------------------------------------------------------------------------------- /autoupdate-unit/usr/lib/systemd/system/timers.target.wants/autoupdate-host.timer: -------------------------------------------------------------------------------- 1 | ../autoupdate-host.timer -------------------------------------------------------------------------------- /butane/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/butane/Containerfile -------------------------------------------------------------------------------- /butane/demo.bu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/butane/demo.bu -------------------------------------------------------------------------------- /ci/generate-rhcos-versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/ci/generate-rhcos-versions.py -------------------------------------------------------------------------------- /convert-ubuntu-package/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/convert-ubuntu-package/Containerfile -------------------------------------------------------------------------------- /convert-ubuntu-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/convert-ubuntu-package/README.md -------------------------------------------------------------------------------- /dracut-module/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/dracut-module/Containerfile -------------------------------------------------------------------------------- /dracut-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/dracut-module/README.md -------------------------------------------------------------------------------- /dracut-module/files/echo-here.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/dracut-module/files/echo-here.service -------------------------------------------------------------------------------- /dracut-module/files/module-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/dracut-module/files/module-setup.sh -------------------------------------------------------------------------------- /initramfs-module/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/initramfs-module/Containerfile -------------------------------------------------------------------------------- /inject-go-binary/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/inject-go-binary/Containerfile -------------------------------------------------------------------------------- /inject-go-binary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/inject-go-binary/README.md -------------------------------------------------------------------------------- /inject-go-binary/hello-world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/inject-go-binary/hello-world.go -------------------------------------------------------------------------------- /inject-go-binary/hello-world.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/inject-go-binary/hello-world.service -------------------------------------------------------------------------------- /kernel-rt/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/kernel-rt/Containerfile -------------------------------------------------------------------------------- /loading-kernel-module/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/loading-kernel-module/Containerfile -------------------------------------------------------------------------------- /loading-kernel-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/loading-kernel-module/README.md -------------------------------------------------------------------------------- /loading-kernel-module/fcos-config.fcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/loading-kernel-module/fcos-config.fcc -------------------------------------------------------------------------------- /nexodus/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/nexodus/Containerfile -------------------------------------------------------------------------------- /nexodus/copr-nexodus-fedora.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/nexodus/copr-nexodus-fedora.repo -------------------------------------------------------------------------------- /nexodus/copr-nexodus-pubkey.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/nexodus/copr-nexodus-pubkey.gpg -------------------------------------------------------------------------------- /podman-next/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/podman-next/Containerfile -------------------------------------------------------------------------------- /podman-next/rhcontainerbot-podman-next-fedora.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/podman-next/rhcontainerbot-podman-next-fedora.gpg -------------------------------------------------------------------------------- /podman-next/rhcontainerbot-podman-next-fedora.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/podman-next/rhcontainerbot-podman-next-fedora.repo -------------------------------------------------------------------------------- /replace-kernel/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/replace-kernel/Containerfile -------------------------------------------------------------------------------- /replace-systemd/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/replace-systemd/Containerfile -------------------------------------------------------------------------------- /rsyslog/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/rsyslog/Containerfile -------------------------------------------------------------------------------- /rsyslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/rsyslog/README.md -------------------------------------------------------------------------------- /rsyslog/remote.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/rsyslog/remote.conf -------------------------------------------------------------------------------- /selinux/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/selinux/Containerfile -------------------------------------------------------------------------------- /tailscale/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/tailscale/Containerfile -------------------------------------------------------------------------------- /wifi/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/wifi/Containerfile -------------------------------------------------------------------------------- /wifi/etc/NetworkManager/system-connections/ExampleCorpWifi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/layering-examples/HEAD/wifi/etc/NetworkManager/system-connections/ExampleCorpWifi.ini --------------------------------------------------------------------------------