diff --git a/base.yml b/base.yml index 5d0b8a92a945fb82e48afb4123d5a1caf913f88a..f8585d8e84f8f01896bd383863d7f568f5391224 100644 --- a/base.yml +++ b/base.yml @@ -77,3 +77,7 @@ - hosts: otis.adm.crans.org roles: - ansible + +- hosts: zamok.adm.crans.org + roles: + - zamok-tools diff --git a/roles/zamok-tools/tasks/main.yml b/roles/zamok-tools/tasks/main.yml new file mode 100644 index 0000000000000000000000000000000000000000..f2d0e5f53440c29fb825b6d152adb51b8440ecbb --- /dev/null +++ b/roles/zamok-tools/tasks/main.yml @@ -0,0 +1,66 @@ +--- +- name: Install zamok tools + apt: + update_cache: true + name: + - cabal-install + - python3-django + - python3-django-reversion + - python-django-reversion + - python3-djangorestframework + - python3-netaddr + - python3-psycopg2 + - python3-mysqldb + - python3-pip + - python-irc + - python3-irc + - python3-scipy + - mysql-server + - texlive-full + - libapache2-mod-ruid2 + - libapache2-mod-wsgi-py3 + - php + - slrn + - sl + - nyancat + - php-mysql + - fish + - odt2txt + - python3-dialog + - reptyr + - byobu + - cpanminus + - lynx # Demande du 30/07/2017 sur nounou@ + - poppler-utils + - par + - joe + - jed # Demande du 04/08/2017 sur nounou@ + - fetchmail + - python-mysqldb # Demande du 18/08/2017 sur nounou@ respo pot vieux + - exiv2 # Demande du 25/08/2017 14:19 sur #crans + - lua-cjson # Demande du 01/09/2017 18:50 sur #crans + - bitlbee # Demande du 06/09/2017 17:40 sur #crans + - vim-gtk # Demande du 23/09/2017 22:04 sur #crans + - libenchant1c2a # Demande du 25/09/2017 11:28 sur #crans + - inotify-tools # Demande du 24/10/2017 23:17 sur #crans + - incron # Demande du 24/10/2017 23:57 sur #crans + - ruby-dev # Demande du 07/01/2018 18:50 sur #crans, certains gem ruby ont besoin de compiler des trucs + - pkg-config # Demande du 01/02/2018 15:00 sur #roots + - graphviz # Demande du 10/02/2018 15:46 sur #roots + - freefem++ # Demande du 14/05/2018 17:12 sur #roots + - spamassassin # utile pour filtrer le spam avec procmail + - pyzor + - razor + - uwsgi # pratique pour utiliser Django sur sa page perso + - uwsgi-plugin-python + - uwsgi-plugin-python3 + - unison # Demande news crans.crans 11/04/18 + - cmake # Demande irc #root 22/05/2018 15h45 + - moreutils # Ce package, c'est la vie ! + - pdftk # Demande mail nounou@ 16/10/2018 16h01 + - weechat # Parceque c'est normal qu'il soit installe + - octave # Demande irc #crans 28/02/2019 14h28 + - python3-venv # Ajout par erdnaxe pour la Med 10/08/2019 10h50 + register: apt_result + retries: 3 + until: apt_result is succeeded