summaryrefslogtreecommitdiff
path: root/commands/command.py
diff options
context:
space:
mode:
authorHarlan Lieberman-Berg <hlieberman@setec.io>2016-05-01 05:02:57 -0400
committerRené Moser <mail@renemoser.net>2016-05-01 11:02:57 +0200
commit2b36edd55c749045e779ec2e8e9031b63de4fb63 (patch)
tree34648e0e727199ef20f34eb901fa5523adc442b7 /commands/command.py
parentdf0adafe66eac29f46bae5a5de5a6fbf59079e9c (diff)
downloadansible-modules-core-2b36edd55c749045e779ec2e8e9031b63de4fb63.tar.gz
command: Correct suggestion of non-existant module apt-get
Diffstat (limited to 'commands/command.py')
-rw-r--r--commands/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/command.py b/commands/command.py
index 6535916c..8c76826f 100644
--- a/commands/command.py
+++ b/commands/command.py
@@ -139,7 +139,7 @@ def check_command(commandline):
'rmdir': 'state=absent', 'rm': 'state=absent', 'touch': 'state=touch' }
commands = { 'git': 'git', 'hg': 'hg', 'curl': 'get_url or uri', 'wget': 'get_url or uri',
'svn': 'subversion', 'service': 'service',
- 'mount': 'mount', 'rpm': 'yum, dnf or zypper', 'yum': 'yum', 'apt-get': 'apt-get',
+ 'mount': 'mount', 'rpm': 'yum, dnf or zypper', 'yum': 'yum', 'apt-get': 'apt',
'tar': 'unarchive', 'unzip': 'unarchive', 'sed': 'template or lineinfile',
'rsync': 'synchronize', 'dnf': 'dnf', 'zypper': 'zypper' }
become = [ 'sudo', 'su', 'pbrun', 'pfexec', 'runas' ]