findSnappInstallerPathInteractive method
Future<String?>
findSnappInstallerPathInteractive(
- String username,
- InternetAddress ip, {
- 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,
);