Skip to content
Snippets Groups Projects
Select Git revision
  • 5ff1e0e505b603ad5f81b1ebe45b33ebd3336ba5
  • master default protected
  • intros
  • live_sources
  • bootstrap4
  • modules
6 results

course.html

Blame
  • Forked from Video AG Infrastruktur / website
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    main.yml 725 B
    ---
    # file: roles/client/tasks/pyxtrlock.yml
    
    - name: ensure we got some virtualenv
      pip:
        virtualenv: /opt/pyxtrlock
        virtualenv_command: "virtualenv -p /usr/bin/python3"
        name: "{{ item }}"
      with_items:
        - simplepam
        - pyxdg
      tags: pyxtrlock
    
    - name: ensure we got a copy of pyxtrlock
      git:
        repo: git://github.com/leonnnn/pyxtrlock.git
        dest: /opt/pyxtrlock/pyxtrlock
        accept_hostkey: true
      tags: pyxtrlock
    
    - name: ensure there is no mouse symbol
      command: ../bin/python make_empty_lock.py
      args:
        chdir: /opt/pyxtrlock/pyxtrlock
      tags: pyxtrlock
    
    - name: ensure setup of pyxtrlock
      command: ../bin/python setup.py install
      args:
        chdir: /opt/pyxtrlock/pyxtrlock
      tags: pyxtrlock