1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

packages: cloud-utils: Add missing growpart programs to path.

This ensures growpart can run in environments that may not have a PATH
variable set.

* gnu/packages/admin.scm (cloud-utils): Augment growpart PATH with necessary
programs.

Change-Id: Idf0ca9e14e4c9d82208fbf715dd0b235cd5a371b
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Richard Sent 2024-12-14 16:18:22 -05:00 committed by Ludovic Courtès
parent 79f8769530
commit 4fc1ee837b
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -581,12 +581,21 @@ inspired by @command{vi}.")
,(map dirname
(map (cut search-input-file inputs <>)
(list "bin/readlink"
"sbin/sfdisk")))))))))))
"sbin/sfdisk"
"bin/sed"
"bin/grep"
"bin/awk"
"bin/udevadm"
"bin/flock")))))))))))
(inputs
(list bash-minimal ;for wrap-program
coreutils ;for readlink
coreutils ;for readlink and cat
sed ;growpart
grep ;growpart
gawk ;awk for growpart
eudev ;udevadm for growpart
python
util-linux)) ;sfdisk for growpart
util-linux)) ;sfdisk, flock, partx, blkid for growpart
(home-page "https://launchpad.net/cloud-utils")
(synopsis "Set of utilities for cloud computing environments")
(description