Fixing installer

This commit is contained in:
sergiotarxz 2024-07-19 20:35:28 +02:00
parent 31e82d4b7e
commit f8711ebd02
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ while (1) {
sub install_from_script($script, $output_file) { sub install_from_script($script, $output_file) {
my $script_abs = abs_path(dirname(__FILE__). '/'. $script); my $script_abs = abs_path(dirname(__FILE__). '/'. $script);
my $user = 'sergio'; my $user = 'vpnmanager';
open my $fh, '-|', 'sudo', '-i', '-u', $user, 'perl', $script_abs; open my $fh, '-|', 'sudo', '-i', '-u', $user, 'perl', $script_abs;
my $contents = join '', <$fh>; my $contents = join '', <$fh>;
my $output_exists; my $output_exists;