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.
12 lines
223 B
12 lines
223 B
24 years ago
|
#!/bin/sh
|
||
|
|
||
23 years ago
|
#DEBHELPER#
|
||
|
|
||
23 years ago
|
# 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
|
||
|
|