yavdr-ansible/roles/yavdr-common/tasks/main.yml

105 lines
2.1 KiB
YAML
Raw Normal View History

2017-02-22 15:27:48 +01:00
- name: apt | prevent automatic installation of recommended packages
template:
2017-03-02 09:06:19 +01:00
src: templates/90-norecommends.j2
dest: /etc/apt/apt.conf.d/90norecommends
2017-02-19 13:56:47 +01:00
- name: use bash instead of dash
shell: |
echo "set dash/sh false" | debconf-communicate
dpkg-reconfigure -f noninteractive dash
- name: create vdr group
group:
gid: '{{ vdr.gid }}'
state: present
name: '{{ vdr.group }}'
- name: create vdr user
user:
name: '{{ vdr.user }}'
group: '{{ vdr.group }}'
uid: '{{ vdr.uid }}'
home: '{{ vdr.home }}'
shell: '/bin/bash'
state: present
append: true
- name: disable release-upgrade notifications
lineinfile:
dest: /etc/update-manager/release-upgrades
backrefs: yes
state: present
regexp: '^(Prompt=).*$'
line: '\1never'
2017-02-19 13:56:47 +01:00
- name: add yaVDR PPAs
apt_repository:
repo: '{{ item }}'
state: present
update_cache: yes
with_items: '{{ repositories }}'
2017-02-19 13:56:47 +01:00
- name: upgrade existing packages
apt:
upgrade: dist
update_cache: yes
2017-02-22 15:27:48 +01:00
- name: apt | install basic packages
2017-02-19 13:56:47 +01:00
apt:
2017-02-22 15:27:48 +01:00
name: '{{ item }}'
state: present
install_recommends: no
2017-02-19 13:56:47 +01:00
with_items:
2017-02-22 15:27:48 +01:00
- anacron
- at
- bash-completion
- biosdevname
- debconf-utils
2017-02-22 15:27:48 +01:00
- linux-firmware
- psmisc
- python-kmodpy
2017-03-03 10:39:59 +01:00
- python-usb
2017-03-02 09:38:05 +01:00
- python3-usb
2017-02-22 15:27:48 +01:00
- software-properties-common
- ssh
- wget
- wpasupplicant
- usbutils
- xfsprogs
- name: apt | install extra packages
apt:
name: '{{ item }}'
state: present
install_recommends: no
with_items:
'{{ extra_packages }}'
2017-03-03 10:39:59 +01:00
- name: get information about usb and pci hardware and loaded kernel modules
hardware_facts:
usb: True
pci: True
modules: True
gpus: True
- debug:
var: usb
verbosity: 1
- debug:
var: pci
verbosity: 1
- debug:
var: modules
verbosity: 1
- debug:
var: gpus
verbosity: 1
- name: create media directories
file:
dest: '{{ item.value }}'
owner: '{{ vdr.user }}'
group: '{{ vdr.group }}'
state: directory
mode: '0777'
with_dict: '{{ media_dirs }}'