This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
pfwbged.policy/src/pfwbged/policy/setuphandlers.py

12 lines
262 B
Python

# -*- coding: utf-8 -*-
def isNotCurrentProfile(context):
return context.readDataFile("pfwbgedpolicy_marker.txt") is None
def post_install(context):
"""Post install script"""
if isNotCurrentProfile(context): return
portal = context.getSite()