summaryrefslogtreecommitdiffstats
path: root/systemd
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2024-04-01 19:47:05 -0400
committerScott Murray <scott.murray@konsulko.com>2024-04-04 05:14:20 -0400
commite437300d0b5c20114ea1843dbf00815304af3f27 (patch)
tree34e7d1630569f4706a1c4fd389ba03d520641f35 /systemd
parent52dbc88ee006d4c7e9cab625d4a976919b86e4ac (diff)
Initial check-in of proxy implementation. See README.md for build and configuration information, as well as feature implementation status (TODOs section). Bug-AGL: SPEC-5109 Change-Id: I681c693a73f29e284670be977e1a460883f27769 Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'systemd')
-rw-r--r--systemd/agl-vss-proxy.service11
-rw-r--r--systemd/meson.build5
2 files changed, 16 insertions, 0 deletions
diff --git a/systemd/agl-vss-proxy.service b/systemd/agl-vss-proxy.service
new file mode 100644
index 0000000..1839543
--- /dev/null
+++ b/systemd/agl-vss-proxy.service
@@ -0,0 +1,11 @@
+[Unit]
+Requires=kuksa-databroker.service
+After=kuksa-databroker.service
+
+[Service]
+Type=simple
+ExecStart=/usr/sbin/agl-vss-proxy
+Restart=on-failure
+
+[Install]
+WantedBy=default.target
diff --git a/systemd/meson.build b/systemd/meson.build
new file mode 100644
index 0000000..e299741
--- /dev/null
+++ b/systemd/meson.build
@@ -0,0 +1,5 @@
+systemd_dep = dependency('systemd')
+
+systemd_system_unit_dir = systemd_dep.get_pkgconfig_variable('systemdsystemunitdir')
+
+install_data('agl-vss-proxy.service', install_dir : systemd_system_unit_dir)