aboutsummaryrefslogtreecommitdiffstats
path: root/ctrl/facemgr/config/facemgr.service
diff options
context:
space:
mode:
authorMauro Sardara <msardara@cisco.com>2021-05-17 09:41:49 +0000
committerGerrit Code Review <gerrit@fd.io>2021-05-17 09:41:49 +0000
commit0982497d26806bad1a069766ac46a4f238d850ab (patch)
tree258b44677913b500c59fafaf46ab9d390328f757 /ctrl/facemgr/config/facemgr.service
parent9b1c12ef3312e4f7355b2218aaf24773b7d541ff (diff)
parente2b9f02e5e1420ea96d0174d75a53d42f5837e00 (diff)
Merge "[HICN-695] facemgr: add systemd service"
Diffstat (limited to 'ctrl/facemgr/config/facemgr.service')
-rw-r--r--ctrl/facemgr/config/facemgr.service24
1 files changed, 24 insertions, 0 deletions
diff --git a/ctrl/facemgr/config/facemgr.service b/ctrl/facemgr/config/facemgr.service
new file mode 100644
index 000000000..0f9e818ea
--- /dev/null
+++ b/ctrl/facemgr/config/facemgr.service
@@ -0,0 +1,24 @@
+# Copyright (c) 2017-2019 Cisco and/or its affiliates.
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at:
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+[Unit]
+Description=hICN face manager
+
+[Service]
+Environment=CONFIG=/etc/facemgr/facemgr.conf
+Environment=LOGFILE=/var/log/facemgr.log
+ExecStart=/usr/bin/facemgr -c ${CONFIG} 1>${LOGFILE} 2>&1
+Restart=on-failure
+
+[Install]
+WantedBy=multi-user.target