Skip to content

Commit

Permalink
Fix perl syntax errors in the setup script.
Browse files Browse the repository at this point in the history
  • Loading branch information
perlDreamer committed Jan 6, 2012
1 parent 6ab2469 commit e149592
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wre/sbin/wresetup.pl
Expand Up @@ -28,9 +28,9 @@

#-------------------------------------------------------------------
# server daemon
my $wreConfig = WRE::Config->new;
my $host = WRE::Host->new(wreConfig => $wreConfig);
my $file = WRE::File->new(wreConfig => $wreConfig);
my $config = WRE::Config->new;
my $host = WRE::Host->new(wreConfig => $config);
my $file = WRE::File->new(wreConfig => $config);

$file->makePath($config->getDomainRoot("/demo"));
$file->copy($config->getRoot("/var/setupfiles/demo.nginx"), $config->getRoot("/etc/demo.nginx"),
Expand Down

0 comments on commit e149592

Please sign in to comment.