mirror of
				https://github.com/usmannasir/cyberpanel.git
				synced 2025-10-31 02:15:55 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			589 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			589 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/local/CyberCP/bin/python
 | |
| import getpass
 | |
| 
 | |
| def main():
 | |
|     import pwd
 | |
|     if getpass.getuser() == 'root':
 | |
|         userType = "admin"
 | |
|     else:
 | |
|         try:
 | |
|             uid = pwd.getpwnam(getpass.getuser()).pw_uid
 | |
|             userType = 'reseller'
 | |
|         except:
 | |
|             userType = 'user'
 | |
| 
 | |
|     data = """{
 | |
|     "userName": "%s",
 | |
|     "userType": "%s",
 | |
|     "lang": "en",
 | |
|     "assetsUri": "/usr/local/lvemanager",
 | |
|     "baseUri": "/usr/local/lvemanager",
 | |
|     "defaultDomain": "cyberpanel.net"
 | |
| }""" % (getpass.getuser(), userType)
 | |
| 
 | |
|     print(data)
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     main() |