PHP Classes

File: ansible/roles/vagrant_local/tasks/main.yml

Recommend this page to a friend!
  Classes of Omar Shaban   PHP Game of Three   ansible/roles/vagrant_local/tasks/main.yml   Download  
File: ansible/roles/vagrant_local/tasks/main.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Game of Three
Game of Three implementation using Websockets
Author: By
Last change:
Date: 2 years ago
Size: 445 bytes
 

Contents

Class file image Download
--- - name: Set the hostname in /etc/hostname shell: echo {{ vagrant_local.vm.hostname }} > /etc/hostname when: vagrant_local.vm.hostname is defined - name: Set the hostname shell: hostname {{ vagrant_local.vm.hostname }} when: vagrant_local.vm.hostname is defined - name: Update /etc/hosts lineinfile: dest=/etc/hosts regexp='^127\.0\.0\.1' line='127.0.0.1 localhost {{ vagrant_local.vm.hostname }}' owner=root group=root mode=0644