-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
Package Builder Fails Under Ubuntu 18.04 #31
Comments
for my machine USER= note the :1 not the :0 |
There is no reliable way to determine which user(s) the service should start for, so don't try to guess: just show instructions to do it manually. Fixes MohamadSaada#31
The If you were dead-set on using the USER="$(who -m | cut -f1 -d' ' )" Really though, there's no reliable way to guess who this should be installed for. It should be done manually. I'm submitting a quick PR now to fix this. |
I tried to build the deb again and this line appears to break the build as it now returns nothing:
USER=`who | grep ':0' | grep -o '^\w*' | head -n1`
when this runs the
USER
variable remains empty which causes the package build to fail.I modified mine to just set
Which got it to work for me and I was able to install. See issue #28 for help with starting the service in 18.x by the way.
The text was updated successfully, but these errors were encountered: