6ed0e6ba23
This patch add mender, an open source over-the-air (OTA) software updater for embedded Linux devices. Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com> [Thomas: - add entry to DEVELOPERS file. - drop dependency on systemd, since there is really no build dependency, it's just that the init script integration is missing. - add Config.in comment about the thread dependency - don't override install commands, otherwise the mender binary is not installed, and instead use a post install target hook.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16 lines
333 B
Desktop File
16 lines
333 B
Desktop File
[Unit]
|
|
Description=Mender OTA update service
|
|
After=systemd-resolved.service
|
|
|
|
[Service]
|
|
Type=idle
|
|
User=root
|
|
Group=root
|
|
ExecStartPre=/bin/mkdir -p -m 0700 /data/mender
|
|
ExecStartPre=/bin/ln -sf /etc/mender/tenant.conf /var/lib/mender/authtentoken
|
|
ExecStart=/usr/bin/mender -daemon
|
|
Restart=on-abort
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|