File: php-common.postrm.in

package info (click to toggle)
php-defaults 49
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 168 kB
  • ctags: 28
  • sloc: sh: 786; makefile: 63
file content (16 lines) | stat: -rw-r--r-- 162 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# postrm script for php-common
#
# see: dh_installdeb(1)

set -e

if [ "$1" = "purge" ]; then
    rm -rf /var/lib/php
fi

#DIVERT#

#DEBHELPER#

exit 0