CSIT-613 Update VIRL ansible files
[csit.git] / resources / tools / testbed-setup / playbooks / 03-virl-post-install.yaml
index 1902121..7558c70 100644 (file)
     shell: ln -s /nfs/scratch /scratch
     args:
       creates: /scratch
-  - name: Patch nova scripts
-    patch:
-      src: ./files/nova_os_ip.patch
-      basedir: /usr/lib/python2.7/dist-packages/nova
   - name: Upate Nova CPU mode
     ini_file: dest=/etc/nova/nova.conf section=libvirt option=cpu_mode value=host-passthrough
   - name: Restart nova-compute service
     service: name=nova-compute state=restarted
-  - name: Upate Neutron bridge ageing time
-    ini_file: dest=/etc/neutron/neutron.conf section=DEFAULT option=network_bridge_ageing value=0
-  - name: Restart neutron-linuxbridge-agent service
-    service: name=neutron-linuxbridge-agent state=restarted
+  - name: Change listen interface in NTP settings
+    lineinfile: dest=/etc/ntp.conf state=present regexp='^interface listen 172.16.*' line='interface listen {{ ansible_default_ipv4["address"] }}'
+  - name: Restart NTP service
+    service: name=ntp state=restarted
   - name: Permit SSH user environment
     lineinfile: dest=/etc/ssh/sshd_config state=present regexp='PermitUserEnvironment.*' line='PermitUserEnvironment yes'
   - name: Restart SSH daemon