root / pykota / trunk / debian / postinst @ 2590

Revision 2590, 226 bytes (checked in by jerome, 18 years ago)

Fix permissions on configuration files after installation

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1#!/bin/sh -e
2# $Id$
3
4. /usr/share/debconf/confmodule
5
6if [ "$1" = "install" ]; then
7        chown -R pykota.pykota /etc/pykota
8        chmod 640 /etc/pykota/pykota.conf
9        chmod 600 /etc/pykota/pykotadmin.conf
10fi
11
12exit 0
Note: See TracBrowser for help on using the browser.