diff options
author | Florent Villard <warly@mandriva.com> | 2006-08-05 12:22:30 +0000 |
---|---|---|
committer | Florent Villard <warly@mandriva.com> | 2006-08-05 12:22:30 +0000 |
commit | 8db0e5453670c158a69c85a70adccbd2bce55a8a (patch) | |
tree | 00b8d070078ea0b19ee7933da60943922dbac2e7 /bin | |
parent | 3e9fb94ffde83c7fbcc90eccee7d7a8df256e4c7 (diff) | |
download | mga-youri-core-8db0e5453670c158a69c85a70adccbd2bce55a8a.tar mga-youri-core-8db0e5453670c158a69c85a70adccbd2bce55a8a.tar.gz mga-youri-core-8db0e5453670c158a69c85a70adccbd2bce55a8a.tar.bz2 mga-youri-core-8db0e5453670c158a69c85a70adccbd2bce55a8a.tar.xz mga-youri-core-8db0e5453670c158a69c85a70adccbd2bce55a8a.zip |
now youri-upload does not user --user anymore, have to replace it with --define user=
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/youri-upload.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/youri-upload.in b/bin/youri-upload.in index d48afa5..5f181ff 100755 --- a/bin/youri-upload.in +++ b/bin/youri-upload.in @@ -90,7 +90,7 @@ Configuration is read from the first file found among: =item * $HOME/.youri/upload.conf -=item * @sysconfdir@/youri/upload.conf +=item * /usr/local/etc/youri/upload.conf =back @@ -166,7 +166,7 @@ my $config = Youri::Config->new( 'targets=s', 'repository=s', ], - directories => [ '@sysconfdir@', "$ENV{HOME}/.youri" ], + directories => [ '/usr/local/etc', "$ENV{HOME}/.youri" ], file_name => 'upload.conf', caller => $0, ); @@ -209,7 +209,7 @@ eval { $repository = create_instance( 'Youri::Repository', test => $test, - user => $config->get('user'), + user => $config->get('define')->{user}, verbose => $verbose > 0 ? $verbose - 1 : 0, targets => [ keys %targets ], $config->get_section($repository_id) @@ -241,7 +241,7 @@ foreach my $id (@{$target{checks}}) { 'Youri::Upload::Check', id => $id, test => $test, - user => $config->get('user'), + user => $config->get('define')->{user}, verbose => $verbose > 0 ? $verbose - 1 : 0, $config->get_section($id) ); |