Changes between Version 53 and Version 54 of GENIExperimenter/Tutorials/AnsibleHelloGENI/Execute


Ignore:
Timestamp:
03/16/15 16:00:22 (9 years ago)
Author:
sedwards@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/AnsibleHelloGENI/Execute

    v53 v54  
    8484               </td>
    8585               <td>
    86                     The following are some example Ansible Ad Hoc commands.  You can run these commands one at a time from the machine where you have Ansible installed. `-s` tells Ansible to use `sudo` when executing the command.  All modules are described in the <a href="http://docs.ansible.com/modules_by_category.html">Ansible Documentation</a>
     86                    The following are some example Ansible Ad Hoc commands.  You can run these commands one at a time from the machine where you have Ansible installed. `-s` tells Ansible to use `sudo` when executing the command.  All modules are described in the <a href="http://docs.ansible.com/modules_by_category.html">Ansible Documentation</a>.
    8787               </td>
    8888        </tr>
     
    9191
    9292
    93 `apt` module is used to installed packages:
     93[http://docs.ansible.com/apt_module.html `apt`] module is used to install packages using the `apt` package manager:
    9494   {{{
    9595#!sh
     
    9797   }}}
    9898
    99 `command` module is used to execute an arbitrary shell command:
     99[http://docs.ansible.com/command_module.html `command`] module is used to execute an arbitrary shell command:
    100100   {{{
    101101#!sh
    102102ansible [-i inventory] [all/server/client]  -s -m command -a "/usr/sbin/a2enmod status"
    103103   }}}
    104 `file` module is used to manipulate files:
     104[http://docs.ansible.com/file_module.html `file`] module is used to set attributes of files:
    105105   {{{
    106106#!sh