9cc1d70c83
Better approach per user suggestion: - Downloads to: /root/server-toolkit/downloads/acronis-install-YYYYMMDD-HHMMSS/ - Keeps toolkit directory organized - Avoids polluting /root - Avoids /tmp noexec issues - Added downloads/ to .gitignore - Cleanup removes timestamped installation directory after completion Benefits: - All downloads in one place - Easy to find if debugging needed - Cleaner than scattered in /root - Still allows execution (not in /tmp)
58 lines
653 B
Plaintext
58 lines
653 B
Plaintext
# Temporary files
|
|
/tmp/
|
|
*.tmp
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Reference database (session data)
|
|
.sysref
|
|
.sysref.timestamp
|
|
|
|
# System-specific logs
|
|
*.log
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
|
|
# Reports (generated files)
|
|
*_report_*.txt
|
|
|
|
# IDE/Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.code-workspace
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Runtime directories
|
|
/modules/security/temp/
|
|
/modules/security/live-monitor-*/
|
|
|
|
# Credentials and keys (NEVER commit these)
|
|
*.key
|
|
*.pem
|
|
*.crt
|
|
*.p12
|
|
*.pfx
|
|
credentials.*
|
|
secrets.*
|
|
.env
|
|
.env.*
|
|
*.token
|
|
*.secret
|
|
|
|
# SSH keys
|
|
id_rsa
|
|
id_rsa.pub
|
|
id_ed25519
|
|
id_ed25519.pub
|
|
|
|
# Config files that might contain sensitive data
|
|
config.local.*
|
|
*.credentials
|
|
downloads/
|