File: minetest-server.postrm

package info (click to toggle)
minetest 5.3.0%2Brepack-2.1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 42,500 kB
  • sloc: cpp: 134,290; xml: 46,174; ansic: 4,423; sh: 1,060; java: 455; python: 252; makefile: 35
file content (12 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e


if [ "$1" = "purge" ] ; then
    rm -rf /var/games/minetest-server
    rm -rf /var/log/minetest
    rmdir --ignore-fail-on-non-empty /var/games
fi

#DEBHELPER#