10 lines
146 B
Bash
Executable File
10 lines
146 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
if [[ "$1" == "add" ]]; then
|
|
/etc/kernel/postinst.d/dkms $2
|
|
fi
|
|
|
|
if [[ "$1" == "remove" ]]; then
|
|
/etc/kernel/prerm.d/dkms $2
|
|
fi
|