Update and rename NerdPackHelpers.php to SlackPackHelpers.php

This commit is contained in:
damnoodle 2022-08-23 11:46:18 -05:00 committed by GitHub
parent 281dde4072
commit c7ea2e9b86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,12 @@
<?php <?php
$plg_path = '/boot/config/plugins/NerdPack/'; // plugin path $plg_path = '/boot/config/plugins/SlackPack/'; // plugin path
$os_version = strtok(parse_ini_file('/etc/unraid-version')['version'], '.') . '.' . strtok('.'); $os_version = strtok(parse_ini_file('/etc/unraid-version')['version'], '.') . '.' . strtok('.');
$pkg_path = $plg_path."packages/$os_version/"; // package path $pkg_path = $plg_path."packages/$os_version/"; // package path
if (!is_dir($pkg_path)) if (!is_dir($pkg_path))
mkdir($pkg_path); mkdir($pkg_path);
$pkg_desc = 'https://raw.githubusercontent.com/dmacias72/unRAID-NerdPack/master/packages/packages-desc'; $pkg_desc = 'https://raw.githubusercontent.com/damnoodle/Unraid-SlackPack/master/packages/packages-desc';
$pkg_repo = "https://api.github.com/repos/dmacias72/unRAID-NerdPack/contents/packages/$os_version"; $pkg_repo = "https://api.github.com/repos/damnoodle/Unraid-SlackPack/contents/packages/$os_version";
$desc_file = $pkg_path.'packages-desc'; $desc_file = $pkg_path.'packages-desc';
$repo_file = $pkg_path.'packages.json'; $repo_file = $pkg_path.'packages.json';
@ -26,7 +26,7 @@ $pkgs_desc_array = file_exists($desc_file) ? json_decode(file_get_contents($de
$pkgs_github_array = file_exists($repo_file) ? json_decode(file_get_contents($repo_file), true) : []; $pkgs_github_array = file_exists($repo_file) ? json_decode(file_get_contents($repo_file), true) : [];
function logger($output, $quiet = false) { function logger($output, $quiet = false) {
exec('echo '.escapeshellarg($output).' 2>&1 | logger -tnerdpack'); exec('echo '.escapeshellarg($output).' 2>&1 | logger -tslackpack');
if (!$quiet) { if (!$quiet) {
echo "\n".$output." \n"; echo "\n".$output." \n";
usleep(100000); usleep(100000);