7 lines
74 B
Bash
Executable File
7 lines
74 B
Bash
Executable File
#! /bin/sh
|
|
set -e
|
|
|
|
if [ "$1" == "purge" ]; then
|
|
rm -rf /etc/udevil
|
|
fi
|