deploy/test_playbook.yml
author ymh <ymh.work@gmail.com>
Fri, 30 Nov 2018 10:53:15 +0100
changeset 183 f8f3af9e5c83
parent 180 62bffc051e1c
permissions -rw-r--r--
Change the settings to avoid using Session authentication for rest framework as it raise exceptions in case client and backend are on the same domain On the filter, adapt to take into account new version of django_filters

---
#
# all actions
#
- hosts: all
  become: true
  tasks:
    - name: set eth1 interface
      blockinfile:
        path: /etc/network/interfaces
        block: |
          auto eth1
          iface eth1 inet static
              address 172.16.1.7
              netmask 255.255.255.0
      register: eth1_added
    - name: restart network service
      service:
        name: networking
        state: restarted
      when: eth1_added.changed
    - name: install deps
      apk:
        name: python-dev,python3-dev,py-virtualenv,nginx,supervisor,build-base,musl-dev,gcc,linux-headers,libffi,libffi-dev, shadow, git, postgresql-dev, postgresql-client, libmemcached-dev, zlib-dev
        update_cache: yes
    - name: create etc supervisor.d folder
      file:
        path: /etc/supervisor.d
        state: directory
    - name: starts supervisord
      service:
        name: supervisord
        state: started
    - name: Set authorized key for user vagrant copying it from current user
      authorized_key:
        user: vagrant
        state: present
        key: "{{ lookup('file', lookup('env','HOME') + '/.ssh/id_rsa.pub') }}"