File: postrm

package info (click to toggle)
waagent 2.12.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,780 kB
  • sloc: python: 55,011; xml: 3,325; sh: 1,183; makefile: 22
file content (12 lines) | stat: -rw-r--r-- 128 bytes parent folder | download | duplicates (7)
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