diff options
Diffstat (limited to 'test/microdia/post-install')
-rw-r--r-- | test/microdia/post-install | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/microdia/post-install b/test/microdia/post-install new file mode 100644 index 000000000..81a8d1263 --- /dev/null +++ b/test/microdia/post-install @@ -0,0 +1,8 @@ +#!/bin/bash +# MAJ modules +depmod +# Ajout du module dans /etc/sysconfig/modules +if ! grep "sn9c20x" /etc/sysconfig/modules >/dev/null; then + sed -i '/End/ i sn9c20x' /etc/sysconfig/modules +fi + |