control: Install service files from repo
Install the appropriate service files based on which method of
configuration of fan control is used (JSON vs YAML). The YAML based
service files reflect what was installed by the recipe and JSON based
only requires the fan control service to be started at
multi-user.target.
Change-Id: I35575c6cb33aa7050530f0085db82b4cc6a92817
Signed-off-by: Matthew Barth <msbarth@us.ibm.com>
diff --git a/configure.ac b/configure.ac
index d0e8b50..fca81d5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -161,6 +161,7 @@
# Set config flag for runtime json usage
AC_DEFINE([CONTROL_USE_JSON], [1], [Fan control use runtime json configuration])
AC_MSG_NOTICE([Fan control json configuration usage enabled])
+ AC_CONFIG_FILES([control/service_files/json/phosphor-fan-control@.service])
],
[
# Add optional yaml file arguments
@@ -198,6 +199,9 @@
-z $FAN_ZONE_YAML_FILE \
-e $ZONE_EVENTS_YAML_FILE \
-c $ZONE_CONDITIONS_YAML_FILE"])
+
+ AC_CONFIG_FILES([control/service_files/yaml/phosphor-fan-control-init@.service
+ control/service_files/yaml/phosphor-fan-control@.service])
])
AC_CONFIG_FILES([control/Makefile])
])
diff --git a/control/Makefile.am b/control/Makefile.am
index 45ffc96..7510e1e 100644
--- a/control/Makefile.am
+++ b/control/Makefile.am
@@ -4,6 +4,17 @@
-I${srcdir}/json/actions \
-I${srcdir}/json/triggers
+systemdsystemunit_DATA=
+
+if WANT_JSON_CONTROL
+systemdsystemunit_DATA += \
+ service_files/json/phosphor-fan-control@.service
+else
+systemdsystemunit_DATA += \
+ service_files/yaml/phosphor-fan-control@.service \
+ service_files/yaml/phosphor-fan-control-init@.service
+endif
+
bin_PROGRAMS = \
phosphor-fan-control
diff --git a/control/service_files/json/phosphor-fan-control@.service.in b/control/service_files/json/phosphor-fan-control@.service.in
new file mode 100644
index 0000000..9b305cd
--- /dev/null
+++ b/control/service_files/json/phosphor-fan-control@.service.in
@@ -0,0 +1,6 @@
+[Unit]
+Description=Phosphor Fan Control Daemon
+
+[Service]
+Restart=on-failure
+ExecStart=@BINDIR@/phosphor-fan-control
diff --git a/control/service_files/yaml/phosphor-fan-control-init@.service.in b/control/service_files/yaml/phosphor-fan-control-init@.service.in
new file mode 100644
index 0000000..d3563a5
--- /dev/null
+++ b/control/service_files/yaml/phosphor-fan-control-init@.service.in
@@ -0,0 +1,13 @@
+[Unit]
+Description=Phosphor Fan Control Initialization
+Wants=obmc-power-on@%i.target
+After=obmc-power-on@%i.target
+Conflicts=obmc-chassis-powered-off@%i.target
+
+[Service]
+Restart=on-failure
+ExecStart=@BINDIR@/phosphor-fan-control --init
+SyslogIdentifier=phosphor-fan-control
+
+[Install]
+WantedBy=obmc-chassis-poweron@%i.target
diff --git a/control/service_files/yaml/phosphor-fan-control@.service.in b/control/service_files/yaml/phosphor-fan-control@.service.in
new file mode 100644
index 0000000..9f7e73a
--- /dev/null
+++ b/control/service_files/yaml/phosphor-fan-control@.service.in
@@ -0,0 +1,11 @@
+[Unit]
+Description=Phosphor Fan Control Daemon
+Conflicts=obmc-chassis-powered-off@%i.target
+
+[Service]
+Restart=on-failure
+ExecStart=@BINDIR@/phosphor-fan-control --control
+SyslogIdentifier=phosphor-fan-control
+
+[Install]
+RequiredBy=obmc-fan-control-ready@%i.target