Add example systemd unit files, courtesy of ARN

This commit is contained in:
Baptiste Jonglez 2018-05-25 21:10:55 +02:00
parent a3babe00d9
commit 4f4c903c05
3 changed files with 81 additions and 0 deletions

18
init/README.md Normal file
View File

@ -0,0 +1,18 @@
# bird-lg init
Systemd unit files for the bird-lg webservice, and for the proxy service running on routers.
You need to adapt the exact command used to start the service (`ExecStart`) and the `User`
under which it should run. Don't run the services as root!
## Installation
Copy the init file under `/etc/systemd/system/` and run:
systemctl daemon-reload
systemctl start bird-lg-proxy
systemctl enable bird-lg-proxy
## Credits
Adapted from <http://gitlab.netlib.re/arn/arn-confs/tree/master/routing/looking-glass>

View File

@ -0,0 +1,31 @@
# Copyright (C) 2015-2018 Alsace Réseau Neutre
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Debian GNU/Linux: store this in /etc/systemd/system/
[Unit]
Description=BIRD Looking-Glass proxy
After=bird.service bird6.service
[Service]
Type=simple
ExecStart=/usr/local/lookingglass/lgproxy.py
User=lgproxy
Restart=on-failure
[Install]
WantedBy=multi-user.target

View File

@ -0,0 +1,32 @@
# Copyright (C) 2015-2018 Alsace Réseau Neutre
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Debian GNU/Linux: store this in /etc/systemd/system/
[Unit]
Description=BIRD Looking-Glass service
After=apache2.service
[Service]
Type=simple
User=lookingglass
ExecStart=/usr/local/lookingglass/lg.py
Restart=on-failure
[Install]
WantedBy=multi-user.target