Update AIO script to support ubuntu-ports
With the merge of [1], the way the bootstrap AIO script evaluates the sources.list file for ubuntu was changed, which inadvertently broke any distros using ubuntu-ports. This patch fixes the regex to support ubuntu-ports repos. [1] I7fab8f3c072e25fa8138c3e37d764b36d17526d6 Change-Id: I7ecd9dc130d194342e236bef42b08926f98940fd
This commit is contained in:
parent
d331013138
commit
5098998d64
@ -21,7 +21,7 @@
|
|||||||
- apt-install-prerequisites
|
- apt-install-prerequisites
|
||||||
|
|
||||||
- name: Determine the existing Ubuntu repo configuration
|
- name: Determine the existing Ubuntu repo configuration
|
||||||
shell: 'grep -oP "^deb \K(\[?.*\]?.*ubuntu\/?)(?= {{ ansible_distribution_release }} main)" /etc/apt/sources.list'
|
shell: 'grep -oP "^deb \K(\[?.*\]?.*ubuntu\S*\/?)(?= {{ ansible_distribution_release }} main)" /etc/apt/sources.list'
|
||||||
register: ubuntu_repo
|
register: ubuntu_repo
|
||||||
when:
|
when:
|
||||||
- bootstrap_host_ubuntu_repo is not defined
|
- bootstrap_host_ubuntu_repo is not defined
|
||||||
@ -30,7 +30,7 @@
|
|||||||
- find-apt-repo
|
- find-apt-repo
|
||||||
|
|
||||||
- name: Determine the existing Ubuntu Security repo configuration
|
- name: Determine the existing Ubuntu Security repo configuration
|
||||||
shell: 'grep -oP "^deb \K(\[?.*\]?.*ubuntu\/?)(?= {{ ansible_distribution_release }}-security main)" /etc/apt/sources.list'
|
shell: 'grep -oP "^deb \K(\[?.*\]?.*ubuntu\S*\/?)(?= {{ ansible_distribution_release }}-security main)" /etc/apt/sources.list'
|
||||||
register: ubuntu_security_repo
|
register: ubuntu_security_repo
|
||||||
when:
|
when:
|
||||||
- bootstrap_host_ubuntu_security_repo is not defined
|
- bootstrap_host_ubuntu_security_repo is not defined
|
||||||
|
Loading…
x
Reference in New Issue
Block a user