diff --git a/openbsc/contrib/systemd/osmo-bsc-mgcp.service b/openbsc/contrib/systemd/osmo-bsc-mgcp.service new file mode 100644 index 00000000..b5e8ec3d --- /dev/null +++ b/openbsc/contrib/systemd/osmo-bsc-mgcp.service @@ -0,0 +1,9 @@ +[Unit] +Description=OpenBSC MGCP + +[Service] +Type=simple +Restart=always +ExecStart=/usr/bin/osmo-bsc_mgcp -c /etc/osmocom/osmo-bsc-mgcp.cfg +Restart=always +RestartSec=2 diff --git a/openbsc/contrib/systemd/osmo-bsc.service b/openbsc/contrib/systemd/osmo-bsc.service new file mode 100644 index 00000000..772d472a --- /dev/null +++ b/openbsc/contrib/systemd/osmo-bsc.service @@ -0,0 +1,10 @@ +[Unit] +Description=OpenBSC BSC +Requires=osmo-bsc-mgcp.service + +[Service] +Type=simple +Restart=always +ExecStart=/usr/bin/osmo-bsc -c /etc/osmocom/osmo-bsc.cfg -s +Restart=always +RestartSec=2 diff --git a/openbsc/contrib/systemd/osmo-nitb.service b/openbsc/contrib/systemd/osmo-nitb.service new file mode 100644 index 00000000..203aeb15 --- /dev/null +++ b/openbsc/contrib/systemd/osmo-nitb.service @@ -0,0 +1,9 @@ +[Unit] +Description=OpenBSC Network In the Box (NITB) + +[Service] +Type=simple +Restart=always +ExecStart=/usr/bin/osmo-nitb -s -C -c /etc/osmocom/osmo-nitb.cfg -l /var/lib/osmocom/hlr.sqlite3 +Restart=always +RestartSec=2