#!/usr/bin/env python #============================================================================== # Copyright and license info is available in the LICENSE file included with # the Server Deployment Package (SDP), and also available online: # https://swarm.workshop.perforce.com/projects/perforce-software-sdp/view/main/LICENSE #------------------------------------------------------------------------------ """ Usage: keep_group_unset form-in group "/p4/common/bin/triggers/keep_group_unset.py %formfile% %user%" This script is designed to run as a form in trigger on the server. It changes any unlimited group values to unset. """ import os import re import sys import random import shutil user = sys.argv[2] # Exit if the perforce user is modifying the form. if user == "perforce": sys.exit(0) tempfile = str(random.random()) input = open(sys.argv[1], "r") output = open(tempfile, "w") admingroup = False for line in input.readlines(): # Exit if group being modified is the admin group. if re.search(r"^Group:.*admin$", line): admingroup = True break if re.search(r"^Max.*:", line): line = re.sub("unlimited", "unset" , line) output.write(line) input.close() output.close() if admingroup == False: os.remove(sys.argv[1]) shutil.copy(tempfile, sys.argv[1]) os.remove(tempfile) sys.exit(0)
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 19278 | trina | "Forking branch Main of perforce-software-sdp to trina-sdp." | ||
//guest/perforce_software/sdp/main/Server/Unix/p4/common/bin/triggers/keep_group_unset.py | |||||
#5 | 16372 | C. Thomas Tyler |
Follow on changes related to changing default admin user from 'p4admin' to 'perforce' in change in change 16370. //guest/perforce_software/sdp/main/Server/Unix/p4/common/bin/triggers/command_block.py # edit //guest/perforce_software/sdp/main/Server/Unix/p4/common/bin/triggers/keep_group_unset.py # edit //guest/perforce_software/sdp/main/Server/Unix/p4/common/lib/MinP4.pm # edit //guest/perforce_software/sdp/main/Server/Windows/setup/sdp_master_config.ini # edit //guest/perforce_software/sdp/main/Server/test/test_SDP.py # edit //guest/perforce_software/sdp/main/Server/test/test_SDPEnv.py # edit |
||
#4 | 15856 | C. Thomas Tyler |
Replaced the big license comment block with a shortened form referencing the LICENSE file included with the SDP package, and also by the URL for the license file in The Workshop. |
||
#3 | 12974 | Russell C. Jackson (Rusty) | Changed all Python calls to use env | ||
#2 | 12104 | Russell C. Jackson (Rusty) | Updated date to 2015 | ||
#1 | 10148 | C. Thomas Tyler | Promoted the Perforce Server Deployment Package to The Workshop. |