~ubuntu-branches/debian/squeeze/nas/squeeze

« back to all changes in this revision

Viewing changes to debian/nas-doc.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Steve McIntyre
  • Date: 2004-06-23 01:15:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040623011502-30uqd1dyu47iv2dp
Tags: 1.6d-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
if [ "$1" = "configure" ]; then
4
 
    if [ -d /usr/doc -a ! -e /usr/doc/nas-doc -a -d /usr/share/doc/nas-doc ]; then
5
 
        ln -sf ../share/doc/nas-doc /usr/doc/nas-doc
6
 
    fi
7
 
fi
8