- Safely copied actual working service files from system - Created systemd-symlinks directory to track deployed versions - Found key differences: service name is apt-ostree.service (not apt-ostreed.service) - Service uses Type=dbus with direct D-Bus integration - Updated .gitignore to track symlinks for version control - Added sync-service-files.sh script for future deployments - Ensures project reflects current reality of deployed files
94 lines
1.3 KiB
Text
94 lines
1.3 KiB
Text
# Particle-OS Tools Repository .gitignore
|
|
|
|
# Backup files
|
|
*.backup
|
|
*.bak
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Log files
|
|
*.log
|
|
logs/
|
|
|
|
# Cache directories
|
|
cache/
|
|
.cache/
|
|
|
|
# Temporary files
|
|
temp/
|
|
tmp/
|
|
*.tmp
|
|
|
|
# AI-generated fix scripts and temporary work
|
|
.scratchpad/
|
|
scratchpad/
|
|
scratchpad/
|
|
|
|
# Reference source code (not part of this project)
|
|
src/rpm-ostree/
|
|
|
|
# Compiled scripts (these are generated from source)
|
|
# Uncomment if you want to exclude compiled scripts
|
|
# apt-layer.sh
|
|
# composefs-alternative.sh
|
|
# bootc-alternative.sh
|
|
# bootupd-alternative.sh
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Test output files
|
|
test-*.log
|
|
*.test.log
|
|
|
|
# Configuration files that might contain sensitive data
|
|
# Uncomment if you have sensitive configs
|
|
# config/local/
|
|
# secrets/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
*.tar.gz
|
|
*.zip
|
|
|
|
# Archive directory (contains old/backup files)
|
|
archive/
|
|
|
|
# Windows specific
|
|
*.exe
|
|
*.msi
|
|
|
|
# PowerShell
|
|
*.ps1.log
|
|
|
|
# Shell scripts that might be temporary
|
|
fix-*.sh
|
|
quick-*.sh
|
|
*fix*.sh
|
|
|
|
# Documentation that might be generated
|
|
*.pdf
|
|
*.docx
|
|
*.pptx
|
|
|
|
# Python cache files
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.so
|
|
|
|
# Service file symlinks (tracked in git)
|
|
# These are symlinks to actual system files for tracking changes
|
|
!src/apt-ostree.py/systemd-symlinks/
|