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