Remove 'dokuwiki' role
This commit is contained in:
parent
2c238d17c3
commit
a56cea369c
3 changed files with 0 additions and 48 deletions
|
@ -1,30 +0,0 @@
|
|||
---
|
||||
# For DokuWiki package
|
||||
- name: Configure Debian Buster mirrors
|
||||
when:
|
||||
- ansible_distribution == 'Debian'
|
||||
- ansible_distribution_release == 'stretch'
|
||||
template:
|
||||
src: apt/buster.list.j2
|
||||
dest: /etc/apt/sources.list.d/buster.list
|
||||
mode: 0644
|
||||
|
||||
# For DokuWiki package
|
||||
- name: Configure DokuWiki pin
|
||||
when:
|
||||
- ansible_distribution == 'Debian'
|
||||
- ansible_distribution_release == 'stretch'
|
||||
template:
|
||||
src: apt/dokuwiki.j2
|
||||
dest: /etc/apt/preferences.d/dokuwiki
|
||||
mode: 0644
|
||||
|
||||
# Install
|
||||
- name: Install DokuWiki
|
||||
apt:
|
||||
update_cache: true
|
||||
name: dokuwiki
|
||||
state: present
|
||||
register: apt_result
|
||||
retries: 3
|
||||
until: apt_result is succeeded
|
|
@ -1,9 +0,0 @@
|
|||
# {{ ansible_managed }}
|
||||
{# #}
|
||||
{# Default mirror #}
|
||||
{% if debian_mirror is not defined %}
|
||||
{% set debian_mirror = 'http://ftp.fr.debian.org/debian' %}
|
||||
{% endif %}
|
||||
|
||||
deb {{ debian_mirror }} buster main
|
||||
deb-src {{ debian_mirror }} buster main
|
|
@ -1,9 +0,0 @@
|
|||
# {{ ansible_managed }}
|
||||
|
||||
Package: *
|
||||
Pin: release n=stretch*
|
||||
Pin-Priority: 990
|
||||
|
||||
Package: dokuwiki
|
||||
Pin: release n=buster
|
||||
Pin-Priority: 990
|
Loading…
Reference in a new issue