mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-14 13:45:53 +00:00
Deb installservice error on Ubuntu #24
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @danielmoncada on GitHub (May 3, 2018).
Using InstallService, you get the following error message when it tries to run:
Too few arguments.It's because the following command is not valid:
pkg.PostInstallScript += $"systemctl reload\n";Should this be updated to
pkg.PostInstallScript += $"systemctl daemon-reload\n";?@qmfrederik commented on GitHub (May 4, 2018):
Yup, looks like it. Do you want to create a PR for this?
@danielmoncada commented on GitHub (May 4, 2018):
@qmfrederik sure I'll create one. thanks