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.
16 lines
360 B
16 lines
360 B
#!/bin/sh
|
|
|
|
|
|
if [ ! -e /usr/share/gbootroot/yard/Replacements/dev/ubd0 ]; then
|
|
mknod /usr/share/gbootroot/yard/Replacements/dev/ubd0 b 98 0
|
|
fi
|
|
|
|
#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
|
|
|
|
|