Suggest using replace module rather than command sed (#34085)

* Suggest using replace module rather than command sed

* Better order
pull/33229/merge
John R Barker 7 years ago committed by ansibot
parent 339278fa15
commit 20174f1c47

@ -128,7 +128,7 @@ def check_command(module, commandline):
commands = {'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',
'tar': 'unarchive', 'unzip': 'unarchive', 'sed': 'template or lineinfile',
'tar': 'unarchive', 'unzip': 'unarchive', 'sed': 'replace, lineinfile or template',
'dnf': 'dnf', 'zypper': 'zypper'}
become = ['sudo', 'su', 'pbrun', 'pfexec', 'runas', 'pmrun']
command = os.path.basename(commandline.split()[0])

Loading…
Cancel
Save