mirror of
https://github.com/fspc/gbootroot.git
synced 2025-02-22 08:33:24 -05:00
12 lines
223 B
Bash
12 lines
223 B
Bash
#!/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
|
|
|