mirror of https://gitlab.com/bashrc2/epicyon
Set registration later
parent
0aa6252077
commit
e821dd9612
34
epicyon.py
34
epicyon.py
|
@ -910,23 +910,6 @@ if args.resetregistrations:
|
||||||
setConfigParam(baseDir, 'registrationsRemaining', str(maxRegistrations))
|
setConfigParam(baseDir, 'registrationsRemaining', str(maxRegistrations))
|
||||||
print('Number of new registrations reset to ' + str(maxRegistrations))
|
print('Number of new registrations reset to ' + str(maxRegistrations))
|
||||||
|
|
||||||
# whether new registrations are open or closed
|
|
||||||
if args.registration:
|
|
||||||
if args.registration.lower() == 'open':
|
|
||||||
registration = getConfigParam(baseDir, 'registration')
|
|
||||||
if not registration:
|
|
||||||
setConfigParam(baseDir, 'registrationsRemaining',
|
|
||||||
str(maxRegistrations))
|
|
||||||
else:
|
|
||||||
if registration != 'open':
|
|
||||||
setConfigParam(baseDir, 'registrationsRemaining',
|
|
||||||
str(maxRegistrations))
|
|
||||||
setConfigParam(baseDir, 'registration', 'open')
|
|
||||||
print('New registrations open')
|
|
||||||
else:
|
|
||||||
setConfigParam(baseDir, 'registration', 'closed')
|
|
||||||
print('New registrations closed')
|
|
||||||
|
|
||||||
# unique ID for the instance
|
# unique ID for the instance
|
||||||
instanceId = getConfigParam(baseDir, 'instanceId')
|
instanceId = getConfigParam(baseDir, 'instanceId')
|
||||||
if not instanceId:
|
if not instanceId:
|
||||||
|
@ -2550,6 +2533,23 @@ if setTheme(baseDir, themeName, domain,
|
||||||
args.allowLocalNetworkAccess, args.language):
|
args.allowLocalNetworkAccess, args.language):
|
||||||
print('Theme set to ' + themeName)
|
print('Theme set to ' + themeName)
|
||||||
|
|
||||||
|
# whether new registrations are open or closed
|
||||||
|
if args.registration:
|
||||||
|
if args.registration.lower() == 'open':
|
||||||
|
registration = getConfigParam(baseDir, 'registration')
|
||||||
|
if not registration:
|
||||||
|
setConfigParam(baseDir, 'registrationsRemaining',
|
||||||
|
str(maxRegistrations))
|
||||||
|
else:
|
||||||
|
if registration != 'open':
|
||||||
|
setConfigParam(baseDir, 'registrationsRemaining',
|
||||||
|
str(maxRegistrations))
|
||||||
|
setConfigParam(baseDir, 'registration', 'open')
|
||||||
|
print('New registrations open')
|
||||||
|
else:
|
||||||
|
setConfigParam(baseDir, 'registration', 'closed')
|
||||||
|
print('New registrations closed')
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
runDaemon(args.logLoginFailures,
|
runDaemon(args.logLoginFailures,
|
||||||
args.city,
|
args.city,
|
||||||
|
|
Loading…
Reference in New Issue