Skip to content

Commit 3369f7b

Browse files
committed
Add arm64, remove i386 compatibility from ::gluster::repo:apt
Looking at the glusterfs repository at https://download.gluster.org/pub/gluster/glusterfs/, it appears that (at least going back to 3.10): a) arm64 packages are available b) i386 packages are not available Therefore, update the puppet module accordingly
1 parent 72a80cd commit 3369f7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manifests/repo/apt.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@
6767
}
6868
}
6969

70-
# the Gluster repo only supports x86_64 and i386. armhf is only supported for Raspbian. The Ubuntu PPA also supports armhf and arm64.
70+
# the Gluster repo only supports x86_64 (amd64) and arm64. The Ubuntu PPA also supports armhf and arm64.
7171
case $::operatingsystem {
7272
'Debian': {
7373
case $::lsbdistcodename {
7474
'jessie', 'stretch': {
7575
$arch = $::architecture ? {
7676
'amd64' => 'amd64',
77-
/i\d86/ => 'i386',
77+
'arm64' => 'arm64',
7878
default => false,
7979
}
8080
if versioncmp($release, '3.12') < 0 {

0 commit comments

Comments
 (0)