From 992c2b823482f9a526964446e35573550387cc23 Mon Sep 17 00:00:00 2001 From: Wes Johnson Date: Tue, 15 May 2012 13:03:10 -0700 Subject: [PATCH] removed '-' from ansible calls --- rst/examples.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rst/examples.rst b/rst/examples.rst index cd1068e326c..37a206a81ee 100644 --- a/rst/examples.rst +++ b/rst/examples.rst @@ -131,7 +131,7 @@ Ensure a package is installed, but don't update it:: Ensure a package is installed to a specific version:: - ansible-webservers -m yum -a "pkg=acme-1.5 state=installed" + ansible webservers -m yum -a "pkg=acme-1.5 state=installed" Ensure a package is at the latest version:: @@ -139,7 +139,7 @@ Ensure a package is at the latest version:: Ensure a package is not installed:: - ansible-webservers -m yum -a "pkg=acme state=removed" + ansible webservers -m yum -a "pkg=acme state=removed" Currently Ansible only has modules for managing packages with yum and apt. You can install for other packages for now using the command module or (better!) contribute a module