├── .travis.yml ├── CHANGELOG.rst ├── CMakeLists.txt ├── README.md ├── debian └── install ├── doc ├── CHANGELOG.rst ├── conf.py └── index.rst ├── env-hooks └── 00.environment.sh ├── package.xml ├── rosdoc.yaml └── user ├── roscore.service ├── roscorelaunch@.service └── roslaunch@.service /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/README.md -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/debian/install -------------------------------------------------------------------------------- /doc/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/doc/CHANGELOG.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/doc/index.rst -------------------------------------------------------------------------------- /env-hooks/00.environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/env-hooks/00.environment.sh -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/package.xml -------------------------------------------------------------------------------- /rosdoc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/rosdoc.yaml -------------------------------------------------------------------------------- /user/roscore.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/user/roscore.service -------------------------------------------------------------------------------- /user/roscorelaunch@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/user/roscorelaunch@.service -------------------------------------------------------------------------------- /user/roslaunch@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucidOne/robot_systemd/HEAD/user/roslaunch@.service --------------------------------------------------------------------------------