mirror of
https://github.com/casjaysdevdocker/.github
synced 2026-07-25 14:11:36 -04:00
28d9722e62
Remove stale DEFAULT_* variables and sync all generated example files to match the current gen-dockerfile tool output. - AI.md: remove DEFAULT_FILE_DIR/DATA/CONF/TEMPLATE_DIR from .env.scripts code block and variable reference table; WWW_ROOT_DIR retained - example/.env.scripts: migrate to current variable names (ENV_REGISTRY_REPO, ENV_REGISTRY_PUSH, ENV_REGISTRY_URL, ENV_REGISTRY_ORG); remove DEFAULT_FILE/DATA/CONF/TEMPLATE_DIR entries - example/Dockerfile: remove DEFAULT_FILE/DATA/CONF/TEMPLATE_DIR ARGs; regenerated from current alpine template - example/.gitattributes: sync to current template output - example/.gitignore: sync to current template output (expanded patterns) - example/README.md: regenerated from current template - example/rootfs/root/docker/setup/00-init.sh: sync to current template - example/rootfs/root/docker/setup/01-system.sh: sync to current template - example/rootfs/root/docker/setup/02-packages.sh: sync to current template - example/rootfs/root/docker/setup/03-files.sh: sync to current template - example/rootfs/root/docker/setup/04-users.sh: sync to current template - example/rootfs/root/docker/setup/05-custom.sh: sync to current template - example/rootfs/root/docker/setup/06-post.sh: sync to current template - example/rootfs/root/docker/setup/07-cleanup.sh: sync to current template - example/rootfs/usr/local/bin/entrypoint.sh: sync to current template - example/rootfs/usr/local/etc/docker/functions/entrypoint.sh: sync to current template AI.md example/Dockerfile example/.env.scripts example/.gitattributes example/.gitignore example/README.md example/rootfs/root/docker/setup/00-init.sh example/rootfs/root/docker/setup/01-system.sh example/rootfs/root/docker/setup/02-packages.sh example/rootfs/root/docker/setup/03-files.sh example/rootfs/root/docker/setup/04-users.sh example/rootfs/root/docker/setup/05-custom.sh example/rootfs/root/docker/setup/06-post.sh example/rootfs/root/docker/setup/07-cleanup.sh example/rootfs/usr/local/bin/entrypoint.sh example/rootfs/usr/local/etc/docker/functions/entrypoint.sh
51 lines
1.8 KiB
Bash
Executable File
51 lines
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# shellcheck shell=bash
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
##@Version : 202606261238-git
|
|
# @@Author : CasjaysDev
|
|
# @@Contact : CasjaysDev <docker-admin@casjaysdev.pro>
|
|
# @@License : WTFPL
|
|
# @@Copyright : Copyright 2026 CasjaysDev
|
|
# @@Created : Fri Jun 26 12:38:36 PM EDT 2026
|
|
# @@File : 02-packages.sh
|
|
# @@Description : script to run packages
|
|
# @@Changelog : newScript
|
|
# @@TODO : Refactor code
|
|
# @@Other : N/A
|
|
# @@Resource : N/A
|
|
# @@Terminal App : yes
|
|
# @@sudo/root : yes
|
|
# @@Template : templates/dockerfiles/init_scripts/02-packages.sh
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# shellcheck disable=SC1001,SC1003,SC2001,SC2003,SC2016,SC2031,SC2090,SC2115,SC2120,SC2155,SC2199,SC2229,SC2317,SC2329
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# Set bash options
|
|
set -eo pipefail
|
|
[ "$DEBUGGER" = "on" ] && echo "Enabling debugging" && set -x$DEBUGGER_OPTIONS
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# Set env variables
|
|
exitCode=0
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# Predefined actions
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# Main script
|
|
if command -v update-ca-certificates >/dev/null 2>&1; then
|
|
update-ca-certificates
|
|
elif command -v update-ca-trust >/dev/null 2>&1; then
|
|
update-ca-trust extract
|
|
elif command -v trust >/dev/null 2>&1; then
|
|
trust extract-compat
|
|
fi
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# Set the exit code
|
|
exitCode=$?
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
exit $exitCode
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# ex: ts=2 sw=2 et filetype=sh
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|