~binli/ubuntu/vivid/pulseaudio/load-extcon-module

« back to all changes in this revision

Viewing changes to debian/pulseaudio.postrm

  • Committer: Bin Li
  • Date: 2016-01-23 15:04:48 UTC
  • Revision ID: bin.li@canonical.com-20160123150448-5ockvw4p5xxntda4
init the 1:6.0-0ubuntu9.15 from silo 12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
#DEBHELPER#
 
6
 
 
7
if [ "$1" = "purge" ] ; then
 
8
        deluser --quiet --system pulse > /dev/null || true
 
9
        delgroup --quiet --system pulse-access > /dev/null || true
 
10
        delgroup --quiet --system pulse-rt > /dev/null || true
 
11
fi
 
12
 
 
13
exit 0