mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-09 18:52:16 +03:00
7 lines
92 B
Bash
7 lines
92 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -d /etc/ahenk ] && [ "$1" = "purge" ];then
|
|
rm -rf /etc/ahenk
|
|
fi
|