diff --git a/utils/bootstrap.pl b/utils/bootstrap.pl index 8ac13dd..bcdaf53 100755 --- a/utils/bootstrap.pl +++ b/utils/bootstrap.pl @@ -73,19 +73,15 @@ sub generateSys { open(FH, '>>', $sysFile); print FH $template; -}; - -sub generatePasswd { - } - + sub generateConfig { my $nodeName = shift; my $confFile = "config"; open(FH, '>',$confFile); - my $nodeConfig = "nodename\t\t".$myNode; + my $nodeConfig = "nodename\t\t".$nodeName; print FH $nodeConfig; }