9 lines
247 B
Bash
9 lines
247 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# This is a hook for live-helper(7) to remove udev persistent device generator
|
||
|
# rules.
|
||
|
# To enable it, copy or symlink this hook into your config/chroot_local-hooks
|
||
|
# directory.
|
||
|
|
||
|
rm -f /etc/udev/rules.d/*persistent-net-generator.rules
|