ServiceInstallCommand constructor

ServiceInstallCommand()

Creates the service-install command.

Implementation

ServiceInstallCommand() {
  _addServiceConfigOptions(argParser);
  argParser
    ..addFlag(
      'dry-run',
      negatable: false,
      help: 'Print the rendered service definition without installing.',
    )
    ..addFlag(
      'force',
      negatable: false,
      help: 'Replace an existing service of the same role.',
    );
}