(p: Dict, family: str, action: str)
| 1161 | return None |
| 1162 | |
| 1163 | def get_program_command(p: Dict, family: str, action: str) -> Optional[str]: |
| 1164 | fam_map = p.get("cmd", {}).get(family, {}) |
| 1165 | return fam_map.get(action) |
| 1166 | |
| 1167 | def mark_program_installed(cfg: Dict, distro: str, pid: str, installed: bool) -> None: |
| 1168 | ensure_system_entry(cfg, distro) |
no outgoing calls
no test coverage detected