Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
deepin-diskmanager (6.0.15) unstable; urgency=medium

* refactor: Update process names in deepin-diskmanager-authenticateProxy script

-- wangrong <wangrong@uniontech.com> Tue, 12 Aug 2025 15:36:14 +0800

deepin-diskmanager (6.0.14) unstable; urgency=medium

* Update version to 6.0.14.
Expand Down
33 changes: 2 additions & 31 deletions service/udev/deepin-diskmanager-authenticateProxy
Original file line number Diff line number Diff line change
@@ -1,37 +1,8 @@
#!/bin/sh
# Name: gparted
# Purpose: Perform appropriate startup of GParted executable gpartedbin.
#
# The purpose of these startup methods is to prevent
# devices from being automounted, and to ensure only one
# instance of GParted is running. File system problems can
# occur if devices are mounted prior to the completion of
# GParted's operations, or if multiple partition editing
# tools are in use concurrently.
#
# Copyright (C) 2008, 2009, 2010, 2013, 2015 Curtis Gedak
#
# This file is part of GParted.
#
# GParted is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# GParted is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GParted. If not, see <http://www.gnu.org/licenses/>.
#
# This file was modified by Uniontech Technology Co., Ltd.


if test "z`ps -e | grep deepin-diskmanager-service`" != "z"; then
echo "The process gpartedbin is already running."
echo "Only one gpartedbin process is permitted."
echo "The process deepin-diskmanager-service is already running."
echo "Only one deepin-diskmanager-service process is permitted."
exit 1
fi

Expand Down
Loading