aboutsummaryrefslogtreecommitdiffstats
path: root/bin/isodumper
blob: c5dc766c21aa6d79992ded20e931e65da3da76ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
#

# Copyright (C) 2013 THE isodumper'S COPYRIGHT HOLDER
# This file is distributed under the same license as the isodumper package.

# Author isodumper software= papoteur <papoteur@mageialinux-online.org>
# Author binary polkit file= Geiger David <david.david@mageialinux-online.org>

if  [[ "$EUID" != "0" ]] ; then
    exec /usr/bin/pkexec /usr/libexec/isodumper "$@"
else
    exec /usr/libexec/isodumper "$@"
fi