octopus supports podman < 2.0 which does not have the `--init` flag
Signed-off-by: Michael Fritch <mfritch@suse.com>
UNIT_DIR = '/etc/systemd/system'
LOG_DIR_MODE = 0o770
DATA_DIR_MODE = 0o700
-CONTAINER_INIT=True
+CONTAINER_INIT=False
CONTAINER_PREFERENCE = ['podman', 'docker'] # prefer podman to docker
CUSTOM_PS1 = r'[ceph: \u@\h \W]\$ '
DEFAULT_TIMEOUT = None # in seconds
{
'name': 'container_init',
'type': 'bool',
- 'default': True,
+ 'default': False,
'desc': 'Run podman/docker with `--init`',
},
{
self.warn_on_stray_daemons = True
self.warn_on_failed_host_check = True
self.allow_ptrace = False
- self.container_init = True
+ self.container_init = False
self.prometheus_alerts_path = ''
self.migration_current: Optional[int] = None
self.config_dashboard = True