You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ros/roslaunch/files/roscore.initd

25 lines
533 B

#!/sbin/openrc-run
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
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"
}