rusty-fez 0.4.0

Agent-native management CLI for Fedora/RHEL (drives cockpit-bridge)
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    fez::reset_sigpipe();
    // parse_or_render honors --json for clap usage errors and renders help/
    // version itself; on either it returns the exit code to use directly.
    match fez::cli::parse_or_render() {
        Ok(cli) => std::process::exit(fez::run(cli)),
        Err(code) => std::process::exit(code),
    }
}