blob: b44a96dcdc7f903b572c86b2f88b65dbe68f8883 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/sbin/openrc-run
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
after net
}
start() {
ebegin "Starting ROS server roscore"
start-stop-daemon --start \
--user ros --group ros \
-m --pidfile /var/run/roscore.pid \
--exec "/usr/bin/roscore" --background
eend $? "Failed to start roscore"
}
stop() {
ebegin "Stopping roscore"
start-stop-daemon --stop \
--pidfile /var/run/roscore.pid \
--exec "/usr/bin/roscore"
eend $? "Failed to stop roscore"
}
|