diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-10-29 01:08:41 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-10-29 01:08:41 +0000 |
commit | 9d72ca859466afda92bb67fec4651048820a84ed (patch) | |
tree | 16987e1db1f5e78a56b6d3a5a13e0d0909b3eb42 /lib/MDV/Draklive/Config.pm | |
parent | 9f4c79a78e6ff119931f1f5643f7482ca2dc9c18 (diff) | |
download | drakiso-9d72ca859466afda92bb67fec4651048820a84ed.tar drakiso-9d72ca859466afda92bb67fec4651048820a84ed.tar.gz drakiso-9d72ca859466afda92bb67fec4651048820a84ed.tar.bz2 drakiso-9d72ca859466afda92bb67fec4651048820a84ed.tar.xz drakiso-9d72ca859466afda92bb67fec4651048820a84ed.zip |
move Mounts and CustomMedia usage to Config module, since they are to be used from config files
Diffstat (limited to 'lib/MDV/Draklive/Config.pm')
-rw-r--r-- | lib/MDV/Draklive/Config.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/MDV/Draklive/Config.pm b/lib/MDV/Draklive/Config.pm index 3172d80..0e01d7e 100644 --- a/lib/MDV/Draklive/Config.pm +++ b/lib/MDV/Draklive/Config.pm @@ -4,6 +4,10 @@ use MDK::Common; use Pod::Usage; use Cwd 'getcwd'; +#- these modules can be used from config +use MDV::Draklive::Mounts; +use MDV::Draklive::CustomMedia; + our $default_config_root = '/etc/draklive'; our $default_config_path = 'config/live.cfg'; our $default_settings_path = 'config/settings.cfg'; |