blob: 0c9e5531b4aca846d8f39b04a782b57ba0b1d4ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
. /etc/init.d/functions
if [ $# -ne 0 ]; then
echo $"Usage: sys-unconfig" >&2
exit 1
fi
touch /.unconfigured
rm -f /etc/udev/rules.d/*-persistent-*.rules
halt
|