Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/serverinfo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Felix <33863449+HigH-HawK@users.noreply.github.com>2020-03-18 17:28:07 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-03-24 22:21:02 +0300
commit86ef546ffd38a2e164c67cbda2afe4e6d3d0e294 (patch)
treef35d1008eb38fdb9b4f0a27f5216bc15efde14e1
parent15551d9b1448d3dbaf1b7e5dd9811cbc7636e281 (diff)
Update DefaultOs.php
-rw-r--r--lib/OperatingSystems/DefaultOs.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/OperatingSystems/DefaultOs.php b/lib/OperatingSystems/DefaultOs.php
index 3581eae..04a2dfd 100644
--- a/lib/OperatingSystems/DefaultOs.php
+++ b/lib/OperatingSystems/DefaultOs.php
@@ -62,8 +62,8 @@ class DefaultOs {
* @return string
*/
public function getCPUName() {
- $cpu = shell_exec('cat /proc/cpuinfo | grep -i \'Model name\' | cut -f 2 -d ":" | awk \'{$1=$1}1\'');
- $cores = shell_exec('cat /proc/cpuinfo | grep -i \'cpu cores\' | cut -f 2 -d ":" | awk \'{$1=$1}1\'');
+ $cpu = shell_exec('cat /proc/cpuinfo | grep -i \'Model name\' | cut -f 2 -d ":" | awk \'{$1=$1}1\' | head -1');
+ $cores = shell_exec('cat /proc/cpuinfo | grep -i \'cpu cores\' | cut -f 2 -d ":" | awk \'{$1=$1}1\' | head -1');
if ($cores === 1) {
$cores = ' (' . $cores . ' core)';
} else {