You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0425]: cannot find function `is_systemd_used` in this scope
--> src/main.rs:455:7
|
455 | if !*is_systemd_used() {
| ^^^^^^^^^^^^^^^ not found in this scope
|
help: consider importing this function
|
12 + use crate::systemd::is_systemd_used;
Such combination of flags is desirable for systems without systemd, where autodetection is not neessary and we could just immediately autostart, if requested.
Also, it would be great to ensure no combination of features fails.