From c95ae9bff66d7b95361afb367cafcd4501979bb5 Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Tue, 2 Jun 2009 04:43:10 +0000 Subject: [PATCH] Skip FreeBSD actions like NETWORKING --- init/init-lib.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/init/init-lib.pl b/init/init-lib.pl index bf5179cc7..8c9879238 100755 --- a/init/init-lib.pl +++ b/init/init-lib.pl @@ -1251,6 +1251,7 @@ foreach my $dir (split(/\s+/, $config{'rc_dir'})) { opendir(DIR, $dir); foreach my $f (readdir(DIR)) { next if ($f =~ /^\./ || $f =~ /\.(bak|tmp)/i); + next if (uc($f) eq $f); # Dummy actions are upper-case local $name = $f; $name =~ s/\.sh$//; local $data = &read_file_contents("$dir/$f");