source: MondoRescue/branches/3.3/ansible/roles/urpmi/tasks/main.yml@ 3667

Last change on this file since 3667 was 3667, checked in by Bruno Cornec, 7 years ago

Many updates to MR setup

File size: 525 bytes
RevLine 
[3655]1---
2
3- name: Check that urpmi is configured correctly
[3657]4 copy: src=files/{{ item }} dest=/usr/local/bin/{{ item }} owner=root group=root mode=0755 backup=yes
5 with_items:
6 - addmedia
7 - upd
[3655]8 notify:
9 - restart urpmi
10 tags: urpmi
11
12- name: Check mandatory packages installed
13 urpmi: name={{ item.pkg }} state=installed update_cache=yes no-recommends=yes
14 with_items:
15 - { pkg: bind-utils }
16 - { pkg: mutt }
17 - { pkg: ncftp }
18 - { pkg: rsyslog }
19 - { pkg: rsyslog-journald }
[3667]20 - { pkg: mlocate }
Note: See TracBrowser for help on using the repository browser.