Dashboard
PHP:
7.4.33
OS:
Linux
User:
sortthru
/
/
usr
/
share
/
oracle-cloud-agent
/
plugins
/
osms
/
osms
📤 Upload
📝 New File
📁 New Folder
Close
Editing: distro.py
# Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved. # Licensed under the Universal Permissive License v 1.0 as shown at https://opensource.org/licenses/UPL. import sys if sys.version_info[0] == 3: from .rpmutils import ( get_installed_package_list, verify_packages ) from .dnfutils import ( package_full_update, package_remove, package_update ) else: from rpmutils import ( get_installed_package_list, verify_packages ) from yumutils import ( package_full_update, package_remove, package_update )
Save
Cancel