diff --git a/readme.md b/readme.md index 3c9a4e0..fcacab9 100644 --- a/readme.md +++ b/readme.md @@ -80,9 +80,7 @@ from various contexts of CA, CI and OCI / OS. * implement project repository cloning * install * epel - * plantuml * shellcheck - * graphviz * openssh * pip * ruff diff --git a/spcd/__init__.py b/spcd/__init__.py index d38a0a3..0549dc0 100644 --- a/spcd/__init__.py +++ b/spcd/__init__.py @@ -7,7 +7,6 @@ from pathlib import Path from rwx import fs from rwx.log import stream as log -from rwx.ps import run import spcd from spcd import cmd @@ -36,13 +35,6 @@ def main(main: str) -> None: if name == "__main__.py": spcd.set_ssh(*arguments) spcd.install_commands(main) - # FIXME abstract command - run( - "apt-get", - "install", - "--assume-yes", - "graphviz", - ) else: function = getattr(cmd, name.replace("-", "_")) function(*arguments)