-
Notifications
You must be signed in to change notification settings - Fork 231
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
Boot script name is different after tarring #709
Comments
would it make sense to just run an additional copy + rename on the boot file to make a non-tarred directory upgradable? It's a little pain point we've found the hard way with teams at work where all of a sudden your whole test cycle for hot code loading requires bundling tarballs and unbundling them, rather than just playing around with the existing commands people were used to. |
Yea, it might be, that is what Jose did for mix release. I was hoping to hear back from someone on the OTP team first. |
Pinging @garazdawi :). Do you have any background on this or know who I should ping in the Jira issue or here? |
It is Siri that would know. She's been super overloaded lately though, which is probably why she's not looked at the jira ticket yet. |
@garazdawi ah ok, thanks. I won't try pinging her then. |
Now in master, for relx 4.0.0, the release will always copy the boot script to |
Currently systools
make_tar
renames the boot script tostart.boot
fromrelname.boot
. It can be confusing that unless you build a tarball and unpack it you won't be able to do certain thing like install/upgrade withrelease_handler
since it requires the name bestart
.I created an issue in the OTP bug tracker: https://bugs.erlang.org/browse/ERL-859 It has been a couple months with no response so I'll have to try poking people to get an answer.
One option is to do nothing. Or do what Jose did in
mix release
and always rename tostart.boot
. This would mean no longer usingsystools:make_tar
when runningtar
but that isn't much of a loss since we already have to unpack the tar and repackage it to include overlay shit.I guess another would be to find out if OTP team would accept a patch to
systools
to not only support the boot file always being namedstart
but also to have a way to specify the overlay files to include when runningmake_tar
so we don't have to repackage it.The text was updated successfully, but these errors were encountered: