Fixes:
```
root@buster:/cephadm# ./cephadm add-repo
Unable to locate any of ['podman', 'docker']
```
Signed-off-by: Sebastian Wagner <sebastian.wagner@suse.com>
(cherry picked from commit
0d22708cc2f858491604b09f87e7af742884cb3c)
break
except Exception as e:
logger.debug('Could not locate %s: %s' % (i, e))
- if not container_path and args.func != command_prepare_host:
+ if not container_path and args.func != command_prepare_host\
+ and args.func != command_add_repo:
sys.stderr.write('Unable to locate any of %s\n' % CONTAINER_PREFERENCE)
sys.exit(1)