~ubuntu-branches/ubuntu/trusty/zentyal-core/trusty

« back to all changes in this revision

Viewing changes to debian/zentyal-core.postrm

  • Committer: Package Import Robot
  • Author(s): Jorge Salamero Sanz
  • Date: 2012-08-28 10:03:33 UTC
  • Revision ID: package-import@ubuntu.com-20120828100333-oz3n5kpav4z0tl27
Tags: 2.3.21+quantal1
New upstream release for Quantal

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
set -e
4
4
 
 
5
#SCRIPTSCOMMON#
 
6
 
5
7
#DEBHELPER#
6
8
 
7
9
case "$1" in
21
23
        rm -rf /var/log/zentyal
22
24
 
23
25
        # delete ebox user
 
26
        stop_ebox_processes
24
27
        deluser --remove-home ebox
 
28
 
 
29
        # delete shared memory data
 
30
        rm -rf /run/shm/zentyal
25
31
    ;;
26
32
esac
27
33