mirror of https://github.com/fspc/gbootroot.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
223 B
11 lines
223 B
#!/bin/sh
|
|
|
|
#DEBHELPER#
|
|
|
|
# Make uml_net setuid, but respects Sysadm's choices.
|
|
|
|
if [ -z "$(dpkg-statoverride --list /usr/bin/uml_net)" ]; then
|
|
chown root.root /usr/bin/uml_net
|
|
chmod 4755 /usr/bin/uml_net
|
|
fi
|
|
|
|
|