aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/ruby.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2021-02-18 12:30:38 +0100
committerMarius Bakke <marius@gnu.org>2021-03-24 00:23:40 +0100
commit8e14863e53e351a935912028ae5b5d36894727ab (patch)
tree6fed5da5a0926e96a9c05cc079e6279e6f97639d /gnu/packages/ruby.scm
parent465b27ebb083188437289b741719531c29263a03 (diff)
downloadguix-8e14863e53e351a935912028ae5b5d36894727ab.tar.gz
guix-8e14863e53e351a935912028ae5b5d36894727ab.zip
.guix-authorizations: Add lle_bout.
* .guix-authorizations: Add lle_bout to the committers. (cherry picked from commit 65fb3a3eb9a759e3dba18e78113e80d7e5b353f4) Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'gnu/packages/ruby.scm')
0 files changed, 0 insertions, 0 deletions
d>file-systems: Invoke fsck tools with 'system*/tty'....This ensures those programs, if invoked by shepherd (where standard input is /dev/null), can still interact with the user if needed. * gnu/build/file-systems.scm (check-ext2-file-system) (check-bcachefs-file-system, check-btrfs-file-system): (check-fat-file-system, check-jfs-file-system): (check-f2fs-file-system, check-ntfs-file-system): (check-xfs-file-system): Use 'system*/tty' instead of 'system*'. Ludovic Courtès 2022-04-08mapped-devices: Ensure 'cryptsetup open' gets a tty....Fixes <https://issues.guix.gnu.org/54770>. Regression introduced in 400c9ed3d779308e56038305d40cd93acb496180. Previously, for an encrypted /home (say), "cryptsetup open" would be invoked by shepherd, with /dev/null as its standard input. It would thus run in non-interactive mode and, instead of asking for a passphrase, fail with: Nothing to read on input. This change ensures it runs in interactive mode. * gnu/build/file-systems.scm (system*/console, system*/tty): New procedures. * gnu/system/mapped-devices.scm (open-luks-device): Use 'system*/tty' instead of 'system*'. Ludovic Courtès