HEX
Server: nginx/1.16.1
System: Linux ecs-04358622 4.19.90-2107.6.0.0100.oe1.bclinux.x86_64 #1 SMP Wed Dec 1 19:59:44 CST 2021 x86_64
User: nginx (994)
PHP: 8.0.0
Disabled: NONE
Upload Files
File: //bin/sys-id
#!/usr/bin/python3
# -*- coding: utf-8 -*- 
#
# Copyright (c) 2017 BigCloud Enterprise Linux, Inc.
#
# Authors: Rongyin<rongyin@cmss.chinamobile.com>
#
# This software is licensed to you under the GNU General Public License,
# version 2 (GPLv2). There is NO WARRANTY for this software, express or
# implied, including the implied warranties of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
# along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
#
# BigCloud Enterprise Linux trademarks are not licensed under GPLv2. 
# No permission is granted to use or replicate trademarks that are 
# incorporated in this software or its documentation.
#

if __name__ != '__main__':
    raise ImportError("module cannot be imported")

import sys

sys.path.append("/usr/lib64/python3.6/site-packages/")
from license_manager.validity import get_system_id

if __name__ == "__main__":
     return_code = get_system_id()
     print (return_code[1])