-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
amazon-init: run userdata as a script if it starts with #! #67345
base: master
Are you sure you want to change the base?
Conversation
Thank you for your contributions.
|
This still seems like a nice-to-have feature. |
I marked this as stale due to inactivity. → More info |
This still seems like a nice-to-have feature. |
chmod a+x "$userData" | ||
exec "$userData" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason you can't do something like:
exec $SHELL "$userData"
Avoiding the chmod
step.
BTW, is this exec
intentional? It seems it will skip the rest of the script.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now looking at the rest of the module, it kinda makes more sense. But I don't know if I like this "magic" behavior. I would much prefer a explicit approach (like having an option with an enum that you could pass a indicating if userData is a bash script, user expression, etc).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have zero context about it, probably someone that uses amazon-init
could help more with?
Performs as expected. This is a good escape hatch, also helpful with flakes. |
exec {fd}< "$fn" | ||
read -r -n 2 -u "$fd" magic | ||
exec {fd}<&- | ||
if [[ "$magic" =~ \#! ]]; then return 0; else return 1; fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if [[ "$magic" =~ \#! ]]; then return 0; else return 1; fi | |
if [[ "$magic" =~ \#! ]]; then | |
return 0 | |
else | |
return 1 | |
fi |
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: tomberek <tomberek@users.noreply.github.com>
The proposed changes all look sensible to me. I took the implementation from elsewhere in nixpkgs (currently in stdenv) without checking the details. I've committed the suggested changes here through github. |
Still thinking this would be helpful. re-base,re-review, and merge? |
I marked this as stale due to inactivity. → More info |
Motivation for this change
I want to boot an ec2 instance with the nix configuration in a git repository. My userdata is a short script that looks like:
I don't see another "escape hatch" that lets me do this. I did consider making a Nix userdata that configures a systemd unit that causes a second reconfiguration, but that's much more verbose. Considering the way userdata finds its way into cloudformation templates and similar, I wanted to keep it as short as possible.
The implementation is
isScript
was lifted from patch-shebangs.sh.Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Notify maintainers
cc @