- Delete 02-OpenTextCSF.ps1 (CSF profile delivery moved to Intune YAML's CopyFiles section in main/device-config.yaml — no longer needed at the PXE/baseline layer) - Strip MarkZebra install + post-config from 01-eDNC.ps1 (no longer needed; only eDNC core install + Dnc x86→x64 mirror + Site reg + eMxInfo deployment remain). Section numbering tightened. - Add SITESELECTED="West Jefferson" to eDNC msiexec args so the MSI's site-specific Components (NtLarsWjfRegComp — FTP/FMS/PPDCS hosts + credentials) actually install. Without it, only the bare Site value was being set and all the connection details were unconfigured. - gitignore: blanket-block any **/eMxInfo*.txt from being committed — the file contains obfuscated eDNC site credentials and must never go in git. Canonical source lives at /home/camp/pxe-images/main/eMxInfo.txt outside the repo. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
53 lines
950 B
Plaintext
53 lines
950 B
Plaintext
# Large binary files — download/build these, don't commit them
|
|
*.deb
|
|
*.zip
|
|
*.wim
|
|
*.iso
|
|
*.efi
|
|
*.sdi
|
|
|
|
# OneDrive download artifacts
|
|
OneDrive_*/
|
|
|
|
# Error folders from OneDrive download
|
|
__*/
|
|
___*.txt
|
|
|
|
# Original OneDrive folder structure (reorganized into autoinstall/ and playbook/)
|
|
WestJeff*/
|
|
|
|
# Duplicate at root (canonical copy in unattend/)
|
|
/FlatUnattendW10.xml
|
|
|
|
# Offline packages (built by download-packages.sh)
|
|
offline-packages/
|
|
|
|
# Boot tool binaries (built by prepare-boot-tools.sh)
|
|
boot-tools/
|
|
|
|
# WinPE boot files (wimboot, boot.wim, BCD, ipxe.efi, etc.)
|
|
boot-files/
|
|
|
|
# Python wheels for offline install (built by download-packages.sh)
|
|
pip-wheels/
|
|
|
|
# Deployment images (imported via webapp or USB)
|
|
geastandardpbr/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
venv/
|
|
|
|
# MOK Secure Boot signing keys (contains private key)
|
|
mok-keys/
|
|
|
|
# Secrets
|
|
secrets.md
|
|
**/eMxInfo*.txt
|