diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-01-12 08:46:18 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-01-12 08:46:18 +0000 |
commit | 70d61bc7db7211347547476c16c254df94cb737d (patch) | |
tree | bd88a1156a807186ea27ac4081ac34cc1a7336a6 /drakclassic | |
parent | ff30da3ebb107421372e2a1a6d37f7c189667f2b (diff) | |
download | drakiso-70d61bc7db7211347547476c16c254df94cb737d.tar drakiso-70d61bc7db7211347547476c16c254df94cb737d.tar.gz drakiso-70d61bc7db7211347547476c16c254df94cb737d.tar.bz2 drakiso-70d61bc7db7211347547476c16c254df94cb737d.tar.xz drakiso-70d61bc7db7211347547476c16c254df94cb737d.zip |
Export functions in Config package.
Diffstat (limited to 'drakclassic')
-rwxr-xr-x | drakclassic | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drakclassic b/drakclassic index 839b997..563ebc2 100755 --- a/drakclassic +++ b/drakclassic @@ -65,7 +65,7 @@ sub clean { ############################################################################### my @actions = ( - { name => 'dump-config', do => \&MGA::DrakISO::Config::dump_config }, + { name => 'dump-config', do => \&dump_config }, { name => 'clean', do => \&clean }, { name => 'media', do => \&prepare_media }, { name => 'boot', do => \&prepare_iso_bootloader }, @@ -93,9 +93,9 @@ GetOptions( require standalone; every { !$_->{to_run} } @actions and Pod::Usage::pod2usage(); - MGA::DrakISO::Config::read_config($build_object, $config_root, $config_path, $settings_path); - MGA::DrakISO::Config::check_config($build_object); - MGA::DrakISO::Config::complete_config($build_object); + read_config($build_object, $config_root, $config_path, $settings_path); + check_config($build_object); + complete_config($build_object); if ($build_object->{settings}{repository} =~ /^http:|^ftp:/) { die "Sorry - remote repositories are not supported yet."; |