Add RC maturity in wapt.ini. This will deploy tested, but major upgrades
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。

20 行
679 B

#!/usr/bin/python
from setuphelpers import *
uninstallkey=[]
newmaturity = 'RC'
def install():
if not newmaturity in WAPT.maturities:
WAPT.maturities.append(newmaturity)
inifile_writestring(WAPT.config_filename,'global','maturities',','.join(WAPT.maturities))
def uninstall():
if newmaturity in WAPT.maturities:
WAPT.maturities.remove(newmaturity)
inifile_writestring(WAPT.config_filename,'global','maturities',','.join(WAPT.maturities))
if not inifile_readstring(WAPT.config_filename,'global','maturities',','.join(WAPT.maturities)) :
inifile_deleteoption(WAPT.config_filename,'global','maturities')