Server IP : 195.201.23.43 / Your IP : 3.129.194.144 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/software/ |
Upload File : |
# Functions for MacOS pkgsrc repository $ENV{'PATH'} .= ":/usr/pkg/bin:/usr/pkg/sbin"; $pkgin_sqlite_db = "/var/db/pkgin/pkgin.db"; $no_package_install = 1; sub list_package_system_commands { return ("pkgin", "sqlite3"); } # execute_pkgin_sql(command) # Returns an array of rows, each of which is a hash ref from column name to # value for that row sub execute_pkgin_sql { my ($sql) = @_; my $errtemp = &transname(); my $cmd = "sqlite3 -header $pkgin_sqlite_db ".quotemeta($sql)." 2>".quotemeta($errtemp); &open_execute_command(SQL, $cmd, 1, 1); my $headline = <SQL>; $headline =~ s/\r|\n//g; my @cols = split(/\|/, $headline); while(my $row = <SQL>) { $row =~ s/\r|\n//g; my @row = split(/\|/, $row); my $r = { }; for(my $i=0; $i<@cols; $i++) { $r->{lc($cols[$i])} = $row[$i]; } push(@rv, $r); } close(SQL); my $ex = $?; my $err = &read_file_contents($errtemp); &unlink_file($errtemp); if ($err || $?) { &error("SQL command $sql failed : ". ($err || $headline || "Unknown error")); } return @rv; } # list_packages([package]*) # Fills the array %packages with all or listed packages sub list_packages { my (@names) = @_; my $sql = "select * from local_pkg"; if (@names) { $sql .= " where pkgname in (".join(", ", map { "'$_'" } @names).")"; } my @out = &execute_pkgin_sql($sql); my $i = 0; my $arch = &backquote_command("uname -m"); $arch =~ s/\r|\n//g; foreach my $r (@out) { $packages{$i,'name'} = $r->{'pkgname'}; $packages{$i,'version'} = $r->{'pkgvers'}; $packages{$i,'desc'} = $r->{'comment'}; $packages{$i,'arch'} = $arch; $packages{$i,'class'} = (split(/\s+/, $r->{'categories'}))[0]; $packages{$i,'size'} = $r->{'size_pkg'}; $i++; } return $i; } # package_info(package, [version]) # Returns an array of package information in the order # name, class, description, arch, version, vendor, installtime sub package_info { my ($name, $ver) = @_; my $n = &list_packages($name); return ( ) if (!$n); return ($packages{0,'name'}, $packages{0,'class'}, $packages{0,'desc'}, $packages{0,'arch'}, $packages{0,'version'}, undef, undef); } # is_package(file) # Always returns 0, because pkgsrc doesn't support installing from files sub is_package { return 0; } # file_packages(file) # Returns nothing, because pkgsrc doesn't support installing from files sub file_packages { return (); } sub package_system { return "PKGsrc"; } # check_files(package, version) # Fills in the %files array with information about the files belonging # to some package. Values in %files are path type user group size error sub check_files { my ($name, $ver) = @_; my @files = &package_files($name, $ver); my %errs; &open_execute_command(CHECK, "pkg_admin check ".quotemeta($name), 1, 1); while(<CHECK>) { if (/^(\/\S+)\s+(.*)/) { $errs{$1} = $2; } } close(CHECK); %files = ( ); for(my $i=0; $i<@files; $i++) { my @st = stat($files[$i]); $files{$i,'path'} = $files[$i]; $files{$i,'type'} = -l $files[$i] ? 3 : -d $files[$i] ? 1 : 0; $files{$i,'user'} = getpwuid($st[4]); $files{$i,'group'} = getgrgid($st[5]); $files{$i,'mode'} = sprintf "%o", $st[2] & 07777; $files{$i,'size'} = $st[7]; $files{$i,'link'} = readlink($files[$i]); $files{$i,'error'} = $errs{$files[$i]}; } return scalar(@files); } # package_files(package, [version]) # Returns a list of all files in some package sub package_files { my ($name, $ver) = @_; &open_execute_command(DUMP, "pkg_admin dump", 1, 1); while(<DUMP>) { if (/file:\s+(\S.*\S)\s+pkg:\s+(\S+)\-/ && $2 eq $name) { push(@rv, $1); } } close(DUMP); return @rv; } # installed_file(file) # Given a filename, fills %file with details of the given file and returns 1. # If the file is not known to the package system, returns 0 # Usable values in %file are path type user group mode size packages sub installed_file { my ($file) = @_; &open_execute_command(DUMP, "pkg_admin dump", 1, 1); while(<DUMP>) { if (/file:\s+(\S.*\S)\s+pkg:\s+(\S+)\-(\S+)/ && $1 eq $file) { push(@pkgs, $2); push(@vers, $3); } } close(DUMP); return 0 if (!@pkgs); %file = ( ); $file{'packages'} = join(' ', @pkgs); $file{'versions'} = join(' ', @vers); $file{'path'} = $file; my @st = stat($file); $file{'type'} = -l $files ? 3 : -d $files ? 1 : 0; $file{'user'} = getpwuid($st[4]); $file{'group'} = getgrgid($st[5]); $file{'mode'} = sprintf "%o", $st[2] & 07777; $file{'size'} = $st[7]; $file{'link'} = readlink($file); return 1; } # delete_package(package, [&options], version) # Attempt to remove some package sub delete_package { my ($name, $opts, $ver) = @_; my $out = &backquote_logged("pkgin -y remove ".quotemeta($name)." 2>&1"); return $? ? $out : undef; } # delete_packages(&packages, [&options], &versions) # Attempt to remove multiple packages at once sub delete_packages { my ($names, $opts, $vers) = @_; my $out = &backquote_logged("pkgin -y remove ". join(" ", map { quotemeta($name) } @$names)." 2>&1"); return $? ? $out : undef; } ###### Update system functions sub list_update_system_commands { return ("pkgin"); } # update_system_install([package], [&in], [no-force]) # Install some package with apt sub update_system_install { my $update = $_[0] || $in{'update'}; my $in = $_[1]; my $force = !$_[2]; my @rv; # Build and show command to run $update = join(" ", map { quotemeta($_) } split(/\s+/, $update)); my $cmd = "pkgin -y install ".$update; print "<b>",&text('pkgsrc_install', "<tt>$cmd</tt>"),"</b><p>\n"; print "<pre>"; &additional_log('exec', undef, $cmd); # Run it &open_execute_command(CMD, "$cmd", 2); while(<CMD>) { if (/installing\s+(\S+)\-(\d\S*)/i) { # New package push(@rv, $1); } print &html_escape("$_"); } close(CMD); print "</pre>\n"; if ($?) { print "<b>$text{'pkg_failed'}</b><p>\n"; } else { print "<b>$text{'pkg_ok'}</b><p>\n"; } return @rv; } # update_system_search(text) # Returns a list of packages matching some search sub update_system_search { my ($text) = @_; $text =~ s/\.\*/%/g; $text =~ s/\./?/g; my $sql = "select * from remote_pkg"; if ($text) { $sql .= " where pkgname like '%$text%' or ". "comment like '%$text%'"; } my @out = &execute_pkgin_sql($sql); my @rv; foreach my $r (@out) { push(@rv, { 'name' => $r->{'pkgname'}, 'version' => $r->{'pkgvers'}, 'desc' => $r->{'comment'} }); } return @rv; } # update_system_available() # Returns a list of package names and versions that are available from PKGSRC sub update_system_available { return &update_system_search(undef); } # update_system_updates() # Returns a list of available package updates sub update_system_updates { my $sql = "select remote_pkg.pkgname,remote_pkg.pkgvers ". "from remote_pkg,local_pkg ". "where remote_pkg.pkgname = local_pkg.pkgname ". "and remote_pkg.pkgvers != local_pkg.pkgvers"; my @out = &execute_pkgin_sql($sql); my @rv; foreach my $r (@out) { push(@rv, { 'name' => $r->{'pkgname'}, 'version' => $r->{'pkgvers'}, 'desc' => $r->{'comment'} }); } return @rv; } # update_system_resolve(name) # Converts a standard package name like apache, sendmail or squid into # the name used by ports. sub update_system_resolve { local ($name) = @_; return $name eq "apache" ? "apache ap24-.*" : $name eq "dhcpd" ? "isc-dhcpd" : $name eq "mysql" ? "mysql-server mysql-client" : $name eq "postgresql" ? "postgresql94-client postgresql94-server" : $name eq "openldap" ? "openldap-server openldap-client" : $name; } 1;Private