We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 363405b + 3369f7b commit d0c701cCopy full SHA for d0c701c
manifests/repo/apt.pp
@@ -61,14 +61,14 @@
61
fail("${version} doesn't make sense for ${::operatingsystem}!")
62
}
63
64
- # the Gluster repo only supports x86_64 and i386. armhf is only supported for Raspbian. The Ubuntu PPA also supports armhf and arm64.
+ # the Gluster repo only supports x86_64 (amd64) and arm64. The Ubuntu PPA also supports armhf and arm64.
65
case $::operatingsystem {
66
'Debian': {
67
case $::lsbdistcodename {
68
'jessie', 'stretch': {
69
$arch = $::architecture ? {
70
'amd64' => 'amd64',
71
- /i\d86/ => 'i386',
+ 'arm64' => 'arm64',
72
default => false,
73
74
if versioncmp($release, '3.12') < 0 {
0 commit comments