| Server IP : 74.91.139.10 / Your IP : 10.45.147.122 Web Server : Apache/2.4.67 (Unix) System : Linux prod-iad-shwpweb1001b 5.14.0-687.26.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Jul 14 16:32:02 EDT 2026 x86_64 User : FAsyXTyKGY ( 3004) PHP Version : 8.2.30 Disable Function : passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/oracle-cloud-agent/plugins/osms/osms/ |
Upload File : |
# 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
)