From 1994b8a53d7bc6d508c124b141257b8c7ce44660 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Wed, 6 Dec 2023 20:39:18 +0100 Subject: [PATCH] Add call to Armbian installer --- .../system/armbian-install.sh | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lib/armbian-configng/system/armbian-install.sh diff --git a/lib/armbian-configng/system/armbian-install.sh b/lib/armbian-configng/system/armbian-install.sh new file mode 100644 index 000000000..688448636 --- /dev/null +++ b/lib/armbian-configng/system/armbian-install.sh @@ -0,0 +1,21 @@ +#!/bin/bash +# +# Copyright (c) Authors: http://www.armbian.com/authors, info@armbian.com +# +# This file is licensed under the terms of the GNU General Public +# License version 2. This program is licensed "as is" without any +# warranty of any kind, whether express or implied. + + +# @description Armbian installer +# +# @exitcode 0 If successful. +# +# @options none. +# +function system::Install(){ + + armbian-install + return 0 +} +