Remove obsolete script files that are no longer needed. Root run.sh has all functionality. Clean src/ directory to only contain necessary source scripts. Deleted files: - bin/cleanup.sh (functionality in run.sh) - bin/docker-manage.sh (functionality in run.sh) - lib/docker.sh (not used, deleted) - src/build.sh (obsolete, not referenced) - src/run.sh (obsolete, duplicate of root run.sh) - src/run-new.sh (broken, references deleted lib/docker.sh) - plan/PreFlightDiscussion-*.md (planning docs no longer needed) Modified files: - .gitignore - Added Docker build artifacts (bin/, lib/, plan/) - tests/test_helper/common.bash - Fixed for standalone execution Current src/ directory (essential scripts only): - build-iso.sh - ISO build orchestration - firewall-setup.sh - Firewall configuration - security-hardening.sh - Security hardening functions 💘 Generated with Crush Assisted-by: GLM-4.7 via Crush <crush@charm.land>
48 lines
477 B
Plaintext
48 lines
477 B
Plaintext
# KNEL-Football ISO build artifacts
|
|
*.iso
|
|
*.sha256
|
|
*.md5
|
|
*.img
|
|
|
|
# Docker build artifacts
|
|
bin/
|
|
lib/
|
|
plan/
|
|
|
|
# Build directories
|
|
knel-build/
|
|
knel-iso/
|
|
knel-custom/
|
|
knel-final/
|
|
artifacts/
|
|
.chroot/
|
|
.cache/
|
|
.build/
|
|
tmp/
|
|
tmp2/
|
|
output/
|
|
|
|
# Live-build artifacts
|
|
config/
|
|
binary/
|
|
.cache/
|
|
bootstrap/
|
|
|
|
# Temporary files
|
|
*.log
|
|
*.tmp
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Downloaded files
|
|
debian-*.iso
|
|
*.netinst.iso
|
|
*.tar.gz
|
|
*.tar.xz
|
|
|
|
# Security - don't commit sensitive configs
|
|
*key*
|
|
*.pem
|
|
*.crt
|
|
secrets/ |