addr := flag.String("a", "localhost:1337", "Server address and port in the format: address:port")
config := flag.String("c", "dutctl.yaml", "Path to DUT configuration file")
soft-dryrun := flag.Bool("validate", false, "Only validate the provided DUT configuration, not starting the service")
dryrun := flag.Bool("dry-run", false, "Only run the initialization phase of the modules, not start the (includes validation of the configuration)")
Plan: