update/cgcs-patch/cgcs-patch/cgcs_patch_id
Sun Austin bae8691911 Fix pep8/flake8 Error
Fix below errors
    E128 continuation line under-indented for visual indent
    E305 expected 2 blank lines after class or function definition, found 1
    E502 the backslash is redundant between brackets
    E722 do not use bare except'
    E741 ambiguous variable name 'xxxxx'
    E999 SyntaxError: invalid token

Change-Id: Ic826a70aed2cda984cbafedae154c4812bfa37b5
Story: 2003429
Task: 24624
Signed-off-by: Sun Austin <austin.sun@intel.com>
2018-09-12 08:40:21 +08:00
..
README.txt StarlingX open source release updates 2018-05-31 07:37:12 -07:00
patch_id_allocator.py Fix print issue for Python 2/3 compatible code. 2018-09-06 13:14:17 +08:00
patch_id_allocator_client.py Fix urllib import issue for Python2/3 compatible code. 2018-09-07 10:39:52 +08:00
patch_id_allocator_server.conf StarlingX open source release updates 2018-05-31 07:37:12 -07:00
patch_id_allocator_server.py Fix pep8/flake8 Error 2018-09-12 08:40:21 +08:00

README.txt

Intended to run on a single build server.  Currently yow-cgts2-lx

# On other build servers
   mkdir -p /localdisk/designer/jenkins/bin
   cp patch_id_allocator_client.py /localdisk/designer/jenkins/bin
   

# On the intended server: e.g. yow-cgts2-lx
   mkdir -p /localdisk/designer/jenkins/bin
   cp *py /localdisk/designer/jenkins/bin/
   mkdir -p /localdisk/designer/jenkins/patch_ids
   sudo cp patch_id_allocator_server.conf /etc/init
   sudo initctl reload-configuration
   sudo start script

# Change to a different server
   edit patch_id_allocator_client.py
   change the line ...
       server = 'yow-cgts2-lx.wrs.com'
   
# TODO: 
   Need to back up the /localdisk/designer/jenkins/patch_ids directory 

# Quick test
   Point your browser at this url:
       http://yow-cgts2-lx:8888/get_patch_id

   expected result is:
       CGCS_None_PATCH_0000

   on each reload of the page, the number increments:
       CGCS_None_PATCH_0001
       CGCS_None_PATCH_0002
       ....