Add sources.list for Debian
This commit is contained in:
parent
42dd89c39b
commit
cbdb020019
3 changed files with 29 additions and 0 deletions
20
roles/debian/tasks/apt-sources.yml
Normal file
20
roles/debian/tasks/apt-sources.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
---
|
||||||
|
# Copyright 2021 Anthony Perkins
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
- name: Add to-do list launcher
|
||||||
|
become: true
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: sources.list
|
||||||
|
dest: "/etc/apt/sources.list"
|
|
@ -13,6 +13,7 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
- include: apt-sources.yml
|
||||||
- include: packages-cli.yml
|
- include: packages-cli.yml
|
||||||
- include: packages-gui.yml
|
- include: packages-gui.yml
|
||||||
when: gui == true
|
when: gui == true
|
||||||
|
|
8
roles/debian/templates/sources.list
Normal file
8
roles/debian/templates/sources.list
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
deb http://deb.debian.org/debian/ {{ ansible_distribution_release }} main non-free contrib
|
||||||
|
deb-src http://deb.debian.org/debian/ {{ ansible_distribution_release }} main non-free contrib
|
||||||
|
|
||||||
|
deb http://deb.debian.org/debian/ {{ ansible_distribution_release }}-updates main non-free contrib
|
||||||
|
deb-src http://deb.debian.org/debian/ {{ ansible_distribution_release }}-updates main non-free contrib
|
||||||
|
|
||||||
|
deb http://deb.debian.org/debian-security/ {{ ansible_distribution_release }}-security main non-free contrib
|
||||||
|
deb-src http://deb.debian.org/debian-security/ {{ ansible_distribution_release }}-security main non-free contrib
|
Loading…
Reference in a new issue