Changes between Version 54 and Version 55 of GENIExperimenter/Tutorials/AnsibleHelloGENI/Execute
- Timestamp:
- 03/16/15 16:01:46 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GENIExperimenter/Tutorials/AnsibleHelloGENI/Execute
v54 v55 107 107 ansible [-i inventory] [all/server/client] -s -m file -a "path=/var/www/html state=absent" 108 108 }}} 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: 110 110 111 111 {{{ … … 114 114 -a "src=website/index.html dest=/var/www" 115 115 }}} 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: 117 117 {{{ 118 118 #!sh … … 120 120 -a "line='ExtendedStatus On' dest=/etc/apache2/conf.d/extendedstatus create=yes state=present" 121 121 }}} 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: 123 123 {{{ 124 124 #!sh