Add systemd service for OpenPOWER Dump Monitor

This commit introduces a new systemd service for the OpenPOWER Dump
Monitor. The service is responsible for monitoring and handling dump
collection on OpenPOWER systems.

Key changes:
- Added `openpower-dump-monitor.service` to manage the OpenPOWER Dump
  Monitor process.
- Updated the meson build system to install the new service file and
  create necessary symlinks.

Change-Id: Ie4495631c4dbf399e4acbe7bfd47c7b11bc43fc3
Signed-off-by: Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>
diff --git a/dump/dist/openpower-dump-monitor.service b/dump/dist/openpower-dump-monitor.service
new file mode 100644
index 0000000..c528c38
--- /dev/null
+++ b/dump/dist/openpower-dump-monitor.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=OpenPOWER Dump Monitor
+Wants=obmc-host-start-pre@0.target
+Before=obmc-host-start-pre@0.target
+After=xyz.openbmc_project.Dump.Manager.service
+
+[Service]
+ExecStart=/usr/bin/openpower-dump-monitor
+Restart=always
+Type=simple
+
+[Install]
+# WantedBy=obmc-host-startmin@0.target
\ No newline at end of file