summaryrefslogtreecommitdiffstats
path: root/changelogs
diff options
context:
space:
mode:
authorylmrx <ylmrx@users.noreply.github.com>2021-03-01 20:04:59 +0100
committerGitHub <noreply@github.com>2021-03-01 20:04:59 +0100
commite7e3c12ad27b80686ebae5d43f85442299386565 (patch)
tree78e47eceda72a7c29a4d7838050493c012389636 /changelogs
parentClarify CLI version number as core version (#72287) (diff)
downloadansible-e7e3c12ad27b80686ebae5d43f85442299386565.tar.xz
ansible-e7e3c12ad27b80686ebae5d43f85442299386565.zip
Fixes for ansible-console usability (#73665)
- Fix Ctrl+C/D behavior (#68529) - correct few typos and missing infos - Fixes doc (#72195)
Diffstat (limited to 'changelogs')
-rw-r--r--changelogs/fragments/73665-fixes-ansible-console.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/changelogs/fragments/73665-fixes-ansible-console.yml b/changelogs/fragments/73665-fixes-ansible-console.yml
new file mode 100644
index 0000000000..6c68322f61
--- /dev/null
+++ b/changelogs/fragments/73665-fixes-ansible-console.yml
@@ -0,0 +1,8 @@
+bugfixes:
+ - ansible-console - add more documentation, specifically on various commands[1] (https://github.com/ansible/ansible/issues/72195)
+ - ansible-console - Ctrl+C (on prompt) used to exit the shell, unlike most shells, it should just reset the current line
+ (ie. abort it and spawn a new prompt) (https://github.com/ansible/ansible/issues/68529)
+ - ansible-console - Ctrl+C (in a task) abort current task, and put you back on prompt (this behavior doesn't change) (ditto)
+ - ansible-console - Ctrl+D (on prompt) now exit the shell, this is the expected behavior in a shell (cf bash, sh, zsh, ipython, ...) (ditto)
+ - ansible-console - fixes few strings' typos
+ - ansible-console - remove useless and poorly formatted comment section (replaced with [1])