Revert "Try to workaround systemd automounting."

This reverts commit 9cc583e7d5.
This commit is contained in:
Andrius Štikonas 2018-04-13 01:06:32 +03:00
parent e0be8fae83
commit fc4133233b
1 changed files with 1 additions and 11 deletions

View File

@ -1,6 +1,6 @@
/*************************************************************************
* Copyright (C) 2008 by Volker Lanz <vl@fidra.de> *
* Copyright (C) 2016-2018 by Andrius Štikonas <andrius@stikonas.eu> *
* Copyright (C) 2016 by Andrius Štikonas <andrius@stikonas.eu> *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
@ -19,8 +19,6 @@
#include "core/operationrunner.h"
#include "core/operationstack.h"
#include "ops/operation.h"
#include "util/externalcommand.h"
#include "util/report.h"
#include <QDBusInterface>
@ -48,11 +46,6 @@ void OperationRunner::run()
bool status = true;
// Disable udev event queue. systemd sometimes likes to automount devices when refreshing partition table
// While this does not prevent automounting, it will at least delay it until partitioning operations are finished
ExternalCommand udevadmStopQueue(report(), QStringLiteral("udevadm"), { QStringLiteral("control"), QStringLiteral("--stop-exec-queue") });
udevadmStopQueue.run();
// Disable Plasma removable device automounting
QStringList modules;
QDBusConnection bus = QDBusConnection::connectToBus(QDBusConnection::SessionBus, QStringLiteral("sessionBus"));
@ -91,9 +84,6 @@ void OperationRunner::run()
if (automounter)
kdedInterface.call( QStringLiteral("loadModule"), automounterService );
ExternalCommand udevadmStartQueue(report(), QStringLiteral("udevadm"), { QStringLiteral("control"), QStringLiteral("--start-exec-queue") });
udevadmStartQueue.run();
if (!status)
emit error();
else if (isCancelling())