diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2013-06-24 12:49:09 -0500 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2013-06-24 12:49:09 -0500 |
commit | bba36787e016d56290ba3bfac10960425f5a8cc0 (patch) | |
tree | ad1b554bec23e12846665378c0d751fef0648a53 /fripost | |
parent | 7afd7f9a787a6a88d2544ed1c5a5598821dfd138 (diff) |
Diffstat (limited to 'fripost')
-rwxr-xr-x | fripost | 21 |
1 files changed, 10 insertions, 11 deletions
@@ -315,17 +315,6 @@ use Getopt::Long qw /:config noauto_abbrev no_ignore_case use Pod::Usage; use YAML::Syck; -use Fripost::Schema; -use Fripost::Commands::mkpass; -use Fripost::Commands::add_user; -use Fripost::Commands::search_user; -use Fripost::Commands::user_passwd; -use Fripost::Commands::add_domain; -use Fripost::Commands::search_domain; -use Fripost::Commands::add_alias; -use Fripost::Commands::search_alias; - - ## Get global command line options our $conf = LoadFile( catfile ($HOME, '.fripost.yml') ); @@ -352,6 +341,16 @@ GetOptions( 'g|goto' => \$conf->{goto}, ) or pod2usage(2); +require Fripost::Schema; +require Fripost::Commands::mkpass; +require Fripost::Commands::add_user; +require Fripost::Commands::search_user; +require Fripost::Commands::user_passwd; +require Fripost::Commands::add_domain; +require Fripost::Commands::search_domain; +require Fripost::Commands::add_alias; +require Fripost::Commands::search_alias; + ## Set the default values $conf->{server_host} //= 'ldap://127.0.0.1:389'; |