-
Notifications
You must be signed in to change notification settings - Fork 53
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
Update dependencies #2223
Update dependencies #2223
Conversation
Signed-off-by: David Cassany <[email protected]>
Signed-off-by: David Cassany <[email protected]>
3566df7
to
2e2f325
Compare
@@ -42,6 +42,10 @@ Requires: xorriso >= 1.5 | |||
Requires: mtools | |||
Requires: util-linux | |||
Requires: gptfdisk | |||
Requires: dracut |
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.
required by elemental init
to create the initrd
@@ -42,6 +42,10 @@ Requires: xorriso >= 1.5 | |||
Requires: mtools | |||
Requires: util-linux | |||
Requires: gptfdisk | |||
Requires: dracut | |||
Requires: grub2-common |
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.
Provides grub2-editenv
required to install and upgrade.
@@ -42,6 +42,10 @@ Requires: xorriso >= 1.5 | |||
Requires: mtools | |||
Requires: util-linux | |||
Requires: gptfdisk | |||
Requires: dracut | |||
Requires: grub2-common | |||
Requires: squashfs |
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.
Required to handle recovery image as squashfs
and to create ISOs
Requires: dracut | ||
Requires: grub2-common | ||
Requires: squashfs | ||
Requires: util-linux-systemd |
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.
Provides findmnt
which is used in elemental mount
command and in snapshotter.
|
||
inst_simple "/etc/elemental/config.yaml" | ||
|
||
# Include utilities required for elemental-setup services, | ||
# probably a devoted dracut module makes sense | ||
inst_multiple -o \ |
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.
There was actually a an elemental-setup dracut module, this comment is was so outdated and all this dependencies should have been moved to the devoted dracut module.
@@ -24,15 +24,10 @@ install() { | |||
declare systemdsystemunitdir=${systemdsystemunitdir} | |||
|
|||
inst_multiple \ | |||
mount mountpoint sort rmdir findmnt rsync cut realpath basename lsblk |
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.
Since there is the elemental mount
command this dracut module doesn't require most of the pieces it used to as most of the logic simply moved to elemental mount
.
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.
Looks good!
No description provided.