🗃️ Committing everything that changed 🗃️

rootfs/root/docker/setup/03-files.sh
This commit is contained in:
casjay 2024-08-27 13:53:23 -04:00
parent 3a57dffe04
commit 0146db6487
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145

View File

@ -51,6 +51,7 @@ if [ -d "/tmp/var" ]; then
fi
unset var
if [ -d "/tmp/etc" ]; then
mkdir -p "/usr/local/share/template-files/config"
for config in "/tmp/etc"/*; do
name="$(basename "$config")"
echo "Installing $config to /etc/$name"
@ -67,6 +68,7 @@ if [ -d "/tmp/etc" ]; then
fi
unset config
if [ -d "/tmp/data" ]; then
mkdir -p "/usr/local/share/template-files/data"
for data in "/tmp/data"/*; do
name="$(basename "$data")"
echo "Installing $data to /usr/local/share/template-files/data"