We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f561fe3 + 51a4dd0 commit 37bd93eCopy full SHA for 37bd93e
src/cephadm/cephadmlib/sysctl.py
@@ -40,7 +40,7 @@ def _write(conf: Path, lines: List[str]) -> None:
40
conf = Path(ctx.sysctl_dir).joinpath(f'90-ceph-{fsid}-{daemon_type}.conf')
41
42
for conf_file in Path(ctx.sysctl_dir).glob('90-ceph-*.conf'):
43
- if conf_file.name == f'90-ceph-{fsid}-{daemon_type}.conf':
+ if conf_file.name.startswith(f'90-ceph-{fsid}-'):
44
continue
45
logger.warning(
46
f'Found a sysctl config file for a cluster with a different FSID '
0 commit comments