diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 20:07:09 +0200 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 20:07:09 +0200 |
commit | 01e91f9c2196571f16ed1bea8f4d72bddfa0ee6b (patch) | |
tree | 7a8264ab2c28316b2d385877650cd2f09d6b81b0 /share | |
parent | 45f1f9f0a0783479dec16138fdd095291577c843 (diff) | |
download | vyos-live-build-01e91f9c2196571f16ed1bea8f4d72bddfa0ee6b.tar.gz vyos-live-build-01e91f9c2196571f16ed1bea8f4d72bddfa0ee6b.zip |
Adding hook to disable 70-persistent-cd.rules udev rule to prevent udev remember the cd device name both the one of the build system and the one of the live system (Closes: #706926).
Diffstat (limited to 'share')
-rwxr-xr-x | share/hooks/0200-remove-udev-persistent-cd-rules.chroot | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/share/hooks/0200-remove-udev-persistent-cd-rules.chroot b/share/hooks/0200-remove-udev-persistent-cd-rules.chroot new file mode 100755 index 000000000..bdfe52d96 --- /dev/null +++ b/share/hooks/0200-remove-udev-persistent-cd-rules.chroot @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# Remove udev persistent rules. +# +# This removes udev persistent rules that cache the host systems cd drive as +# well as the running live systems cd drive to remember its device name. + +if [ -e /etc/udev/rules.d ] +then + > /etc/udev/rules.d/70-persistent-cd.rules +fi |