committing changes in /etc made by "-bash"
Package changes:
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
if [[ "$1" == "add" ]]; then
|
||||
/etc/kernel/postinst.d/dkms $2
|
||||
if [ "$1" = "add" ]; then
|
||||
/etc/kernel/postinst.d/dkms "$2"
|
||||
fi
|
||||
|
||||
if [[ "$1" == "remove" ]]; then
|
||||
/etc/kernel/prerm.d/dkms $2
|
||||
if [ "$1" = "remove" ]; then
|
||||
/etc/kernel/prerm.d/dkms "$2"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user