diff --git a/plugins/dynamix.apcupsd/LICENSE b/plugins/dynamix.apcupsd/LICENSE index ab0d140e7..1c555f727 100644 --- a/plugins/dynamix.apcupsd/LICENSE +++ b/plugins/dynamix.apcupsd/LICENSE @@ -1,6 +1,6 @@ Copyright 2015, by Dan Landon -This plugin provides APCUPSD support for unRAID V6. The plugin was modified from the original +This plugin provides APCUPSD support for Unraid V6. The plugin was modified from the original work done by seeDrs. This program is free software; you can redistribute it and/or diff --git a/plugins/dynamix.apcupsd/apcupsd.notify b/plugins/dynamix.apcupsd/apcupsd.notify index cc0319a10..a54be32f7 100755 --- a/plugins/dynamix.apcupsd/apcupsd.notify +++ b/plugins/dynamix.apcupsd/apcupsd.notify @@ -2,4 +2,4 @@ # Send system notify message from apcupsd # read MESSAGE -/usr/local/emhttp/webGui/scripts/notify -e "unRAID Server Alert" -s "UPS Alert" -d "$MESSAGE" -i "alert" +/usr/local/emhttp/webGui/scripts/notify -e "Unraid Server Alert" -s "UPS Alert" -d "$MESSAGE" -i "alert" diff --git a/plugins/dynamix.docker.manager/DockerSettings.page b/plugins/dynamix.docker.manager/DockerSettings.page index 631139290..541e24085 100644 --- a/plugins/dynamix.docker.manager/DockerSettings.page +++ b/plugins/dynamix.docker.manager/DockerSettings.page @@ -29,7 +29,7 @@ if (file_exists($realfile)) { $realfile = transpose_user_path($realfile); if (exec("stat -c %T -f " . escapeshellarg($realfile)) == "btrfs") { if (shell_exec("lsattr " . escapeshellarg($realfile) . " | grep \"\\-C\"") == "") { - echo '

Your existing Docker image file needs to be recreated due to an issue from an earlier beta of unRAID 6. Failure to do so may result in your docker image suffering corruption at a later time. Please do this NOW!

'; + echo '

Your existing Docker image file needs to be recreated due to an issue from an earlier beta of Unraid 6. Failure to do so may result in your docker image suffering corruption at a later time. Please do this NOW!

'; } } } diff --git a/plugins/dynamix.docker.manager/LICENSE b/plugins/dynamix.docker.manager/LICENSE index e7c8957ab..bbb78570d 100644 --- a/plugins/dynamix.docker.manager/LICENSE +++ b/plugins/dynamix.docker.manager/LICENSE @@ -7,6 +7,6 @@ FORKED FROM: This Software is licensed under [GPL version 2](http://www.gnu.org/licenses/gpl-2.0.html). -unRAID is a registered trademark of [Lime Technology](http://lime-technology.com). +Unraid is a registered trademark of [Lime Technology, Inc.](http://lime-technology.com). -This file shall be included in all copies or substantial portions of the Software. \ No newline at end of file +This file shall be included in all copies or substantial portions of the Software. diff --git a/plugins/dynamix.docker.manager/include/CreateDocker.php b/plugins/dynamix.docker.manager/include/CreateDocker.php index e9940f375..3f290c611 100644 --- a/plugins/dynamix.docker.manager/include/CreateDocker.php +++ b/plugins/dynamix.docker.manager/include/CreateDocker.php @@ -228,13 +228,13 @@ if ($_GET['xmlTemplate']) { if ($arrConfig['Type'] == 'Path' && strtolower($arrConfig['Target']) == '/unraid') { $arrConfig['Default'] = $arrConfig['Value'] = realpath($dockercfg['DOCKER_APP_UNRAID_PATH']); $arrConfig['Display'] = 'hidden'; - $arrConfig['Name'] = 'unRAID Share Path'; + $arrConfig['Name'] = 'Unraid Share Path'; $boolFound = true; } } if (!$boolFound) { $xml['Config'][] = [ - 'Name' => 'unRAID Share Path', + 'Name' => 'Unraid Share Path', 'Target' => '/unraid', 'Default' => realpath($dockercfg['DOCKER_APP_UNRAID_PATH']), 'Value' => realpath($dockercfg['DOCKER_APP_UNRAID_PATH']), @@ -735,7 +735,7 @@ span.cpu,label.checkbox{display:inline-block;width:32px}
-

