From 30a51bfc3024987d03b17e73d1b5b49f123486b7 Mon Sep 17 00:00:00 2001 From: John Morrissey Date: Tue, 8 Dec 2020 22:41:52 +0000 Subject: [PATCH] add arm64/aarch64 support --- manifests/params.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manifests/params.pp b/manifests/params.pp index a42b700..dcf44e8 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -16,6 +16,10 @@ $arch = '386' } + 'aarch64': { + $arch = 'arm64' + } + default: { fail("Unsupported kernel architecture: ${facts['architecture']}") }