123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- ---
- - hosts: localhost
- gather_facts: no
- connection: local
- vars:
- - git_url: "git@github.com:kalliope-project/kalliope.git"
- - temp_local_repo: "/tmp/kalliope_repo"
- tasks:
- - name: clone project in /tmp as standart user
- git:
- repo: "{{ git_url }}"
- dest: /tmp/kalliope_repo
- accept_hostkey: yes
- - hosts: localhost
- gather_facts: no
- connection: local
- become: True
- vars:
- - git_url: "git@github.com:kalliope-project/kalliope.git"
- - temp_local_repo: "/tmp/kalliope_repo"
- - install_path: "/usr/lib/kalliope"
- tasks:
- - name: Install packages
- apt: name={{ item }} update_cache=yes
- with_items:
- - python-pip
- - python-dev
- - libsmpeg0
- - libttspico-utils
- - libsmpeg0
- - flac
- - dialog
- - libffi-dev
- - portaudio19-dev
- - build-essential
- - libssl-dev
- - libffi-dev
- - sox
- - libatlas3-base
- - name: Copy requirement
- copy:
- src: python_requirements.txt
- dest: /tmp/requirements.txt
- - name: Upgrade pip
- pip:
- name: pip
- state: latest
- - name: Install python libs
- pip:
- requirements=/tmp/requirements.txt
- - name: Check that the repo has been cloned
- stat:
- path: "{{ temp_local_repo }}"
- register: git_repo_stat
- - name: Remove old version if exist
- file:
- path: "{{ install_path }}"
- state: absent
- - name: Move repo in /usr/lib
- command: mv "{{ temp_local_repo }}" "{{ install_path }}"
- when: git_repo_stat.stat.exists
- - name: Add entry in /usr/bin
- file:
- src: "{{ install_path }}/kalliope.py"
- dest: /usr/bin/kalliope
- state: link
- force: True
|