Skip to content

Commit 0038d14

Browse files
Add example configuration file for package tracking script
1 parent f572df4 commit 0038d14

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Package Tracking Configuration Example
2+
# Copy this file to /etc/package_tracking/config.conf to customize settings
3+
4+
# Logging options
5+
LOG_FILE="/var/log/package_tracking.log"
6+
LOG_LEVEL="INFO" # Options: DEBUG, INFO, WARNING, ERROR
7+
8+
# Data storage
9+
DATA_DIR="/tmp/package-versions"
10+
11+
# Update settings
12+
REPOS="core extra community multilib" # Repositories to check for updates
13+
CHECK_INTERVAL=86400 # Update interval in seconds (86400 = 24 hours)
14+
NOTIFY="true" # Whether to display notifications
15+
16+
# Network settings
17+
TIMEOUT=30 # Connection timeout in seconds
18+
RETRY_COUNT=3 # Number of retries for network operations

0 commit comments

Comments
 (0)