Returns true if this analysis finds no missing entries.
(&self)
| 279 | impl SysusersAnalysis { |
| 280 | /// Returns true if this analysis finds no missing entries. |
| 281 | pub fn is_empty(&self) -> bool { |
| 282 | self.missing_users.is_empty() && self.missing_groups.is_empty() |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | /// Analyze the state of /etc/passwd vs systemd-sysusers. |
no outgoing calls