We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The create-systemd-service rule allows for creating a system background service for a given program.
create-systemd-service
system
There is a usability issue where the path to the program must always be manually escaped, making it cumbersome to use:
bazel run @vaticle_dependencies//tool/util:create-systemd-service -- typedb -- "\/home\/grabl\/$GRABL_REPO\/dist\/typedb-all-linux\/typedb server"
It would be nice if we can just specify regular path and have the script perform the necessary escaping internally:
bazel run @vaticle_dependencies//tool/util:create-systemd-service -- \ typedb "/home/grabl/$GRABL_REPO/dist/typedb-all-linux/typedb server"
The text was updated successfully, but these errors were encountered:
lolski
No branches or pull requests
The
create-systemd-service
rule allows for creating asystem
background service for a given program.There is a usability issue where the path to the program must always be manually escaped, making it cumbersome to use:
It would be nice if we can just specify regular path and have the script perform the necessary escaping internally:
The text was updated successfully, but these errors were encountered: