Files
dcfg/examples/services.dcfg
Slendi 6c42ba0fa0
Some checks failed
CMake / ubuntu-latest - shared=ON, pthread=OFF, posix=OFF (push) Has been cancelled
CMake / ubuntu-latest - shared=OFF, pthread=OFF, posix=ON (push) Has been cancelled
CMake / ubuntu-latest - shared=ON, pthread=OFF, posix=ON (push) Has been cancelled
CMake / ubuntu-latest - shared=OFF, pthread=ON, posix=ON (push) Has been cancelled
CMake / ubuntu-latest - shared=OFF, pthread=OFF, posix=OFF (push) Has been cancelled
CMake / ubuntu-latest - shared=ON, pthread=ON, posix=ON (push) Has been cancelled
samples -> examples
Signed-off-by: Slendi <slendi@socopon.com>
2025-07-26 01:11:32 +03:00

21 lines
367 B
Plaintext

fn lib = (lib.join
[
{
stage = 'boot'
every = 7d
action.command = 'logrotate("/var/log/*.log")'
}
{
stage = 'network'
after = 'boot'
action.binary = root:/System/Programs/NetworkManager
}
{
stage = 'gui'
after = 'network'
action.binary = root:/System/Programs/DisplayManager
}
]
(import root:/System/Services/ssh.conf lib)
)