aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2014-08-20 15:13:56 +0200
committerDaniel Willmann <daniel@totalueberwachung.de>2014-08-21 10:19:50 +0200
commit0e167fc9740793cf4a3c82747919146073255486 (patch)
treea690b79ba3d02ab11becf1066a9029b6a62dc3e1
parent248b38539da2d78ec626265702b474d36b0aa012 (diff)
systemd: Add Install section to service files
That way the services can be enabled with > systemctl enable <service>
-rw-r--r--openbsc/contrib/systemd/osmo-bsc-mgcp.service3
-rw-r--r--openbsc/contrib/systemd/osmo-bsc.service3
-rw-r--r--openbsc/contrib/systemd/osmo-nitb.service3
-rw-r--r--openbsc/contrib/systemd/osmo-sgsn.service3
4 files changed, 12 insertions, 0 deletions
diff --git a/openbsc/contrib/systemd/osmo-bsc-mgcp.service b/openbsc/contrib/systemd/osmo-bsc-mgcp.service
index 7fa2ec0a9..c040e6078 100644
--- a/openbsc/contrib/systemd/osmo-bsc-mgcp.service
+++ b/openbsc/contrib/systemd/osmo-bsc-mgcp.service
@@ -6,3 +6,6 @@ Type=simple
Restart=always
ExecStart=/usr/bin/osmo-bsc_mgcp -s -c /etc/osmocom/osmo-bsc-mgcp.cfg
RestartSec=2
+
+[Install]
+WantedBy=multi-user.target
diff --git a/openbsc/contrib/systemd/osmo-bsc.service b/openbsc/contrib/systemd/osmo-bsc.service
index deaf12312..eb6cacbd3 100644
--- a/openbsc/contrib/systemd/osmo-bsc.service
+++ b/openbsc/contrib/systemd/osmo-bsc.service
@@ -7,3 +7,6 @@ Type=simple
Restart=always
ExecStart=/usr/bin/osmo-bsc -c /etc/osmocom/osmo-bsc.cfg -s
RestartSec=2
+
+[Install]
+WantedBy=multi-user.target
diff --git a/openbsc/contrib/systemd/osmo-nitb.service b/openbsc/contrib/systemd/osmo-nitb.service
index a9d5d8cf9..377497ee5 100644
--- a/openbsc/contrib/systemd/osmo-nitb.service
+++ b/openbsc/contrib/systemd/osmo-nitb.service
@@ -6,3 +6,6 @@ Type=simple
Restart=always
ExecStart=/usr/bin/osmo-nitb -s -C -c /etc/osmocom/osmo-nitb.cfg -l /var/lib/osmocom/hlr.sqlite3
RestartSec=2
+
+[Install]
+WantedBy=multi-user.target
diff --git a/openbsc/contrib/systemd/osmo-sgsn.service b/openbsc/contrib/systemd/osmo-sgsn.service
index afd0f40d1..674d78656 100644
--- a/openbsc/contrib/systemd/osmo-sgsn.service
+++ b/openbsc/contrib/systemd/osmo-sgsn.service
@@ -6,3 +6,6 @@ Type=simple
Restart=always
ExecStart=/usr/bin/osmo-sgsn -c /etc/osmocom/osmo-sgsn.cfg
RestartSec=2
+
+[Install]
+WantedBy=multi-user.target