ansible-role--basesystem/tasks/main.yml

46 lines
1.7 KiB
YAML
Raw Normal View History

2015-11-17 09:29:07 +00:00
---
- template:
src=apt_conf_glenuxnet_base.j2
dest=/etc/apt/apt.conf.d/00glenuxnet_base
owner=root
group=root
mode=0644
# Debian normal
- apt_repository: repo='deb http://ftp.fr.debian.org/debian/ stable main contrib non-free' state=present
notify: ['Update APT cache']
- apt_repository: repo='deb-src http://ftp.fr.debian.org/debian/ stable main contrib non-free' state=present
notify: ['Update APT cache']
- apt_repository: repo='deb http://ftp.fr.debian.org/debian/ testing main contrib non-free' state=present
notify: ['Update APT cache']
- apt_repository: repo='deb-src http://ftp.fr.debian.org/debian/ testing main contrib non-free' state=present
notify: ['Update APT cache']
- apt_repository: repo='deb http://ftp.fr.debian.org/debian/ unstable main contrib non-free' state=present
notify: ['Update APT cache']
- apt_repository: repo='deb-src http://ftp.fr.debian.org/debian/ unstable main contrib non-free' state=present
notify: ['Update APT cache']
# Debian security
- apt_repository: repo='deb http://security.debian.org/ stable/updates main contrib non-free' state=present
notify: ['Update APT cache']
- apt_repository: repo='deb-src http://security.debian.org/ stable/updates main contrib non-free' state=present
notify: ['Update APT cache']
# Debian stable-update (ex-volatile)
- apt_repository: repo='deb http://ftp.fr.debian.org/debian/ stable-updates main contrib non-free' state=present
- apt_repository: repo='deb-src http://ftp.fr.debian.org/debian/ stable-updates main contrib non-free' state=present
2015-12-27 18:48:21 +00:00
- include: system.yml
- include: desktop.yml
- include: shopping.yml
- include: development.yml
- include: multimedia.yml
- include: network.yml
- include: office.yml
- include: security.yml
2016-01-06 23:49:04 +00:00
- include: shell.yml