mirror of
https://github.com/sileht/bird-lg.git
synced 2024-11-04 23:24:42 +01:00
Merge pull request #32 from zorun/init_systemd
Add example systemd unit files, courtesy of ARN
This commit is contained in:
commit
1923aeea9d
18
init/README.md
Normal file
18
init/README.md
Normal 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>
|
31
init/bird-lg-proxy.service
Normal file
31
init/bird-lg-proxy.service
Normal 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
|
32
init/bird-lg-webservice.service
Normal file
32
init/bird-lg-webservice.service
Normal 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
|
||||
|
Loading…
Reference in a new issue