mirror of
https://gitlab.com/bauen1/dn42-roagen
synced 2024-05-11 05:55:36 +00:00
10 lines
110 B
Bash
Executable File
10 lines
110 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "purge" ]; then
|
|
rm -rf /var/lib/bird
|
|
rm -rf /etc/dn42-roagen
|
|
fi
|
|
|
|
exit 0
|