From 074d2407e373bcd7fb8db8e2407c71776194e3be Mon Sep 17 00:00:00 2001 From: freesource Date: Thu, 2 Aug 2001 01:41:28 +0000 Subject: [PATCH] On line 1240 "\w" is now '\w', and umount for signals is > /dev/null 2>&1. --- gbootroot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gbootroot b/gbootroot index e0d07bd..36d372d 100755 --- a/gbootroot +++ b/gbootroot @@ -628,7 +628,7 @@ $cbutton->signal_connect("clicked", sub { unlink "$verbosefn", "$tmp/initrd_image", "$tmp/initrd_image.gz"; - system "umount $tmp/initrd_mnt"; + system "umount $tmp/initrd_mnt > /dev/null 2>&1"; rmdir "$tmp/initrd_mnt"; rmdir "$tmp"; rmdir "$mnt"; @@ -658,7 +658,7 @@ exit( 0 ); sub signal { unlink "$verbosefn", "$tmp/initrd_image.gz"; - system "umount $tmp/initrd_mnt"; + system "umount $tmp/initrd_mnt > /dev/null 2>&1"; rmdir "$tmp/initrd_mnt"; rmdir "$tmp"; rmdir "$mnt"; @@ -1237,7 +1237,7 @@ sub uml_box { # Debian remove_matching_process("Virtual Console"); # Good to remove uml_\w* - remove_matching_process("uml_\w*"); + remove_matching_process('uml_\w*'); # Again for good measure :) remove_matching_process($entry_advanced[10]); }