~ubuntu-branches/ubuntu/trusty/policyrcd-script-zg2/trusty

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Bazaar Package Importer
  • Author(s): Marc Haber
  • Date: 2005-10-22 17:47:10 UTC
  • Revision ID: james.westby@ubuntu.com-20051022174710-bp9y1lhnaavo2atq
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
set -e
 
4
 
 
5
if [ "$1" != "upgrade" ]; then
 
6
  update-alternatives --remove policy-rc.d /usr/sbin/zg-policy-rc.d
 
7
fi
 
8
  
 
9
exit 0
 
10