Skip to content

Commit

Permalink
fix arm64 repos and remove non-existent
Browse files Browse the repository at this point in the history
  • Loading branch information
fspv committed Dec 9, 2024
1 parent 4458ef9 commit 1828d8d
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 13 deletions.
1 change: 0 additions & 1 deletion roles/apt/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ apt_repos:
- ubuntu-security
- ubuntu-updates
- ubuntu-backports
# - ubuntu-partner
# - ppa-pv-safronov-backports

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% if ansible_architecture == "armv7l" %}
{% if ansible_architecture == "armv7l" or ansible_architecture == "aarch64" %}
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% if ansible_architecture == "armv7l" %}
{% if ansible_architecture == "armv7l" or ansible_architecture == "aarch64" %}
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% if ansible_architecture == "armv7l" %}
{% if ansible_architecture == "armv7l" or ansible_architecture == "aarch64" %}
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% if ansible_architecture == "armv7l" %}
{% if ansible_architecture == "armv7l" or ansible_architecture == "aarch64" %}
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
Expand Down
2 changes: 1 addition & 1 deletion roles/apt/templates/etc/apt/sources.list.d/ubuntu.list.j2
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% if ansible_architecture == "armv7l" %}
{% if ansible_architecture == "armv7l" or ansible_architecture == "aarch64" %}
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ ansible_distribution_release }} stable
deb [arch={{ 'arm64' if ansible_architecture == "armv7l" or ansible_architecture == 'aarch64' else 'amd64' }}] https://download.docker.com/linux/ubuntu {{ ansible_distribution_release }} stable
1 change: 0 additions & 1 deletion roles/ubuntu-devserver/meta/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
dependencies:
- { role: docker }
- { role: openvpn }
- { role: tailscale }
- { role: et }
- { role: nvim }

0 comments on commit 1828d8d

Please sign in to comment.