diff options
-rw-r--r-- | lib/Youri/Submit/Action/UpdateMaintDb.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Youri/Submit/Action/UpdateMaintDb.pm b/lib/Youri/Submit/Action/UpdateMaintDb.pm index a8224cf..ca92299 100644 --- a/lib/Youri/Submit/Action/UpdateMaintDb.pm +++ b/lib/Youri/Submit/Action/UpdateMaintDb.pm @@ -26,12 +26,14 @@ sub _init { maintdb_url => '', maintdb_key => '', maintdb_binpath => '/usr/local/sbin/maintdb', + maintdb_user => 'maintdb', @_ ); $self->{_maintdb_url} = $options{maintdb_url}; $self->{_maintdb_key} = $options{maintdb_key}; $self->{_maintdb_binpath} = $options{maintdb_binpath}; + $self->{_maintdb_user} = $options{maintdb_user}; return $self; } @@ -48,7 +50,7 @@ sub run { my $pkg_media = $repository->_get_main_section($package, $target, $define); my $pkg_commiter = $define->{user}; - system($self->{_maintdb_binpath}, 'root', 'new', $pkg_name, $pkg_commiter); + system('sudo', '-u', $self->{_maintdb_user}, $self->{_maintdb_binpath}, 'root', 'new', $pkg_name, $pkg_commiter); my $ua = LWP::UserAgent->new; $ua->agent('Youri/0.1 ' . $ua->agent); |