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


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

--

Legend:

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

    v54 v55  
    107107ansible [-i inventory] [all/server/client] -s -m file -a "path=/var/www/html state=absent"
    108108   }}}
    109 `synchronize` module is an implementation of `rsync` and is used to efficiently synchronize files between your local machine and a remote node:
     109[http://docs.ansible.com/synchronize_module.html `synchronize`] module is an implementation of `rsync` and is used to efficiently synchronize files between your local machine and a remote node:
    110110
    111111   {{{
     
    114114    -a "src=website/index.html dest=/var/www"
    115115   }}}
    116 `lineinfile` module is used to see if an arbitrary line exists in a file:
     116[http://docs.ansible.com/lineinfile_module.html `lineinfile`] module is used to see if an arbitrary line exists in a file:
    117117   {{{
    118118#!sh
     
    120120     -a "line='ExtendedStatus On' dest=/etc/apache2/conf.d/extendedstatus create=yes state=present"
    121121   }}}
    122 `service` module is used to start/stop/restart/etc services:
     122[http://docs.ansible.com/service_module.html `service`] module is used to start/stop/restart/etc services:
    123123   {{{
    124124#!sh