aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/systemd
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2019-05-23 17:59:12 +0200
committerDaniel Willmann <dwillmann@sysmocom.de>2019-05-29 17:35:57 +0200
commit34711de016d0e074200c543e432fa0fa153d9d1a (patch)
tree3220b981e6c6f2b70440a9a489b4139547b4e267 /contrib/systemd
parent1e96e31c106aed9192ed9ea78ff1a711464390d7 (diff)
osmo-bts-oc2g: Fix status LED responsibilities
osmo-bts-oc2g no longer modifies the status LED and instead leaves that to the bts manager. The service file now also creates a directory in /var/run needed for osmo-bts to communicate with oc2gbts-mgr. This status file is used by oc2gbts-mgr to figure out when the bts is operational. Related: SYS#4493 Change-Id: Ifae634c6c2ecec7d32298c0f266f91f3e81308f5
Diffstat (limited to 'contrib/systemd')
-rw-r--r--contrib/systemd/osmo-bts-oc2g.service5
1 files changed, 1 insertions, 4 deletions
diff --git a/contrib/systemd/osmo-bts-oc2g.service b/contrib/systemd/osmo-bts-oc2g.service
index 7b0168ad..860aeb1f 100644
--- a/contrib/systemd/osmo-bts-oc2g.service
+++ b/contrib/systemd/osmo-bts-oc2g.service
@@ -3,11 +3,8 @@ Description=osmo-bts for OC-2G
[Service]
Type=simple
-ExecStartPre=/bin/sh -c 'echo 1 > /sys/class/leds/usr0/brightness'
-ExecStartPre=/bin/sh -c 'echo 1 > /sys/class/leds/usr1/brightness'
ExecStart=/usr/bin/osmo-bts-oc2g -s -c /etc/osmocom/osmo-bts-oc2g.cfg -M
-ExecStopPost=/bin/sh -c 'echo 1 > /sys/class/leds/usr0/brightness'
-ExecStopPost=/bin/sh -c 'echo 0 > /sys/class/leds/usr1/brightness'
+RuntimeDirectory=osmo-bts
Restart=always
RestartSec=2
RestartPreventExitStatus=1