These disk images (*.img
or *.sdimg
) are based on images provided by board
manufacturers and are ready to install the Mender client. They are used to
provision the device storage for devices without Mender running already.
Mender provides images based on the following distributions:
Note that we do not offer commercial support for these images. They are based on images supported by board manufacturers, like the Raspberry Pi Foundation, and provide the same software and configuration options as the original images. Please use the support resources available from the board manufacturer, or contact us if you have any questions on the Mender integration.
Board | OS | Disk image | Storage size |
---|---|---|---|
Raspberry Pi 3 Model B and B+ | Raspberry Pi OS Bullseye Lite 2022-01-28 | raspios-bullseye-armhf-lite-raspberrypi3-mender.img.xz | 8 GB |
Raspberry Pi 4 Model B | Raspberry Pi OS Bullseye Lite 2022-01-28 | raspios-bullseye-armhf-lite-raspberrypi4-mender.img.xz | 8 GB |
You can find images for other devices in our Mender Hub community forum, see Debian Family or Yocto Project integration posts.
The mender-artifact
utility is used to work with Mender Artifacts,
which are files with the .mender
suffix and contain software to be deployed.
See Artifact creation for more information on how to
use this utility.
Follow the correct link according to your host platform to download
mender-artifact
as a standalone utility:
Platform | Download link | |
---|---|---|
Linux | mender-artifact 3.8.1 | mender-artifact master (Pre-release) |
Mac OS X | mender-artifact 3.8.1 | mender-artifact master (Pre-release) |
Remember to add execute permission and ensure that the mender-artifact utility is in a directory that is specified in your PATH environment variable. Most systems automatically have /usr/local/bin
in your PATH so the following should allow proper execution and location of this binary.
sudo chmod +x mender-artifact
sudo cp mender-artifact /usr/local/bin/
Please refer to your host Operating System documentation for more details.
If you are using Mac OS X, note that using mender-artifact
with
disk image files (e.g.: *.sdimg
, *.img
, or others holding the storage
partitions) has limited functionality. Commands like
mender-artifact cat
or mender-artifact cp
will not work due to lack
of support for certain utilities on the Mac platform.
The Mender client runs on the device, checks for and installs software updates packaged as Mender Artifacts. See Client installation for more information about how to configure and use the Mender client.
You can install the Mender client in different ways depending on your preference.
Mender provides a convenience script available at get.mender.io that non-interactively installs the Mender client using the package manager. Users installing the Mender client this way, should be aware that:
root
privileges to run. Therefore, carefully examine the
script before executing it.Always examine scripts downloaded over the Internet before running them locally.
curl -fLsS https://get.mender.io -o get-mender.sh
# INSPECT get-mender.sh BEFORE PROCEEDING
sudo bash get-mender.sh
By default, the script installs the remote terminal extension plugin in addition to the client. If you do not want this feature you can provide additional arguments to the script specifying which packages you want to install. For example, the following will only install the Mender client:
curl -fLsS https://get.mender.io -o get-mender.sh
# INSPECT get-mender.sh BEFORE PROCEEDING
sudo bash get-mender.sh mender-client
Mender offers an experimental
version of the package repository. To use
the latest experimental version of Mender, run the script with an additional
flag -c experimental
. Do not use the experimental
repository for
production devices as these releases are not fully tested.
After installing the Mender client with get.mender.io,
the mender-client
package is maintained by the package manager. To upgrade the
Mender client, simply run
sudo apt-get update
sudo apt-get upgrade
To prevent the Mender client from upgrading when upgrading the rest of the
system, mark it to be held with sudo apt-mark hold mender-client
.
Updating mender this way doesn't provide a rollback mechanism in case of issues. For production devices always update mender as part of the full system update with A/B partitions.
Before installing the Mender client, you need to set up the Mender APT
repository. Afterwards, you can install and update the Mender client using the
apt
command line interface.
As of Mender 3.2.1 we deprecated the previous stable repository and stopped updating it. As of Mender 3.3 we removed it.
Please use https://downloads.mender.io/repos/debian debian/buster/stable main
and not
"https://downloads.mender.io/repos/debian stable main".
Please make sure you have the currently supported version of your choice in place and please
see below for all the possible options.
With this method, you will always install the latest released Mender components. If you need to install a specific version, or you want to stick to a specific minor release (e.g., to the latest LTS version), you can manually download the Debian packages from the APT repository pool.
apt
package index and install required dependencies. sudo apt-get update
sudo apt-get install --assume-yes \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
Add the official Mender GPG key to your trusted apt
keychain:
curl -fsSL https://downloads.mender.io/repos/debian/gpg | sudo tee /etc/apt/trusted.gpg.d/mender.asc
Inspect the GPG key fingerprint and verify that it matches
E6C8 5734 5575 F921 8396 5662 2407 2B80 A1B2 9B00
.
gpg --show-keys --with-fingerprint /etc/apt/trusted.gpg.d/mender.asc
pub rsa3072 2020-11-13 [SC] [expires: 2024-10-23]
E6C8 5734 5575 F921 8396 5662 2407 2B80 A1B2 9B00
uid Mender Team <mender@northern.tech>
sub rsa3072 2020-11-13 [E] [expires: 2024-10-23]
Add the Mender repository to your sources list by selecting the architecture matching your device.
First in order to make sure that there are no mender sources in '/etc/apt/sources.list' lingering from a previous install, run
sed -i.bak -e "\,https://downloads.mender.io/repos/debian,d" /etc/apt/sources.list
Then add the sources according to your Linux distribution
For Raspberry OS, use Debian distributions. To know which version is your device running,
do (. /etc/os-release && echo $VERSION_CODENAME)
echo "deb [arch=$(dpkg --print-architecture)] https://downloads.mender.io/repos/debian debian/bullseye/stable main" \
| sudo tee /etc/apt/sources.list.d/mender.list > /dev/null
echo "deb [arch=$(dpkg --print-architecture)] https://downloads.mender.io/repos/debian debian/buster/stable main" \
| sudo tee /etc/apt/sources.list.d/mender.list > /dev/null
echo "deb [arch=$(dpkg --print-architecture)] https://downloads.mender.io/repos/debian ubuntu/bionic/stable main" \
| sudo tee /etc/apt/sources.list.d/mender.list > /dev/null
echo "deb [arch=$(dpkg --print-architecture)] https://downloads.mender.io/repos/debian ubuntu/focal/stable main" \
| sudo tee /etc/apt/sources.list.d/mender.list > /dev/null
If you want the bleeding edge version of mender, you can use our
experimental
repository by replacing stable
with experimental
in
the above command. Do not use the experimental
repository in production
as these releases are not fully tested.
sudo apt-get update
sudo apt-get install mender-client
To prevent the Mender client from upgrading when upgrading the rest of the
system, mark it to be held with sudo apt-mark hold mender-client
.
You need two applications for any add-on to function: the Mender Client and Mender Connect. If you have used the express installation script, you already have both installed.
The easiest way to install Mender Connect on an existing device is by using the Mender APT repository. The other alternatives include: mender-convert integration for installation in the existing images, and Yocto projects for the installation in a Yocto Project environment.
To install mender-connect
using Mender APT repository, follow the instructions
for installing mender-client
using the APT
repository. After the final step, install
mender-connect
using the package manager:
sudo apt-get install mender-connect
The Remote Terminal does not require any items installed other than the Mender Client and Mender Connect.
The File Transfer does not require any items installed other than the Mender Client and Mender Connect.
Mender offers a configure extension (mender-configure
) to the Mender client
that enables managing device configuration. See the
add-on page for Mender Configure for
more information.
The easiest way to install Configure on an existing device is by using the Mender APT repository. See the add-on page for Mender Configure for more information for other installation alternatives.
To install mender-configure
using Mender APT repository, follow the
instructions for installing mender-client
using the APT
repository. After the final step, install
mender-configure
using the package manager:
sudo apt-get install mender-configure
The mender-cli
utility enables an easy interface to key use cases
of the Mender server API, such as uploading a Mender Artifact, from
the command line. See Server integration for
more information.
Follow the correct link according to your host platform to download mender-cli
:
Platform | Download link | |
---|---|---|
Linux | mender-cli 1.8.2 | mender-cli master (Pre-release) |
Mac OS X | mender-cli 1.8.2 | mender-cli master (Pre-release) |
Remember to add execute permission and ensure that the mender-cli utility is in a directory that is specified in your PATH environment variable. Most systems automatically have /usr/local/bin
in your PATH so the following should allow proper execution and location of this binary.
sudo chmod +x mender-cli
sudo cp mender-cli /usr/local/bin/
Please refer to your host Operating System documentation for more details.
Note: The Mender Monitor add-on package is required. See the Mender features page for an overview of all Mender plans and features.
Mender offers a Monitor add-on which enables monitoring your devices for events and anomalies.
The easiest way to install Monitor on an existing device is by using the Mender APT repository, see alternate installation methods on the add-on page for Mender Monitor.
To install mender-monitor
using the Mender Monitor Debian package, first
download it by running:
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-monitor/debian/1.2.1/mender-monitor_1.2.1-1%2Bdebian%2Bbuster_all.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-monitor/debian/1.2.1/mender-monitor_1.2.1-1%2Bdebian%2Bbuster_all.deb
Then install the package with:
sudo dpkg -i mender-monitor_1.2.1-1+debian+buster_all.deb || sudo apt --fix-broken -y install
If you have already installed the mender-monitor
package, as shown in
Installing Mender Monitor, the demo monitors can be installed
through the package:
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-monitor/debian/1.2.1/mender-monitor-demo_1.2.1-1%2Bdebian%2Bbuster_all.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-monitor/debian/1.2.1/mender-monitor-demo_1.2.1-1%2Bdebian%2Bbuster_all.deb
Then install the package with:
sudo dpkg -i mender-monitor-demo_1.2.1-1+debian+buster_all.deb
Mender Gateway is only available in the Mender Enterprise plan. See the Mender features page for an overview of all Mender plans and features.
Mender offers Mender Gateway which enables managing and deploying OTA updates to devices on the local network from a gateway device.
To install mender-gateway
using the Mender Gateway Debian package, first
download it by running:
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbullseye_armhf.deb
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbullseye_arm64.deb
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbullseye_amd64.deb
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbuster_armhf.deb
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbuster_arm64.deb
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbuster_amd64.deb
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bbionic_armhf.deb
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bbionic_arm64.deb
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bbionic_amd64.deb
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bfocal_armhf.deb
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bfocal_arm64.deb
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bfocal_amd64.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbullseye_armhf.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbullseye_arm64.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbullseye_amd64.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbuster_armhf.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbuster_arm64.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bdebian%2Bbuster_amd64.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bbionic_armhf.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bbionic_arm64.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bbionic_amd64.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bfocal_armhf.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bfocal_arm64.deb
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/debian/1.0.1/mender-gateway_1.0.1-1%2Bubuntu%2Bfocal_amd64.deb
Then install the package with:
sudo dpkg -i mender-gateway_*.deb
You should not use this package on production devices.
If you have already installed the mender-gateway
package, as shown in Installing Mender
Gateway, you can install demo content through the examples package. This will
install the following:
*.docker.mender.io
UpstreamServer
configured for hosted.mender.io
Download the Mender Gateway examples package from https://downloads.customer.mender.io/content/hosted/mender-gateway/examples/1.0.1/mender-gateway-1.0.1.tar and download the tarball to a known location on your local system using your hosted Mender username and password:
Set the following variables with your credentials:
HOSTED_MENDER_EMAIL=<your.email@example.com>
HOSTED_MENDER_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$HOSTED_MENDER_EMAIL" --password "$HOSTED_MENDER_PASSWORD" https://downloads.customer.mender.io/content/hosted/mender-gateway/examples/1.0.1/mender-gateway-examples-1.0.1.tar
Set the following variables with your credentials:
MENDER_ENTERPRISE_USER=<your.user>
MENDER_ENTERPRISE_PASSWORD=<yoursecurepassword>
And download it with:
wget --auth-no-challenge --user "$MENDER_ENTERPRISE_USER" --password "$MENDER_ENTERPRISE_PASSWORD" https://downloads.customer.mender.io/content/on-prem/mender-gateway/examples/1.0.1/mender-gateway-examples-1.0.1.tar
Then install the contents with:
sudo tar -C / --strip-components=2 -xvf mender-gateway-examples-1.0.1.tar
© 2024 Northern.tech AS