summaryrefslogtreecommitdiffstats
path: root/perl-install/commands.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/commands.pm')
-rw-r--r--perl-install/commands.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm
index 76f648a8f..071c72b83 100644
--- a/perl-install/commands.pm
+++ b/perl-install/commands.pm
@@ -159,13 +159,13 @@ sub chown_ {
sub swapon {
@_ == 1 or die "swapon <file>\n";
- require swap;
- swap::swapon($_[0]);
+ require fs;
+ fs::swapon($_[0]);
}
sub swapoff {
@_ == 1 or die "swapoff <file>\n";
- require swap;
- swap::swapoff($_[0]);
+ require fs;
+ fs::swapoff($_[0]);
}
sub uncpio {