fix up sanity tests and with_modules conditional

Signed-off-by: Adam Miller <admiller@redhat.com>
pull/48899/head
Adam Miller 6 years ago committed by Toshio Kuratomi
parent 4a06e95671
commit 23b60035a1

@ -257,17 +257,17 @@ EXAMPLES = '''
- name: install a modularity appstream with defined stream and profile - name: install a modularity appstream with defined stream and profile
dnf: dnf:
name: @postgresql:9.6/client name: '@postgresql:9.6/client'
state: present state: present
- name: install a modularity appstream with defined stream - name: install a modularity appstream with defined stream
dnf: dnf:
name: @postgresql:9.6 name: '@postgresql:9.6'
state: present state: present
- name: install a modularity appstream with defined profile - name: install a modularity appstream with defined profile
dnf: dnf:
name: @postgresql/client name: '@postgresql/client'
state: present state: present
''' '''
@ -764,9 +764,10 @@ class DnfModule(YumDnf):
if env: if env:
env_specs.append(env.id) env_specs.append(env.id)
mdl = self.module_base._get_modules(grp_env_mdl_candidate) if self.with_modules:
if mdl[0]: mdl = self.module_base._get_modules(grp_env_mdl_candidate)
module_specs.append(grp_env_mdl_candidate) if mdl[0]:
module_specs.append(grp_env_mdl_candidate)
else: else:
pkg_specs.append(name) pkg_specs.append(name)
return pkg_specs, grp_specs, env_specs, module_specs, filenames return pkg_specs, grp_specs, env_specs, module_specs, filenames
@ -831,7 +832,7 @@ class DnfModule(YumDnf):
if nsv.stream in self.base._moduleContainer.getEnabledStream(nsv.name): if nsv.stream in self.base._moduleContainer.getEnabledStream(nsv.name):
return True return True
return False # seems like a sane default return False # seems like a sane default
def ensure(self): def ensure(self):
allow_erasing = False allow_erasing = False

Loading…
Cancel
Save