findSnappInstallerPathInteractive method

Future<String?> findSnappInstallerPathInteractive(
  1. String username,
  2. InternetAddress ip, {
  3. bool addHostToKnownHosts = true,
})

finds snapp_installer in the remote machine using ssh connection interactively

this method is not communicating with the user directly

Implementation

Future<String?> findSnappInstallerPathInteractive(
  String username,
  InternetAddress ip, {
  bool addHostToKnownHosts = true,
}) =>
    findToolPathInteractive(
      username: username,
      ip: ip,
      toolName: 'snapp_installer',
      toolPath: '*/snapp_installer/bin/*',
      addHostToKnownHosts: addHostToKnownHosts,
    );