From 489c2506cd2fd51efa7b167248a378d07923abfe Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Thu, 21 Nov 2013 18:52:13 +0000 Subject: polkit: Fix support for several third party net management commands (mga#11286) --- lib/network/vpn.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/network/vpn.pm') diff --git a/lib/network/vpn.pm b/lib/network/vpn.pm index 21142c8..147ecc8 100644 --- a/lib/network/vpn.pm +++ b/lib/network/vpn.pm @@ -113,8 +113,7 @@ sub get_config_path { sub _run { my ($connection, $action, @args) = @_; - my @command = ('vpn-' . $action, $connection->get_type, $connection->get_name, @args); - @command = common::wrap_command_for_root(@command) if $>; + my @command = (if_($>, '/usr/bin/pkexec'), '/usr/sbin/vpn-' . $action, $connection->get_type, $connection->get_name, @args); require run_program; run_program::rooted($::prefix, , @command); } -- cgit v1.2.1