particle-os-tools/apt-ostreed.service
robojerk f8b0e85e3f
Some checks failed
Compile apt-layer (v2) / compile (push) Has been cancelled
feat: Complete systemd service creation for production deployment
- Successfully created systemd service file (/etc/systemd/system/apt-ostreed.service)
- Configured D-Bus service type with org.debian.aptostree1 bus name
- Set up root user execution with proper restart policies
- Enabled service for automatic startup on boot
- Service infrastructure ready for production deployment

Systemd service configuration:
- Type: dbus with proper bus name
- User: root (required for D-Bus access)
- Restart: always with 10s delay
- Timeout: 5 minutes for startup
- Environment: DOWNLOAD_FILELISTS=false

Next step: Complete daemon initialization fix for full functionality
2025-07-15 20:13:34 -07:00

17 lines
No EOL
339 B
Desktop File

[Unit]
Description=apt-ostree System Management Daemon
Documentation=man:apt-ostree(1)
After=network.target
[Service]
Type=dbus
BusName=org.debian.aptostree1
ExecStart=/usr/local/bin/apt-ostree --daemon
User=root
Restart=always
RestartSec=10
TimeoutStartSec=5m
Environment="DOWNLOAD_FILELISTS=false"
[Install]
WantedBy=multi-user.target