Created
April 14, 2017 02:23
-
-
Save proegssilb/335f27a9c6500f839e69ba21063d7d5f to your computer and use it in GitHub Desktop.
Quicky hack demonstrating a rough approximation of a systemd boot script for RocketMap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=rocketmap | |
[Service] | |
ExecStart=~/rocketmap.sh | |
[Install] | |
WantedBy=multiuser.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note that with how simple this is, you conceivably could skip the bash script; just pour the appropriate big, long command into ExecStart and be done with it.
Change the
ExecStart
bit to match where you put the script you wrote up to run RocketMap for you.