Templates are a quicker way to setting up Docker Containers on your unRAID server. There are two types of templates:

+

Templates are a quicker way to setting up Docker Containers on your Unraid server. There are two types of templates:

Default templates
diff --git a/plugins/dynamix.docker.manager/include/Helpers.php b/plugins/dynamix.docker.manager/include/Helpers.php index 67ce8eb37..4de9374c1 100644 --- a/plugins/dynamix.docker.manager/include/Helpers.php +++ b/plugins/dynamix.docker.manager/include/Helpers.php @@ -257,7 +257,7 @@ function xmlToCommand($xml, $create_paths=false) { // Bind Time $Variables[] = 'TZ="' . $var['timeZone'] . '"'; // Add HOST_OS variable - $Variables[] = 'HOST_OS="unRAID"'; + $Variables[] = 'HOST_OS="Unraid"'; foreach ($xml['Config'] as $key => $config) { $confType = strtolower(strval($config['Type'])); diff --git a/plugins/dynamix.plugin.manager/Update.page b/plugins/dynamix.plugin.manager/Update.page index a1a60e4ed..b02699881 100644 --- a/plugins/dynamix.plugin.manager/Update.page +++ b/plugins/dynamix.plugin.manager/Update.page @@ -92,6 +92,6 @@ $(function() { ComponentAuthorVersionStatusBranch -unRAID Server OS (previous)LimeTech +Unraid OS (previous)LimeTech diff --git a/plugins/dynamix.plugin.manager/scripts/plugin b/plugins/dynamix.plugin.manager/scripts/plugin index b4a96559f..e1866466f 100755 --- a/plugins/dynamix.plugin.manager/scripts/plugin +++ b/plugins/dynamix.plugin.manager/scripts/plugin @@ -249,15 +249,15 @@ function plugin($method, $plugin_file, &$error) { if (!in_array($method, explode(" ", $file->attributes()->Method))) continue; } elseif ($method != "install") continue; $name = $file->attributes()->Name; - // bergware - check unRAID version dependency (if present) + // bergware - check Unraid version dependency (if present) $min = $file->attributes()->Min; if ($min && version_compare($unraid['version'],$min,'<')) { - echo "plugin: skipping: ".basename($name)." - unRAID version too low, requires at least version $min\n"; + echo "plugin: skipping: ".basename($name)." - Unraid version too low, requires at least version $min\n"; continue; } $max = $file->attributes()->Max; if ($max && version_compare($unraid['version'],$max,'>')) { - echo "plugin: skipping: ".basename($name)." - unRAID version too high, requires at most version $max\n"; + echo "plugin: skipping: ".basename($name)." - Unraid version too high, requires at most version $max\n"; continue; } // Name can be missing but only makes sense if Run attribute is present @@ -453,17 +453,17 @@ if ($method == "install") { } } else $plugin_file = realpath($argv[2]); - // bergware - check unRAID version dependency (if present) + // bergware - check Unraid version dependency (if present) $min = plugin("min", $plugin_file, $error); if ($min && version_compare($unraid['version'],$min,'<')) { - echo "plugin: installed unRAID version is too low, require at least version $min\n"; + echo "plugin: installed Unraid version is too low, require at least version $min\n"; exit(1); } $max = plugin("max", $plugin_file, $error); if (empty($max)) - $max = plugin("unRAID", $plugin_file, $error); + $max = plugin("Unraid", $plugin_file, $error); if ($max && version_compare($unraid['version'],$max,'>')) { - echo "plugin: installed unRAID version is too high, require at most version $max\n"; + echo "plugin: installed Unraid version is too high, require at most version $max\n"; exit(1); } $plugin = basename($plugin_file); @@ -611,17 +611,17 @@ if ($method == "update") { echo "plugin: $plugin_file does not exist, check for updates first\n"; exit (1); } - // bergware - check unRAID version dependency (if present) + // bergware - check Unraid version dependency (if present) $min = plugin("min", $plugin_file, $error); if ($min && version_compare($unraid['version'],$min,'<')) { - echo "plugin: installed unRAID version is too low, require at least version $min\n"; + echo "plugin: installed Unraid version is too low, require at least version $min\n"; exit(1); } $max = plugin("max", $plugin_file, $error); if (empty($max)) - $max = plugin("unRAID", $plugin_file, $error); + $max = plugin("Unraid", $plugin_file, $error); if ($max && version_compare($unraid['version'],$max,'>')) { - echo "plugin: installed unRAID version is too high, require at most version $max\n"; + echo "plugin: installed Unraid version is too high, require at most version $max\n"; exit(1); } // install the updated plugin diff --git a/plugins/dynamix.vm.manager/VMSettings.page b/plugins/dynamix.vm.manager/VMSettings.page index d73bf3b88..ffeed0c83 100644 --- a/plugins/dynamix.vm.manager/VMSettings.page +++ b/plugins/dynamix.vm.manager/VMSettings.page @@ -24,7 +24,7 @@ require_once "$docroot/plugins/dynamix.vm.manager/include/libvirt_helpers.php"; $strLoadedModules = shell_exec("/etc/rc.d/rc.libvirt test"); if (empty($strLoadedModules)) { echo "

Your hardware does not have Intel VT-x or AMD-V capability. This is required to create VMs in KVM."; - echo " Click here to see the unRAID Wiki for more information

"; + echo " Click here to see the Unraid Wiki for more information

"; echo ""; exit; } diff --git a/plugins/dynamix.vm.manager/templates/Custom.form.php b/plugins/dynamix.vm.manager/templates/Custom.form.php index 947782a81..77be79181 100644 --- a/plugins/dynamix.vm.manager/templates/Custom.form.php +++ b/plugins/dynamix.vm.manager/templates/Custom.form.php @@ -766,14 +766,14 @@ $hdrXML = "\n"; // XML encoding declaratio ?> - + - + @@ -784,12 +784,12 @@ $hdrXML = "\n"; // XML encoding declaratio

- unRAID Share
+ Unraid Share
Used to create a VirtFS mapping to a Linux-based guest. Specify the path on the host here.

- unRAID Mount tag
+ Unraid Mount tag
Specify the mount tag that you will use for mounting the VirtFS share inside the VM. See this page for how to do this on a Linux-based guest: http://wiki.qemu.org/Documentation/9psetup

@@ -802,14 +802,14 @@ $hdrXML = "\n"; // XML encoding declaratio -This is a mandatory one-time action to be taken after upgrading from a pre-5.0 unRAID server release to unRAID v5 or a later release. +This is a mandatory one-time action to be taken after upgrading from a pre-5.0 Unraid server release to Unraid v5 or a later release. Select **ALL DISKS** when performing this one-time action. This utility is also useful for restoring default ownership/permissions on files and diff --git a/plugins/dynamix/Notifications.page b/plugins/dynamix/Notifications.page index 4eb669110..86317db67 100644 --- a/plugins/dynamix/Notifications.page +++ b/plugins/dynamix/Notifications.page @@ -158,7 +158,7 @@ System notifications: > By default the notifications system is disabled. Enable it here to start receiving notifications. > The following sections give more options about which and what type of notifications will be sent. -unRAID OS update notification: +Unraid OS update notification: : -> Start a periodic verification and notify the user when a new version of the unRAID OS system is detected. +> Start a periodic verification and notify the user when a new version of the Unraid OS system is detected. > Use the checkboxes below to select how notifications need to be given; by browser, by email and/or by custom agent. Plugins update notification: @@ -213,7 +213,7 @@ Array status notification: > Start a periodic array health check (preventive maintenance) and notify the user the result of this check. -:
unRAID Share:Unraid Share: - +
unRAID Mount tag:Unraid Mount tag: