summaryrefslogtreecommitdiff
path: root/pcr/dolphin-root/0001-Revert-Disallow-executing-Dolphin-as-root-on-Linux.patch
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2019-06-15 23:52:19 -0400
committerDavid P <megver83@parabola.nu>2019-06-15 23:52:19 -0400
commit3523f0ad0779d55dda4aa60f560bdc16f100e8b0 (patch)
tree16c190b2c1f8266ee07dde11b81ee583ebd978ca /pcr/dolphin-root/0001-Revert-Disallow-executing-Dolphin-as-root-on-Linux.patch
parentddc7a50d9d136e60cf18b351dcd293460e3cbadb (diff)
downloadabslibre-3523f0ad0779d55dda4aa60f560bdc16f100e8b0.tar.gz
abslibre-3523f0ad0779d55dda4aa60f560bdc16f100e8b0.tar.bz2
abslibre-3523f0ad0779d55dda4aa60f560bdc16f100e8b0.zip
upgpkg: pcr/dolphin-root 19.04.2-1
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'pcr/dolphin-root/0001-Revert-Disallow-executing-Dolphin-as-root-on-Linux.patch')
-rw-r--r--pcr/dolphin-root/0001-Revert-Disallow-executing-Dolphin-as-root-on-Linux.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/pcr/dolphin-root/0001-Revert-Disallow-executing-Dolphin-as-root-on-Linux.patch b/pcr/dolphin-root/0001-Revert-Disallow-executing-Dolphin-as-root-on-Linux.patch
new file mode 100644
index 000000000..1bb9355d4
--- /dev/null
+++ b/pcr/dolphin-root/0001-Revert-Disallow-executing-Dolphin-as-root-on-Linux.patch
@@ -0,0 +1,42 @@
+From ba74d639178916221c748b0d5d89f7ac4f5ed669 Mon Sep 17 00:00:00 2001
+From: Fabian Vogt <fabian@ritter-vogt.de>
+Date: Sat, 22 Apr 2017 14:00:33 +0200
+Subject: [PATCH] Revert "Disallow executing Dolphin as root on Linux"
+
+This reverts commit 0bdd8e0b0516555c6233fdc7901e9b417cf89791.
+We ship a desktop file to open dolphin as root and we allow YaST on the
+desktop. So this patch is absolutely pointless for us.
+---
+ src/main.cpp | 13 -------------
+ 1 file changed, 13 deletions(-)
+
+Index: dolphin-18.07.70git.20180603T132131~3c6ecfa24/src/main.cpp
+===================================================================
+--- dolphin-18.07.70git.20180603T132131~3c6ecfa24.orig/src/main.cpp
++++ dolphin-18.07.70git.20180603T132131~3c6ecfa24/src/main.cpp
+@@ -35,25 +35,8 @@
+ #include <QApplication>
+ #include <QCommandLineParser>
+
+-#ifndef Q_OS_WIN
+-#include <unistd.h>
+-#endif
+-#include <iostream>
+-
+ extern "C" Q_DECL_EXPORT int kdemain(int argc, char **argv)
+ {
+-#ifndef Q_OS_WIN
+- // Prohibit using sudo or kdesu (but allow using the root user directly)
+- if (getuid() == 0) {
+- if (!qEnvironmentVariableIsEmpty("SUDO_USER")) {
+- std::cout << "Executing Dolphin with sudo is not possible due to unfixable security vulnerabilities." << std::endl;
+- return EXIT_FAILURE;
+- } else if (!qEnvironmentVariableIsEmpty("KDESU_USER")) {
+- std::cout << "Executing Dolphin with kdesu is not possible due to unfixable security vulnerabilities." << std::endl;
+- return EXIT_FAILURE;
+- }
+- }
+-#endif
+
+ QApplication app(argc, argv);
+ app.setAttribute(Qt::AA_UseHighDpiPixmaps, true);