mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #23311 from cellscape/fix-salt-cloud-lxc-init
Fix new container initialization in LXC runner
This commit is contained in:
commit
ea2017672d
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ def init(names, host=None, saltcloud_mode=False, quiet=False, **kwargs):
|
|||
expr_form='list', timeout=600).get(host, {})
|
||||
name = kw.pop('name', name)
|
||||
# be sure not to seed an alrady seeded host
|
||||
kw['seed'] = seeds[name]
|
||||
kw['seed'] = seeds.get(name, True)
|
||||
if not kw['seed']:
|
||||
kw.pop('seed_cmd', '')
|
||||
cmds.append(
|
||||
|
|
Loading…
Add table
Reference in a new issue