Skip to content

Commit

Permalink
Merge pull request #39937 from cachedout/gpg_zypper
Browse files Browse the repository at this point in the history
Fix --non-gpg-checks in zypper module
  • Loading branch information
Mike Place committed Mar 10, 2017
2 parents 4526fc6 + 13ed0d1 commit 1e0c88a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/modules/zypper.py
Expand Up @@ -1033,7 +1033,7 @@ def install(name=None,
if not refresh:
cmd_install.insert(0, '--no-refresh')
if skip_verify:
cmd_install.append('--no-gpg-checks')
cmd_install.insert(0, '--no-gpg-checks')
if downloadonly:
cmd_install.append('--download-only')
if fromrepo:
Expand Down

0 comments on commit 1e0c88a

Please sign in to comment.