fn convert_bool()

in src/prepare_chroot.rs [24:30]


fn convert_bool(state: bool) -> String {
    if state {
        "true".to_string()
    } else {
        "false".to_string()
    }
}