File: postrm

package info (click to toggle)
waagent 2.15.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 9,820 kB
  • sloc: python: 60,164; xml: 4,126; sh: 1,354; makefile: 22
file content (12 lines) | stat: -rw-r--r-- 128 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# postrm script for #PACKAGE#

set -e

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

#DEBHELPER#

exit 0