Crates.io | systemctl |
lib.rs | systemctl |
version | 0.4.0 |
source | src |
created_at | 2022-04-12 09:53:04.615885 |
updated_at | 2024-09-26 08:59:00.219902 |
description | Small crate to interact with systemd units |
homepage | https://github.com/gwbres/systemctl |
repository | |
max_upload_size | |
id | 566353 |
size | 45,488 |
Small rust crate to interact with systemd units
Currently SystemD Version <245 are not supported as unit-file-list changed from two column to three column setup. See: SystemD Changelog
Nominal service operations:
let systemctl = systemctl::SystemCtl::default();
systemctl.stop("systemd-journald.service")
.unwrap();
systemctl.restart("systemd-journald.service")
.unwrap();
if let Ok(true) = systemctl.exists("ntpd") {
let is_active = systemctl.is_active("ntpd")
.unwrap();
}
let systemctl = systemctl::SystemCtl::default();
// list all units
systemctl.list_units(None, None, None);
// list all services
// by adding a --type filter
systemctl.list_units(Some("service"), None, None);
// list all services currently `enabled`
// by adding a --state filter
systemctl.list_units(Some("service"), Some("enabled"), None);
// list all services starting with cron
systemctl.list_units(Some("service"), None, Some("cron*"));
Use the unit structure for more information
let systemctl = systemctl::SystemCtl::default();
let unit = systemctl.create_unit("ssh.service")
.unwrap();
systemctl.restart(&unit.name).unwrap();
println!("active: {}", unit.active);
println!("preset: {}", unit.preset);
if let Some(docs) = unit.docs { // doc pages available
for doc in docs {
if let Some(page) = doc.as_man() {
// `man` page exists
}
if let Some(url) = doc.as_url() {
// `url` is indicated
}
}
}
println!("auto_start (enabled): {:?}", unit.auto_start);
println!("config script : {}", unit.script);
println!("pid: {:?}", unit.pid);
println!("Running task(s): {:?}", unit.tasks);
println!("Memory consumption: {:?}", unit.memory);
from_systemctl