Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Created new conda module for managing conda packages #40455

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/BOTMETA.yml
Expand Up @@ -528,6 +528,7 @@ files:
$modules/notification/typetalk.py: tksmd
$modules/packaging/language/bower.py: mwarkentin
$modules/packaging/language/bundler.py: thoiberg
$modules/packaging/language/conda.py: tmoschou
$modules/packaging/language/cpanm.py:
$modules/packaging/language/easy_install.py: mattupstate
$modules/packaging/language/gem.py: $team_ansible
Expand Down
6 changes: 3 additions & 3 deletions examples/ansible.cfg
Expand Up @@ -246,7 +246,7 @@
# when looping. Instead of calling the module once per with_ item, the
# module is called once with all items at once. Currently this only works
# under limited circumstances, and only with parameters named 'name'.
#squash_actions = apk,apt,dnf,homebrew,pacman,pkgng,yum,zypper
#squash_actions = apk,apt,conda,dnf,homebrew,openbsd_pkg,pacman,pkgng,yum,zypper

# prevents logging of task data, off by default
#no_log = False
Expand Down Expand Up @@ -402,8 +402,8 @@
# only be disabled if your sftp version has problems with batch mode
#sftp_batch_mode = False

# The -tt argument is passed to ssh when pipelining is not enabled because sudo
# requires a tty by default.
# The -tt argument is passed to ssh when pipelining is not enabled because sudo
# requires a tty by default.
#use_tty = True

[persistent_connection]
Expand Down
2 changes: 1 addition & 1 deletion lib/ansible/config/base.yml
Expand Up @@ -959,7 +959,7 @@ DEFAULT_SFTP_BATCH_MODE:
yaml: {key: ssh_connection.sftp_batch_mode}
DEFAULT_SQUASH_ACTIONS:
name: Squashable actions
default: apk, apt, dnf, homebrew, openbsd_pkg, pacman, pkgng, yum, zypper
default: apk, apt, conda, dnf, homebrew, openbsd_pkg, pacman, pkgng, yum, zypper
description:
- Ansible can optimise actions that call modules that support list parameters when using ``with_`` looping.
Instead of calling the module once for each item, the module is called once with the full list.
Expand Down