summaryrefslogtreecommitdiffstats
path: root/configuration
diff options
context:
space:
mode:
authorAlbin Suresh <albin.suresh@softwareag.com>2021-05-26 13:35:53 +0530
committerGitHub <noreply@github.com>2021-05-26 13:35:53 +0530
commit6f578d74cc70698efa4deea31fb3bf6360fcf668 (patch)
treea2f833415e60d98b6d797110aa36d322d6281ac0 /configuration
parent8b3b78e97d743dbe84aad300e71642f33ddf2c55 (diff)
[CIT-353] Support purge option for tedge debian package (#249)
* [CIT-353] Support purge option for tedge debian package
Diffstat (limited to 'configuration')
-rw-r--r--configuration/debian/tedge/postrm8
1 files changed, 8 insertions, 0 deletions
diff --git a/configuration/debian/tedge/postrm b/configuration/debian/tedge/postrm
new file mode 100644
index 00000000..155678ca
--- /dev/null
+++ b/configuration/debian/tedge/postrm
@@ -0,0 +1,8 @@
+#!/bin/sh
+set -e
+
+### Remove configs
+
+if [ "$1" = "purge" ]; then
+ rm -rf /etc/tedge
+fi