diff options
author | Tom Grennan <tgrennan@io.vyatta.com> | 2007-12-13 18:35:20 -0800 |
---|---|---|
committer | Tom Grennan <tgrennan@io.vyatta.com> | 2007-12-13 18:35:20 -0800 |
commit | e6ed55f7593a0f4bc2700bc7b90903bb012e27f6 (patch) | |
tree | b0f2c082f34c8a134631e0cae21314e164720243 /debian/vyatta-cfg-system.postrm | |
parent | 5ba8cf8393030d75c03a15551a57831f3f0908a4 (diff) | |
download | vyatta-cfg-quagga-e6ed55f7593a0f4bc2700bc7b90903bb012e27f6.tar.gz vyatta-cfg-quagga-e6ed55f7593a0f4bc2700bc7b90903bb012e27f6.zip |
process device persistence through udev rules rather than init script
Diffstat (limited to 'debian/vyatta-cfg-system.postrm')
-rw-r--r-- | debian/vyatta-cfg-system.postrm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/vyatta-cfg-system.postrm b/debian/vyatta-cfg-system.postrm new file mode 100644 index 00000000..d668f55d --- /dev/null +++ b/debian/vyatta-cfg-system.postrm @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ "$1" = "purge" ]; then + rm -f /etc/udev/rules.d/*vyatta-net.rules +fi + +# Local Variables: +# mode: shell-script +# sh-indentation: 4 +# End: |