~indicator-network-developers/connman/dhcpcd.packaging

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: ubuntu.builder at gmail
  • Date: 2011-04-12 13:37:57 UTC
  • Revision ID: ubuntu.builder@gmail.com-20110412133757-7e6xnwplnx19vjnh
Import dhcpcd packaging. Based on ubuntu packagin but modified by me.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
if [ "$1" = purge ]; then
 
4
   rm -f /etc/dhcpc/resolv.conf
 
5
   rm -rf /var/lib/dhcpcd
 
6
fi
 
7
 
 
8
#DEBHELPER#
 
9
 
 
10
 
 
11
 
 
12
 
 
13
 
 
14
 
 
15