diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-11-24 18:52:30 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-11-24 18:52:30 -0800 |
commit | a6ac43cf28ddf0db720eb98f1ae0454c991821dd (patch) | |
tree | fcc98d645986e9377ef50fa607be4ef4ff886e78 /scripts | |
parent | 32cefc2d846f9946bf6e5b84cd914b5e2959dbfa (diff) | |
download | vyatta-cfg-a6ac43cf28ddf0db720eb98f1ae0454c991821dd.tar.gz vyatta-cfg-a6ac43cf28ddf0db720eb98f1ae0454c991821dd.zip |
Need to fix some stuff from change to Vyatta::
I wanted to use Vyatta::Config::Output, but the perl part of the
autoconf installer is to stupid to handle directory trees, so had
to limit it to one directory per package. So name should have
been Vyatta::ConfigOutput...
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-output-config.pl | 2 | ||||
-rwxr-xr-x | scripts/vyatta-save-config.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vyatta-output-config.pl b/scripts/vyatta-output-config.pl index e47f718..a632297 100755 --- a/scripts/vyatta-output-config.pl +++ b/scripts/vyatta-output-config.pl @@ -21,7 +21,7 @@ use strict; use lib "/opt/vyatta/share/perl5"; -use Vyatta::Config::Output; +use Vyatta::ConfigOutput; if ($ARGV[0] eq '-all') { shift; diff --git a/scripts/vyatta-save-config.pl b/scripts/vyatta-save-config.pl index f33a693..dd53d51 100755 --- a/scripts/vyatta-save-config.pl +++ b/scripts/vyatta-save-config.pl @@ -21,7 +21,7 @@ use strict; use lib "/opt/vyatta/share/perl5"; -use Vyatta::Config::Output; +use Vyatta::ConfigOutput; my $etcdir = "/opt/vyatta/etc"; my $bootpath = $etcdir . "/config"; |