From 605d7e4b81689b1b21f3b0f7a0d9dd6a95f8001b Mon Sep 17 00:00:00 2001 From: Reuben Miller Date: Mon, 13 Nov 2023 18:13:49 +0100 Subject: [PATCH] add systemd service definitions for usage within yocto --- ci/build.sh | 1 + packages/systemd/nfpm.yaml | 52 +++++++++++++++++++ services/generate.sh | 12 ++++- services/systemd/service.template | 14 +++++ .../system/c8y-firmware-plugin.service | 14 +++++ services/systemd/system/tedge-agent.service | 14 +++++ .../system/tedge-configuration-plugin.service | 14 +++++ .../systemd/system/tedge-log-plugin.service | 14 +++++ .../systemd/system/tedge-mapper-aws.service | 14 +++++ .../systemd/system/tedge-mapper-az.service | 14 +++++ .../systemd/system/tedge-mapper-c8y.service | 14 +++++ .../system/tedge-mapper-collectd.service | 14 +++++ 12 files changed, 190 insertions(+), 1 deletion(-) create mode 100644 packages/systemd/nfpm.yaml create mode 100644 services/systemd/service.template create mode 100755 services/systemd/system/c8y-firmware-plugin.service create mode 100755 services/systemd/system/tedge-agent.service create mode 100755 services/systemd/system/tedge-configuration-plugin.service create mode 100755 services/systemd/system/tedge-log-plugin.service create mode 100755 services/systemd/system/tedge-mapper-aws.service create mode 100755 services/systemd/system/tedge-mapper-az.service create mode 100755 services/systemd/system/tedge-mapper-c8y.service create mode 100755 services/systemd/system/tedge-mapper-collectd.service diff --git a/ci/build.sh b/ci/build.sh index ded210c..e249951 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -123,6 +123,7 @@ if [ -n "$OUTPUT_DIR" ] && [ "$OUTPUT_DIR" != "." ] && [ "$OUTPUT_DIR" != ".." ] fi # Build packages for each init system +build ./packages/systemd/nfpm.yaml "$OUTPUT_DIR" build ./packages/sysvinit/nfpm.yaml "$OUTPUT_DIR" build ./packages/sysvinit-yocto/nfpm.yaml "$OUTPUT_DIR" build ./packages/openrc/nfpm.yaml "$OUTPUT_DIR" diff --git a/packages/systemd/nfpm.yaml b/packages/systemd/nfpm.yaml new file mode 100644 index 0000000..c8707d4 --- /dev/null +++ b/packages/systemd/nfpm.yaml @@ -0,0 +1,52 @@ +# yaml-language-server: $schema=https://nfpm.goreleaser.com/static/schema.json +--- +name: tedge-systemd +arch: all +platform: linux +version: ${SEMVER} +release: ${RELEASE} +section: misc +priority: optional +maintainer: thin-edge.io +description: thin-edge.io systemd service definitions +vendor: thin-edge.io +homepage: https://github.com/thin-edge/thin-edge.io +license: Apache License 2.0 +apk: + # Use noarch instead of "all" + arch: noarch +contents: + - src: ./services/systemd/system/* + dst: /lib/systemd/system/ + file_info: + mode: 0644 + + - src: ./services/tedgectl + dst: /usr/bin/ + file_info: + mode: 0755 + + - src: ./services/tedgectl_env + dst: /etc/tedgectl/env + type: config + file_info: + mode: 0644 + + # required otherwise the original dir permissions are overridden + - dst: /etc/tedge + type: dir + file_info: + owner: tedge + mode: 0775 + + # exclude as thin-edge.io support systemd out of the box + # - src: ./services/system.toml + # dst: /etc/tedge/system.toml + # type: config + # file_info: + # owner: tedge + # mode: 0644 + +scripts: + postinstall: ./packages/_scripts/postinstall.sh + preremove: ./packages/_scripts/preremove.sh diff --git a/services/generate.sh b/services/generate.sh index 4d31612..e0b5679 100755 --- a/services/generate.sh +++ b/services/generate.sh @@ -48,6 +48,13 @@ generate_openrc() { chmod a+x "openrc/init.d/$NAME" } +generate_systemd() { + mkdir -p systemd/system + echo "[sysvinit] Generating service file: $NAME" + execute_template "systemd/service.template" > "systemd/system/$NAME.service" + chmod a+x "systemd/system/$NAME.service" +} + generate_sysvinit() { mkdir -p sysvinit/init.d echo "[sysvinit] Generating service file: $NAME" @@ -125,7 +132,7 @@ do SHORTNAME="${SHORTNAME:-$COMMAND}" if [ -z "$TEMPLATE_FOR" ]; then - TEMPLATE_FOR="openrc sysvinit sysvinit s6_overlay runit supervisord" + TEMPLATE_FOR="systemd openrc sysvinit sysvinit s6_overlay runit supervisord" fi # Validate mandatory arguments @@ -134,6 +141,9 @@ do for template_name in $TEMPLATE_FOR; do case "$template_name" in + systemd) + generate_systemd + ;; openrc) generate_openrc ;; diff --git a/services/systemd/service.template b/services/systemd/service.template new file mode 100644 index 0000000..e99f430 --- /dev/null +++ b/services/systemd/service.template @@ -0,0 +1,14 @@ +[Unit] +Description=$DESCRIPTION +After=syslog.target network.target mosquitto.service + +[Service] +User=$COMMAND_USER +RuntimeDirectory=$NAME +ExecStart=$COMMAND $COMMAND_ARGS +Restart=on-failure +RestartPreventExitStatus=255 +RestartSec=5 + +[Install] +WantedBy=multi-user.target diff --git a/services/systemd/system/c8y-firmware-plugin.service b/services/systemd/system/c8y-firmware-plugin.service new file mode 100755 index 0000000..9aa0b2e --- /dev/null +++ b/services/systemd/system/c8y-firmware-plugin.service @@ -0,0 +1,14 @@ +[Unit] +Description=Thin-edge device firmware management for Cumulocity +After=syslog.target network.target mosquitto.service + +[Service] +User=tedge +RuntimeDirectory=c8y-firmware-plugin +ExecStart=/usr/bin/c8y-firmware-plugin +Restart=on-failure +RestartPreventExitStatus=255 +RestartSec=5 + +[Install] +WantedBy=multi-user.target diff --git a/services/systemd/system/tedge-agent.service b/services/systemd/system/tedge-agent.service new file mode 100755 index 0000000..1975b6e --- /dev/null +++ b/services/systemd/system/tedge-agent.service @@ -0,0 +1,14 @@ +[Unit] +Description=tedge-agent is a thin-edge.io component to support operations +After=syslog.target network.target mosquitto.service + +[Service] +User=tedge +RuntimeDirectory=tedge-agent +ExecStart=/usr/bin/tedge-agent +Restart=on-failure +RestartPreventExitStatus=255 +RestartSec=5 + +[Install] +WantedBy=multi-user.target diff --git a/services/systemd/system/tedge-configuration-plugin.service b/services/systemd/system/tedge-configuration-plugin.service new file mode 100755 index 0000000..6a95750 --- /dev/null +++ b/services/systemd/system/tedge-configuration-plugin.service @@ -0,0 +1,14 @@ +[Unit] +Description=Thin-edge device configuration management +After=syslog.target network.target mosquitto.service + +[Service] +User=root +RuntimeDirectory=tedge-configuration-plugin +ExecStart=/usr/bin/tedge-configuration-plugin +Restart=on-failure +RestartPreventExitStatus=255 +RestartSec=5 + +[Install] +WantedBy=multi-user.target diff --git a/services/systemd/system/tedge-log-plugin.service b/services/systemd/system/tedge-log-plugin.service new file mode 100755 index 0000000..53d9bdb --- /dev/null +++ b/services/systemd/system/tedge-log-plugin.service @@ -0,0 +1,14 @@ +[Unit] +Description=thin-edge.io log file retriever +After=syslog.target network.target mosquitto.service + +[Service] +User=root +RuntimeDirectory=tedge-log-plugin +ExecStart=/usr/bin/tedge-log-plugin +Restart=on-failure +RestartPreventExitStatus=255 +RestartSec=5 + +[Install] +WantedBy=multi-user.target diff --git a/services/systemd/system/tedge-mapper-aws.service b/services/systemd/system/tedge-mapper-aws.service new file mode 100755 index 0000000..59f4802 --- /dev/null +++ b/services/systemd/system/tedge-mapper-aws.service @@ -0,0 +1,14 @@ +[Unit] +Description=tedge-mapper-aws checks Thin Edge JSON measurements and forwards to AWS IoT Hub +After=syslog.target network.target mosquitto.service + +[Service] +User=tedge +RuntimeDirectory=tedge-mapper-aws +ExecStart=/usr/bin/tedge-mapper aws +Restart=on-failure +RestartPreventExitStatus=255 +RestartSec=5 + +[Install] +WantedBy=multi-user.target diff --git a/services/systemd/system/tedge-mapper-az.service b/services/systemd/system/tedge-mapper-az.service new file mode 100755 index 0000000..d9d44cf --- /dev/null +++ b/services/systemd/system/tedge-mapper-az.service @@ -0,0 +1,14 @@ +[Unit] +Description=tedge-mapper-az checks Thin Edge JSON measurements and forwards to Azure IoT Hub +After=syslog.target network.target mosquitto.service + +[Service] +User=tedge +RuntimeDirectory=tedge-mapper-az +ExecStart=/usr/bin/tedge-mapper az +Restart=on-failure +RestartPreventExitStatus=255 +RestartSec=5 + +[Install] +WantedBy=multi-user.target diff --git a/services/systemd/system/tedge-mapper-c8y.service b/services/systemd/system/tedge-mapper-c8y.service new file mode 100755 index 0000000..017d0f0 --- /dev/null +++ b/services/systemd/system/tedge-mapper-c8y.service @@ -0,0 +1,14 @@ +[Unit] +Description=tedge-mapper-c8y converts Thin Edge JSON measurements to Cumulocity JSON format +After=syslog.target network.target mosquitto.service + +[Service] +User=tedge +RuntimeDirectory=tedge-mapper-c8y +ExecStart=/usr/bin/tedge-mapper c8y +Restart=on-failure +RestartPreventExitStatus=255 +RestartSec=5 + +[Install] +WantedBy=multi-user.target diff --git a/services/systemd/system/tedge-mapper-collectd.service b/services/systemd/system/tedge-mapper-collectd.service new file mode 100755 index 0000000..b7823a1 --- /dev/null +++ b/services/systemd/system/tedge-mapper-collectd.service @@ -0,0 +1,14 @@ +[Unit] +Description=tedge-mapper-collectd converts Thin Edge JSON measurements to Cumulocity JSON format +After=syslog.target network.target mosquitto.service + +[Service] +User=tedge +RuntimeDirectory=tedge-mapper-collectd +ExecStart=/usr/bin/tedge-mapper collectd +Restart=on-failure +RestartPreventExitStatus=255 +RestartSec=5 + +[Install] +WantedBy=multi-user.target