├── .github ├── ISSUE_TEMPLATE │ └── issue.md └── pull_request_template.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── Dockerfile ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.md ├── SECURITY.md ├── VERSION ├── hashes ├── bash └── musl ├── motd ├── patches └── musl │ ├── 0001-iconv-fix-erroneous-input-validation-in-EUC-KR-decod.patch │ └── 0002-iconv-harden-UTF-8-output-code-path-against-input-de.patch ├── sdk-fetch ├── sheltie ├── sshd_config ├── start_admin.sh ├── systemd-patches ├── 9500-cgroup-util-extract-cgroup-hierarchy-base-path-into-.patch ├── 9501-cgroup-util-accept-cgroup-hierarchy-base-as-option.patch ├── 9502-core-move-initialization-of-.slice-and-init.scope-in.patch ├── 9503-core-drop-.slice-from-shipped-units.patch └── 9504-core-skip-restart-when-a-JOB_STOP-job-is-pending.patch └── units ├── admin.target ├── getty@.service ├── serial-getty@.service └── sshd.service /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v0.12.5 2 | -------------------------------------------------------------------------------- /hashes/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/hashes/bash -------------------------------------------------------------------------------- /hashes/musl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/hashes/musl -------------------------------------------------------------------------------- /motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/motd -------------------------------------------------------------------------------- /patches/musl/0001-iconv-fix-erroneous-input-validation-in-EUC-KR-decod.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/patches/musl/0001-iconv-fix-erroneous-input-validation-in-EUC-KR-decod.patch -------------------------------------------------------------------------------- /patches/musl/0002-iconv-harden-UTF-8-output-code-path-against-input-de.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/patches/musl/0002-iconv-harden-UTF-8-output-code-path-against-input-de.patch -------------------------------------------------------------------------------- /sdk-fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/sdk-fetch -------------------------------------------------------------------------------- /sheltie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/sheltie -------------------------------------------------------------------------------- /sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/sshd_config -------------------------------------------------------------------------------- /start_admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/start_admin.sh -------------------------------------------------------------------------------- /systemd-patches/9500-cgroup-util-extract-cgroup-hierarchy-base-path-into-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/systemd-patches/9500-cgroup-util-extract-cgroup-hierarchy-base-path-into-.patch -------------------------------------------------------------------------------- /systemd-patches/9501-cgroup-util-accept-cgroup-hierarchy-base-as-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/systemd-patches/9501-cgroup-util-accept-cgroup-hierarchy-base-as-option.patch -------------------------------------------------------------------------------- /systemd-patches/9502-core-move-initialization-of-.slice-and-init.scope-in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/systemd-patches/9502-core-move-initialization-of-.slice-and-init.scope-in.patch -------------------------------------------------------------------------------- /systemd-patches/9503-core-drop-.slice-from-shipped-units.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/systemd-patches/9503-core-drop-.slice-from-shipped-units.patch -------------------------------------------------------------------------------- /systemd-patches/9504-core-skip-restart-when-a-JOB_STOP-job-is-pending.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/systemd-patches/9504-core-skip-restart-when-a-JOB_STOP-job-is-pending.patch -------------------------------------------------------------------------------- /units/admin.target: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Admin host container 3 | -------------------------------------------------------------------------------- /units/getty@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/units/getty@.service -------------------------------------------------------------------------------- /units/serial-getty@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/units/serial-getty@.service -------------------------------------------------------------------------------- /units/sshd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlerocket-os/bottlerocket-admin-container/HEAD/units/sshd.service --------------------------------------------------------------------------------