From ea867c95bb9a4eb79dbb5dd487e9a116f7054868 Mon Sep 17 00:00:00 2001 From: freesource Date: Tue, 19 Dec 2000 21:37:49 +0000 Subject: [PATCH] * passing strip parameters --- YardBox.pm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/YardBox.pm b/YardBox.pm index 79d4235..e19e1a2 100644 --- a/YardBox.pm +++ b/YardBox.pm @@ -486,8 +486,13 @@ sub space_left { sub create { + $lib_bool = "" if $lib_bool eq 0; + $bin_bool = "" if $bin_bool eq 0; + $mod_bool = "" if $mod_bool eq 0; + $strip_bool eq "strip-all" ? ($strip_bool = 1) : ($strip_bool = 0); $error = create_filesystem($filename,$filesystem_size,$filesystem_type, - $inode_size,$mnt); + $inode_size,$mnt,$lib_bool,$bin_bool, + $mod_bool,$strip_bool); return if $error && $error eq "ERROR"; }