diff options
author | Jordan Augé <jordan.auge+fdio@cisco.com> | 2021-04-08 10:05:52 +0200 |
---|---|---|
committer | Jordan Aug� <jordan.auge+fdio@cisco.com> | 2021-04-26 13:55:15 +0000 |
commit | e2b9f02e5e1420ea96d0174d75a53d42f5837e00 (patch) | |
tree | 749d7fbf159fc5d01bf9b2ff2994674d56702c5a /ctrl/facemgr/config/facemgr.service | |
parent | a1a165c48c5422d9b302a6abec51e706f7cda934 (diff) |
[HICN-695] facemgr: add systemd service
Change-Id: I6b345944ce3fb4714832798e32ac840a162dc268
Signed-off-by: Jordan Augé <jordan.auge+fdio@cisco.com>
Diffstat (limited to 'ctrl/facemgr/config/facemgr.service')
-rw-r--r-- | ctrl/facemgr/config/facemgr.service | 24 |
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 |