Ver código fonte

Install some often used tools

Matthias Vogelgesang 10 anos atrás
pai
commit
80ae7d6a78
2 arquivos alterados com 8 adições e 2 exclusões
  1. 3 1
      roles/common/tasks/main.yml
  2. 5 1
      roles/control/tasks/main.yml

+ 3 - 1
roles/common/tasks/main.yml

@@ -1,9 +1,11 @@
 ---
 - name: install basic tools
-  zypper: name=$item state=present
+  zypper: name={{ item }} state=present
   with_items:
     - htop
     - tmux
+    - python-virtualenv
+    - python-virtualenvwrapper
 
 - name: add ufo-kit repo
   command: zypper ar -f -G "${our_suse_repo}" repo-ufo-kit

+ 5 - 1
roles/control/tasks/main.yml

@@ -1,3 +1,7 @@
 ---
 - name: install concert
-  zypper: name=python-concert-cli state=latest
+  zypper: name={{ item }} state=latest
+  with_items:
+    - python-concert-cli
+    - python-matplotlib-tk
+    - git