File: postrm

package info (click to toggle)
raysession 0.17.4-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 19,184 kB
  • sloc: python: 44,463; sh: 1,538; makefile: 225; xml: 86
file content (12 lines) | stat: -rw-r--r-- 107 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

case "$1" in
  remove)
    rm -rf /usr/share/raysession
  ;;
  *)
  ;;
esac

#DEBHELPER#