Some checks failed
Compile apt-layer (v2) / compile (push) Has been cancelled
- Added 20-daemon-integration.sh scriptlet for D-Bus and daemon lifecycle management - Updated 99-main.sh with new daemon subcommands (start, stop, status, install, uninstall, test, layer, deploy, upgrade, rollback) - Enhanced help and usage text for daemon integration - Fixed bash syntax errors in daemon integration scriptlet - Updated compile.sh to include daemon integration in build process - Updated .gitignore to exclude src/rpm-ostree/ reference source - Updated CHANGELOG.md and TODO.md to document daemon integration milestone - Removed src/rpm-ostree/ from git tracking (reference only, not committed)
10 lines
No EOL
204 B
Python
10 lines
No EOL
204 B
Python
"""
|
|
D-Bus interface components for apt-ostree daemon
|
|
"""
|
|
|
|
from .interface import AptOstreeSysrootInterface, AptOstreeOSInterface
|
|
|
|
__all__ = [
|
|
'AptOstreeSysrootInterface',
|
|
'AptOstreeOSInterface'
|
|
] |