Fix nc alternative

ncat takes over nc.traditional but we want it for vty stuff
This commit is contained in:
Keith Whyte 2021-02-24 07:42:02 +01:00
parent 03536a69c9
commit d11d8b4b3a
3 changed files with 10 additions and 0 deletions

View file

@ -34,6 +34,12 @@ class rhizo_base::packages::common {
ensure => installed,
require => Class['rhizo_base::apt'],
}
alternatives { 'nc':
mode => 'auto',
path => '/bin/nc.traditional',
}
}
class rhizo_base::packages::buster inherits rhizo_base::packages::common {