You've already forked fedora-bootc
13 lines
247 B
Bash
Executable File
13 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ouex pipefail
|
|
|
|
# Copy System Files onto root
|
|
rsync -rvK /ctx/sys_files/ /
|
|
|
|
# Copy cosign.pub key into the right location
|
|
mkdir -p /etc/pki/containers
|
|
cp /ctx/cosign.pub /etc/pki/containers/davejansen.pub
|
|
|
|
/ctx/common/packages.sh
|