Skip to content
Snippets Groups Projects
Commit fe9a768f authored by Rohan Garg's avatar Rohan Garg
Browse files

Use pkexec to execute calamares with the right permissions

parent 486f160c
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,7 @@ set( QT_VERSION 5.3.0 )
find_package( Qt5 ${QT_VERSION} CONFIG REQUIRED Core Gui Widgets LinguistTools Svg )
find_package( YamlCpp 0.5.1 REQUIRED )
find_package( PolkitQt5-1 REQUIRED )
option( WITH_PYTHON "Enable Python modules support." ON )
......@@ -178,3 +179,10 @@ install(
DESTINATION
share/calamares
)
install(
FILES
com.github.calamares.calamares.bin
DESTINATION
"${POLKITQT-1_POLICY_FILES_INSTALL_DIR}"
)
......@@ -4,8 +4,9 @@ Version=1.0
Name=Calamares
GenericName=System Installer
TryExec=calamares
Exec=calamares
Exec=pkexec /usr/bin/calamares
Comment=Calamares — System Installer
Icon=calamares
Terminal=false
StartupNotify=false
Categories=Qt;System;
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE policyconfig PUBLIC
"-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
"http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd">
<policyconfig>
<vendor>Calamares</vendor>
<vendor_url>https://github.com/calamares</vendor_url>
<action id="com.github.calamares.calamares.pkexec.run">
<description>Run Installer</description>
<message>Authentication is required to run the installation program</message>
<icon_name>drive-harddisk</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
<allow_active>auth_admin</allow_active>
</defaults>
<annotate key="org.freedesktop.policykit.exec.path">/usr/bin/calamares</annotate>
<annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate>
</action>
</policyconfig>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment