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])