├── .arclint ├── .github └── pull_request_template.md ├── .gitignore ├── .hgignore ├── .hgtags ├── CONTRIBUTING.md ├── LICENSE-CPIO ├── LICENSE-MINISAT ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── doc ├── Makefile ├── README.guide ├── TODO ├── actions.rst ├── actions.txt ├── apt.txt ├── boot_environments.txt ├── case-outline.txt ├── catalog-v1.txt ├── catalog.txt ├── client_api_versions.txt ├── deduction.txt ├── depot.rst ├── depot.txt ├── dev-guide │ ├── Makefile │ ├── appendix-a.txt │ ├── appendix-b.txt │ ├── chpt1.txt │ ├── chpt10.txt │ ├── chpt11.txt │ ├── chpt12.txt │ ├── chpt13.txt │ ├── chpt14.txt │ ├── chpt2.txt │ ├── chpt3.txt │ ├── chpt4.txt │ ├── chpt5.txt │ ├── chpt6.txt │ ├── chpt7.txt │ ├── chpt8.txt │ ├── chpt9.txt │ ├── createpdf.patch │ ├── dev-guide.style │ ├── developer-guide.txt │ ├── docbook.patch │ ├── macros.txt │ ├── ologo.png │ └── pkg-block-logo.png ├── directory_perms.txt ├── elf-jar-handling.txt ├── es-requirements.txt ├── facets.txt ├── file-metadata.txt ├── filter.txt ├── guide-basic-ops.rst ├── guide-implementation-depot.rst ├── guide-main.rst ├── guide-metadata-conventions.rst ├── guide-naming-conventions.rst ├── guide-pkg-states.rst ├── guide-publication-protocol.rst ├── guide-repository-format.rst ├── guide-retrieval-protocol.rst ├── guide-txn-states.rst ├── history.txt ├── image.rst ├── image.txt ├── license.txt ├── linked-images.txt ├── macros.rst ├── manifest_preprocessor.txt ├── mediated-links.txt ├── multi-platform.rst ├── multi-platform.txt ├── on-disk-format.txt ├── one-pager-main.txt ├── parallel-linked-images.txt ├── pkg-guide-web.css ├── pkg-states.rst ├── pkg-states.txt ├── pkgs-and-groups.txt ├── protocol-versioning.txt ├── publication.txt ├── publisher_search_order.txt ├── razor.txt ├── repository.txt ├── rest.txt ├── rfes.txt ├── sat.txt ├── scripting.txt ├── search.txt ├── server_api_versions.txt ├── signed_manifests.txt ├── system_repository.txt ├── tags-and-attributes.txt ├── transaction-order.txt ├── usr-setuid-bins.txt ├── versions.txt ├── wos-filetype-stats.txt └── xml.txt ├── exception_lists ├── binary_files ├── cddlchk ├── cdm ├── copyright ├── permchk └── spell ├── src ├── Makefile ├── Makefile.constants ├── cffi_src │ ├── Makefile │ ├── build_arch.py │ ├── build_sha512_t.py │ ├── build_sysattr.py │ └── build_syscallat.py ├── client.py ├── cronjob-removal.sh ├── depot-config.py ├── depot.py ├── man │ ├── Makefile │ ├── ja_JP │ │ ├── pkg.1 │ │ ├── pkg.7 │ │ ├── pkg.depot-config.8 │ │ ├── pkg.depotd.8 │ │ ├── pkg.sysrepo.8 │ │ ├── pkgdepend.1 │ │ ├── pkgdiff.1 │ │ ├── pkgfmt.1 │ │ ├── pkglint.1 │ │ ├── pkgmerge.1 │ │ ├── pkgmogrify.1 │ │ ├── pkgrecv.1 │ │ ├── pkgrepo.1 │ │ ├── pkgsend.1 │ │ ├── pkgsign.1 │ │ └── pkgsurf.1 │ ├── pkg.1 │ ├── pkg.7 │ ├── pkg.depot-config.8 │ ├── pkg.depotd.8 │ ├── pkg.sysrepo.8 │ ├── pkgdepend.1 │ ├── pkgdiff.1 │ ├── pkgfmt.1 │ ├── pkglint.1 │ ├── pkgmerge.1 │ ├── pkgmogrify.1 │ ├── pkgrecv.1 │ ├── pkgrepo.1 │ ├── pkgsend.1 │ ├── pkgsign.1 │ ├── pkgsurf.1 │ └── zh_CN │ │ ├── pkg.1 │ │ ├── pkg.7 │ │ ├── pkg.depot-config.8 │ │ ├── pkg.depotd.8 │ │ ├── pkg.sysrepo.8 │ │ ├── pkgdepend.1 │ │ ├── pkgdiff.1 │ │ ├── pkgfmt.1 │ │ ├── pkglint.1 │ │ ├── pkgmerge.1 │ │ ├── pkgmogrify.1 │ │ ├── pkgrecv.1 │ │ ├── pkgrepo.1 │ │ ├── pkgsend.1 │ │ ├── pkgsign.1 │ │ └── pkgsurf.1 ├── modules │ ├── Makefile │ ├── __init__.py │ ├── _misc.c │ ├── _varcet.c │ ├── actions │ │ ├── __init__.py │ │ ├── _actions.c │ │ ├── _common.c │ │ ├── attribute.py │ │ ├── depend.py │ │ ├── directory.py │ │ ├── driver.py │ │ ├── file.py │ │ ├── generic.py │ │ ├── group.py │ │ ├── hardlink.py │ │ ├── legacy.py │ │ ├── license.py │ │ ├── link.py │ │ ├── signature.py │ │ ├── unknown.py │ │ └── user.py │ ├── altroot.py │ ├── api_common.py │ ├── arch.py │ ├── bundle │ │ ├── DirectoryBundle.py │ │ ├── SolarisPackageDatastreamBundle.py │ │ ├── SolarisPackageDirBundle.py │ │ ├── TarBundle.py │ │ └── __init__.py │ ├── catalog.py │ ├── cfgfiles.py │ ├── choose.py │ ├── client │ │ ├── __init__.py │ │ ├── actuator.py │ │ ├── api.py │ │ ├── api_errors.py │ │ ├── bootenv.py │ │ ├── client_api.py │ │ ├── debugvalues.py │ │ ├── firmware.py │ │ ├── history.py │ │ ├── image.py │ │ ├── imageconfig.py │ │ ├── imageplan.py │ │ ├── imagetypes.py │ │ ├── indexer.py │ │ ├── linkedimage │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── system.py │ │ │ └── zone.py │ │ ├── options.py │ │ ├── pkg_solver.py │ │ ├── pkgdefs.py │ │ ├── pkgplan.py │ │ ├── pkgremote.py │ │ ├── plandesc.py │ │ ├── printengine.py │ │ ├── progress.py │ │ ├── publisher.py │ │ ├── query_parser.py │ │ ├── rad_pkg.py │ │ ├── sigpolicy.py │ │ └── transport │ │ │ ├── __init__.py │ │ │ ├── engine.py │ │ │ ├── exception.py │ │ │ ├── fileobj.py │ │ │ ├── mdetect.py │ │ │ ├── repo.py │ │ │ ├── stats.py │ │ │ └── transport.py │ ├── config.py │ ├── cpiofile.py │ ├── dependency.py │ ├── depotcontroller.py │ ├── digest.py │ ├── elf.c │ ├── elfextract.c │ ├── elfextract.h │ ├── facet.py │ ├── file_layout │ │ ├── __init__.py │ │ ├── file_manager.py │ │ └── layout.py │ ├── flavor │ │ ├── __init__.py │ │ ├── base.py │ │ ├── depthlimitedmf.py │ │ ├── elf.py │ │ ├── hardlink.py │ │ ├── python.py │ │ ├── script.py │ │ └── smf_manifest.py │ ├── fmri.py │ ├── indexer.py │ ├── liblist.c │ ├── liblist.h │ ├── lint │ │ ├── __init__.py │ │ ├── base.py │ │ ├── config.py │ │ ├── engine.py │ │ ├── log.py │ │ ├── opensolaris.py │ │ ├── pkglint_action.py │ │ └── pkglint_manifest.py │ ├── lockfile.py │ ├── manifest.py │ ├── mediator.py │ ├── misc.py │ ├── mogrify.py │ ├── no_site_packages │ │ └── __init__.py │ ├── nrlock.py │ ├── p5i.py │ ├── p5p.py │ ├── p5s.py │ ├── pipeutils.py │ ├── pkggzip.py │ ├── pkgtarfile.py │ ├── portable │ │ ├── __init__.py │ │ ├── os_aix.py │ │ ├── os_darwin.py │ │ ├── os_sunos.py │ │ ├── os_unix.py │ │ ├── os_windows.py │ │ └── util.py │ ├── publish │ │ ├── __init__.py │ │ ├── dependencies.py │ │ └── transaction.py │ ├── query_parser.py │ ├── search_errors.py │ ├── search_storage.py │ ├── server │ │ ├── __init__.py │ │ ├── api.py │ │ ├── api_errors.py │ │ ├── depot.py │ │ ├── face.py │ │ ├── feed.py │ │ ├── query_parser.py │ │ ├── repository.py │ │ └── transaction.py │ ├── sha512_t.py │ ├── smf.py │ ├── solver │ │ ├── LICENSE │ │ ├── README │ │ ├── py_solver.c │ │ ├── solver.c │ │ ├── solver.h │ │ └── vec.h │ ├── sysattr.py │ ├── syscallat.py │ ├── sysvpkg.py │ ├── variant.py │ └── version.py ├── pkg │ ├── Makefile │ ├── external_deps.txt │ ├── external_deps_fragment.pkglintrc │ ├── ips-pkglintrc │ ├── license_files │ │ ├── cr_Oracle │ │ ├── lic_CDDL │ │ ├── lic_gustaebel │ │ ├── lic_minisat │ │ └── lic_yui │ ├── manifests │ │ ├── SUNWipkg-gui.p5m │ │ ├── SUNWipkg-um.p5m │ │ ├── SUNWipkg.p5m │ │ ├── consolidation:ips:ips-incorporation.p5m │ │ ├── consolidation:ips:ips-message-files.p5m │ │ ├── developer:opensolaris:pkg5.p5m │ │ ├── package:pkg-311.p5m │ │ ├── package:pkg-34.p5m │ │ ├── package:pkg-37.p5m │ │ ├── package:pkg-39.p5m │ │ ├── package:pkg.p5m │ │ ├── package:pkg:depot.p5m │ │ ├── package:pkg:oci.p5m │ │ ├── package:pkg:package-manager.p5m │ │ ├── package:pkg:system-repository.p5m │ │ ├── package:pkg:update-manager.p5m │ │ └── package:pkg:zones-proxy.p5m │ ├── pkglint_whitelist.txt │ └── transforms │ │ ├── compare-strip │ │ ├── defaults │ │ ├── find-links │ │ ├── incorp │ │ ├── incorp2 │ │ ├── nopublish │ │ └── strip_versions ├── pkgdep.py ├── pkgrepo.py ├── po │ ├── ChangeLog │ ├── LINGUAS │ ├── Makefile │ ├── Makevars │ ├── POTFILES.in │ ├── POTFILES.skip │ ├── ar.po │ ├── ca.po │ ├── cs.po │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── he.po │ ├── hu.po │ ├── id.po │ ├── it.po │ ├── ja.po │ ├── ko.po │ ├── nl.po │ ├── pl.po │ ├── pt_BR.po │ ├── ru.po │ ├── sk.po │ ├── sv.po │ ├── zh_CN.po │ ├── zh_HK.po │ └── zh_TW.po ├── publish.py ├── pull.py ├── rad-invoke.py ├── sign.py ├── svc │ ├── Makefile │ ├── pkg-auto-update-cleanup-enable.xml │ ├── pkg-auto-update.xml │ ├── pkg-depot.xml │ ├── pkg-mdns.xml │ ├── pkg-mirror.xml │ ├── pkg-oci-config.xml │ ├── pkg-repositories-setup.xml │ ├── pkg-server.xml │ ├── pkg-sysrepo-cache.xml │ ├── pkg-system-repository.xml │ ├── pkg5_include.sh │ ├── svc-pkg-auto-update-cleanup.py │ ├── svc-pkg-auto-update.py │ ├── svc-pkg-depot │ ├── svc-pkg-mdns │ ├── svc-pkg-mirror │ ├── svc-pkg-oci-config.py │ ├── svc-pkg-repositories-setup │ ├── svc-pkg-server │ ├── svc-pkg-sysrepo │ ├── svc-pkg-sysrepo-cache │ ├── zoneproxy-client.xml │ └── zoneproxyd.xml ├── sysrepo.py ├── tests │ ├── README │ ├── api │ │ ├── __init__.py │ │ ├── t_action.py │ │ ├── t_altroot.py │ │ ├── t_api.py │ │ ├── t_api_info.py │ │ ├── t_api_list.py │ │ ├── t_api_refresh.py │ │ ├── t_api_search.py │ │ ├── t_async_rpc.py │ │ ├── t_bootenv.py │ │ ├── t_catalog.py │ │ ├── t_client.py │ │ ├── t_config.py │ │ ├── t_dependencies.py │ │ ├── t_elf.py │ │ ├── t_fast_quote.py │ │ ├── t_file_manager.py │ │ ├── t_fmri.py │ │ ├── t_history.py │ │ ├── t_imageconfig.py │ │ ├── t_indexer.py │ │ ├── t_linked_image.py │ │ ├── t_manifest.py │ │ ├── t_misc.py │ │ ├── t_p5i.py │ │ ├── t_p5p.py │ │ ├── t_pkg_api_fix.py │ │ ├── t_pkg_api_hydrate.py │ │ ├── t_pkg_api_install.py │ │ ├── t_pkg_api_revert.py │ │ ├── t_pkglint.py │ │ ├── t_pkgtarfile.py │ │ ├── t_plat.py │ │ ├── t_printengine.py │ │ ├── t_progress.py │ │ ├── t_publisher.py │ │ ├── t_sha512_t.py │ │ ├── t_smf.py │ │ ├── t_solver.py │ │ ├── t_sysattr.py │ │ ├── t_unix_usergrp.py │ │ ├── t_variant.py │ │ ├── t_version.py │ │ └── testutils.py │ ├── bandit-baseline.json │ ├── banditrc │ ├── baseline-311.txt │ ├── baseline.py │ ├── certgenerator.py │ ├── cli │ │ ├── __init__.py │ │ ├── t_actuators.py │ │ ├── t_change_facet.py │ │ ├── t_change_variant.py │ │ ├── t_client_api.py │ │ ├── t_colliding_links.py │ │ ├── t_depot_config.py │ │ ├── t_fix.py │ │ ├── t_https.py │ │ ├── t_lock.py │ │ ├── t_origin_cpu.py │ │ ├── t_origin_fw.py │ │ ├── t_pkg_R_option.py │ │ ├── t_pkg_avoid.py │ │ ├── t_pkg_composite.py │ │ ├── t_pkg_contents.py │ │ ├── t_pkg_depotd.py │ │ ├── t_pkg_errors.py │ │ ├── t_pkg_freeze.py │ │ ├── t_pkg_help.py │ │ ├── t_pkg_history.py │ │ ├── t_pkg_hydrate.py │ │ ├── t_pkg_image_create.py │ │ ├── t_pkg_image_update.py │ │ ├── t_pkg_info.py │ │ ├── t_pkg_initinstall.py │ │ ├── t_pkg_install.py │ │ ├── t_pkg_intent.py │ │ ├── t_pkg_linked.py │ │ ├── t_pkg_list.py │ │ ├── t_pkg_mediated.py │ │ ├── t_pkg_modified.py │ │ ├── t_pkg_nasty.py │ │ ├── t_pkg_property.py │ │ ├── t_pkg_publisher.py │ │ ├── t_pkg_rebuild_index.py │ │ ├── t_pkg_refresh.py │ │ ├── t_pkg_revert.py │ │ ├── t_pkg_search.py │ │ ├── t_pkg_sysrepo.py │ │ ├── t_pkg_temp_sources.py │ │ ├── t_pkg_terminal.py │ │ ├── t_pkg_uninstall.py │ │ ├── t_pkg_varcet.py │ │ ├── t_pkg_verify.py │ │ ├── t_pkg_version.py │ │ ├── t_pkgdep.py │ │ ├── t_pkgdep_resolve.py │ │ ├── t_pkgdiff.py │ │ ├── t_pkgfmt.py │ │ ├── t_pkglint.py │ │ ├── t_pkgmerge.py │ │ ├── t_pkgmogrify.py │ │ ├── t_pkgrecv.py │ │ ├── t_pkgrepo.py │ │ ├── t_pkgsend.py │ │ ├── t_pkgsign.py │ │ ├── t_pkgsurf.py │ │ ├── t_publish_api.py │ │ ├── t_sysrepo.py │ │ ├── t_util_merge.py │ │ ├── t_util_update_file_layout.py │ │ ├── t_variants.py │ │ ├── testdata │ │ │ └── empty │ │ └── testutils.py │ ├── interactive │ │ ├── runprintengine.py │ │ └── runprogress.py │ ├── perf │ │ ├── actionbench.py │ │ ├── fmribench.py │ │ ├── manbench.py │ │ └── membench.py │ ├── pkg5testenv.py │ ├── pkg5unittest.py │ ├── pycodestyle-whitelist.txt │ ├── pylintrc │ ├── ro_data │ │ ├── 88591enc.copyright │ │ ├── badencoding.relnote │ │ ├── elftest.so.1 │ │ ├── elftest.so.2 │ │ ├── pkg.help.eucJP.expected.out │ │ ├── signing_certs │ │ │ ├── generate_certs.py │ │ │ └── produced │ │ │ │ ├── chain_certs │ │ │ │ ├── 01.pem │ │ │ │ ├── 02.pem │ │ │ │ ├── 03.pem │ │ │ │ ├── 04.pem │ │ │ │ ├── 05.pem │ │ │ │ ├── 08.pem │ │ │ │ ├── 0A.pem │ │ │ │ ├── 0C.pem │ │ │ │ ├── 0D.pem │ │ │ │ ├── 10.pem │ │ │ │ ├── 1A.pem │ │ │ │ ├── 1C.pem │ │ │ │ ├── 1E.pem │ │ │ │ ├── 20.pem │ │ │ │ ├── 22.pem │ │ │ │ ├── 26.pem │ │ │ │ ├── 28.pem │ │ │ │ ├── ch1.1_ta3_cert.pem │ │ │ │ ├── ch1.1_ta4_cert.pem │ │ │ │ ├── ch1.2_ta3_cert.pem │ │ │ │ ├── ch1.3_ta3_cert.pem │ │ │ │ ├── ch1.4_ta3_cert.pem │ │ │ │ ├── ch1_ta1_cert.pem │ │ │ │ ├── ch1_ta3_cert.pem │ │ │ │ ├── ch1_ta4_cert.pem │ │ │ │ ├── ch1_ta5_cert.pem │ │ │ │ ├── ch2_ta1_cert.pem │ │ │ │ ├── ch3_ta1_cert.pem │ │ │ │ ├── ch4.3_ta1_cert.pem │ │ │ │ ├── ch4_ta1_cert.pem │ │ │ │ ├── ch5.1_ta1_cert.pem │ │ │ │ ├── ch5.2_ta1_cert.pem │ │ │ │ ├── ch5.3_ta1_cert.pem │ │ │ │ └── ch5_ta1_cert.pem │ │ │ │ ├── code_signing_certs │ │ │ │ ├── 06.pem │ │ │ │ ├── 07.pem │ │ │ │ ├── 09.pem │ │ │ │ ├── 0B.pem │ │ │ │ ├── 0E.pem │ │ │ │ ├── 0F.pem │ │ │ │ ├── 11.pem │ │ │ │ ├── 12.pem │ │ │ │ ├── 13.pem │ │ │ │ ├── 14.pem │ │ │ │ ├── 15.pem │ │ │ │ ├── 16.pem │ │ │ │ ├── 17.pem │ │ │ │ ├── 18.pem │ │ │ │ ├── 19.pem │ │ │ │ ├── 1B.pem │ │ │ │ ├── 1D.pem │ │ │ │ ├── 1F.pem │ │ │ │ ├── 21.pem │ │ │ │ ├── 23.pem │ │ │ │ ├── 24.pem │ │ │ │ ├── 25.pem │ │ │ │ ├── 27.pem │ │ │ │ ├── 29.pem │ │ │ │ ├── 2A.pem │ │ │ │ ├── 2B.pem │ │ │ │ ├── 2C.pem │ │ │ │ ├── 2D.pem │ │ │ │ ├── 2E.pem │ │ │ │ ├── 2F.pem │ │ │ │ ├── cs1_ch1.1_ta3_cert.pem │ │ │ │ ├── cs1_ch1.1_ta4_cert.pem │ │ │ │ ├── cs1_ch1.2_ta3_cert.pem │ │ │ │ ├── cs1_ch1.3_ta3_cert.pem │ │ │ │ ├── cs1_ch1.4_ta3_cert.pem │ │ │ │ ├── cs1_ch1_ta3_cert.pem │ │ │ │ ├── cs1_ch1_ta4_cert.pem │ │ │ │ ├── cs1_ch1_ta5_cert.pem │ │ │ │ ├── cs1_ch5.1_ta1_cert.pem │ │ │ │ ├── cs1_ch5.2_ta1_cert.pem │ │ │ │ ├── cs1_ch5.3_ta1_cert.pem │ │ │ │ ├── cs1_ch5_ta1_cert.pem │ │ │ │ ├── cs1_cs8_ch1_ta3_cert.pem │ │ │ │ ├── cs1_ta10_cert.pem │ │ │ │ ├── cs1_ta11_cert.pem │ │ │ │ ├── cs1_ta2_cert.pem │ │ │ │ ├── cs1_ta6_cert.pem │ │ │ │ ├── cs1_ta7_cert.pem │ │ │ │ ├── cs1_ta8_cert.pem │ │ │ │ ├── cs1_ta9_cert.pem │ │ │ │ ├── cs2_ch1_ta3_cert.pem │ │ │ │ ├── cs2_ch1_ta4_cert.pem │ │ │ │ ├── cs2_ch5_ta1_cert.pem │ │ │ │ ├── cs3_ch1_ta3_cert.pem │ │ │ │ ├── cs3_ch1_ta4_cert.pem │ │ │ │ ├── cs4_ch1_ta3_cert.pem │ │ │ │ ├── cs5_ch1_ta3_cert.pem │ │ │ │ ├── cs7_ch1_ta3_cert.pem │ │ │ │ ├── cs8_ch1_ta3_cert.pem │ │ │ │ ├── cs9_ch1_ta3_cert.pem │ │ │ │ └── cust_cert.pem │ │ │ │ ├── combined_cas.pem │ │ │ │ ├── crl │ │ │ │ ├── ch1.1_ta4_crl.pem │ │ │ │ ├── ch1_ta4_crl.pem │ │ │ │ ├── ch5_ta1_crl.pem │ │ │ │ └── ta5_crl.pem │ │ │ │ ├── index │ │ │ │ ├── index.attr │ │ │ │ ├── keys │ │ │ │ ├── ch1.1_ta3_key.pem │ │ │ │ ├── ch1.1_ta4_key.pem │ │ │ │ ├── ch1.2_ta3_key.pem │ │ │ │ ├── ch1.3_ta3_key.pem │ │ │ │ ├── ch1.4_ta3_key.pem │ │ │ │ ├── ch1_ta1_key.pem │ │ │ │ ├── ch1_ta3_key.pem │ │ │ │ ├── ch1_ta4_key.pem │ │ │ │ ├── ch1_ta5_key.pem │ │ │ │ ├── ch2_ta1_key.pem │ │ │ │ ├── ch3_ta1_key.pem │ │ │ │ ├── ch4.3_ta1_key.pem │ │ │ │ ├── ch4_ta1_key.pem │ │ │ │ ├── ch5.1_ta1_key.pem │ │ │ │ ├── ch5.2_ta1_key.pem │ │ │ │ ├── ch5.3_ta1_key.pem │ │ │ │ ├── ch5_ta1_key.pem │ │ │ │ ├── cs1_ch1.1_ta3_key.pem │ │ │ │ ├── cs1_ch1.1_ta4_key.pem │ │ │ │ ├── cs1_ch1.2_ta3_key.pem │ │ │ │ ├── cs1_ch1.3_ta3_key.pem │ │ │ │ ├── cs1_ch1.4_ta3_key.pem │ │ │ │ ├── cs1_ch1_ta3_key.pem │ │ │ │ ├── cs1_ch1_ta4_key.pem │ │ │ │ ├── cs1_ch1_ta5_key.pem │ │ │ │ ├── cs1_ch5.1_ta1_key.pem │ │ │ │ ├── cs1_ch5.2_ta1_key.pem │ │ │ │ ├── cs1_ch5.3_ta1_key.pem │ │ │ │ ├── cs1_ch5_ta1_key.pem │ │ │ │ ├── cs1_cs8_ch1_ta3_key.pem │ │ │ │ ├── cs1_ta10_key.pem │ │ │ │ ├── cs1_ta11_key.pem │ │ │ │ ├── cs1_ta2_key.pem │ │ │ │ ├── cs1_ta6_key.pem │ │ │ │ ├── cs1_ta7_key.pem │ │ │ │ ├── cs1_ta7_reqpass_key.pem │ │ │ │ ├── cs1_ta8_key.pem │ │ │ │ ├── cs1_ta9_key.pem │ │ │ │ ├── cs2_ch1_ta3_key.pem │ │ │ │ ├── cs2_ch1_ta4_key.pem │ │ │ │ ├── cs2_ch5_ta1_key.pem │ │ │ │ ├── cs3_ch1_ta3_key.pem │ │ │ │ ├── cs3_ch1_ta4_key.pem │ │ │ │ ├── cs4_ch1_ta3_key.pem │ │ │ │ ├── cs5_ch1_ta3_key.pem │ │ │ │ ├── cs7_ch1_ta3_key.pem │ │ │ │ ├── cs8_ch1_ta3_key.pem │ │ │ │ ├── cs9_ch1_ta3_key.pem │ │ │ │ ├── cust_key.pem │ │ │ │ ├── ta10_key.pem │ │ │ │ ├── ta11_key.pem │ │ │ │ ├── ta1_key.pem │ │ │ │ ├── ta2_key.pem │ │ │ │ ├── ta3_key.pem │ │ │ │ ├── ta4_key.pem │ │ │ │ ├── ta5_key.pem │ │ │ │ ├── ta6_key.pem │ │ │ │ ├── ta7_key.pem │ │ │ │ ├── ta8_key.pem │ │ │ │ └── ta9_key.pem │ │ │ │ ├── serial │ │ │ │ ├── ta1 │ │ │ │ └── ta1_cert.pem │ │ │ │ ├── ta10 │ │ │ │ └── ta10_cert.pem │ │ │ │ ├── ta11 │ │ │ │ └── ta11_cert.pem │ │ │ │ ├── ta1ta3 │ │ │ │ └── ta1ta3_cert.pem │ │ │ │ ├── ta2 │ │ │ │ └── ta2_cert.pem │ │ │ │ ├── ta3 │ │ │ │ └── ta3_cert.pem │ │ │ │ ├── ta4 │ │ │ │ └── ta4_cert.pem │ │ │ │ ├── ta5 │ │ │ │ └── ta5_cert.pem │ │ │ │ ├── ta6 │ │ │ │ └── ta6_cert.pem │ │ │ │ ├── ta7 │ │ │ │ └── ta7_cert.pem │ │ │ │ ├── ta8 │ │ │ │ └── ta8_cert.pem │ │ │ │ ├── ta9 │ │ │ │ └── ta9_cert.pem │ │ │ │ └── trust_anchors │ │ │ │ ├── cust_cert.pem │ │ │ │ ├── ta10_cert.pem │ │ │ │ ├── ta11_cert.pem │ │ │ │ ├── ta1_cert.pem │ │ │ │ ├── ta1ta3_cert.pem │ │ │ │ ├── ta2_cert.pem │ │ │ │ ├── ta3_cert.pem │ │ │ │ ├── ta4_cert.pem │ │ │ │ ├── ta5_cert.pem │ │ │ │ ├── ta6_cert.pem │ │ │ │ ├── ta7_cert.pem │ │ │ │ ├── ta8_cert.pem │ │ │ │ └── ta9_cert.pem │ │ ├── unsupported.copyright │ │ └── utf8enc.copyright │ ├── run.py │ └── testsuite │ │ ├── __init__.py │ │ ├── t_setup_teardown.py │ │ └── testutils.py ├── util │ ├── apache2 │ │ ├── cache-example.conf │ │ ├── depot │ │ │ ├── depot.conf.mako │ │ │ ├── depot_httpd.conf.mako │ │ │ ├── depot_httpd_ssl_protocol.conf │ │ │ ├── depot_index.py │ │ │ └── repos.shtml │ │ ├── proxy-example.conf │ │ └── sysrepo │ │ │ ├── README.txt │ │ │ ├── reference_httpd.conf │ │ │ ├── sysrepo_httpd.conf.mako │ │ │ ├── sysrepo_p5p.py │ │ │ └── sysrepo_publisher_response.mako │ ├── log-rotate │ │ └── turn-logs.sh │ ├── log-scripts │ │ ├── Makefile.data │ │ ├── README │ │ ├── an2_ip.py │ │ ├── an2_ip_active.py │ │ ├── an_catalog.py │ │ ├── an_filelist.py │ │ ├── an_first_timestamp.py │ │ ├── an_ip_active.py │ │ ├── an_manifest.py │ │ ├── an_report.py │ │ ├── an_search.py │ │ ├── config.py │ │ ├── cron.ksh │ │ ├── in_footer.py │ │ ├── in_header.py │ │ ├── log.css │ │ ├── log.py │ │ ├── site-config │ │ ├── split.awk │ │ └── translate.py │ ├── misc │ │ ├── auth_attr.d │ │ │ └── package:pkg │ │ ├── exec_attr.d │ │ │ └── package:pkg │ │ └── user_attr.d │ │ │ └── package:pkg │ ├── mkcert │ │ ├── Makefile │ │ └── mkcert.c │ ├── opensolaris.org.sections │ ├── pkg-build │ │ └── pkg-build.bash │ ├── pkglintrc │ ├── publish │ │ ├── pkgdiff.py │ │ ├── pkgfmt.py │ │ ├── pkglint.py │ │ ├── pkgmerge.py │ │ ├── pkgmogrify.py │ │ ├── pkgsurf.py │ │ ├── transforms │ │ │ ├── developer │ │ │ ├── documentation │ │ │ ├── locale │ │ │ └── smf-manifests │ │ └── update_file_layout.py │ ├── qual-simulator │ │ ├── Makefile │ │ ├── README │ │ ├── depot.py │ │ └── scenario.py │ └── test-summary.sh ├── web │ ├── Makefile │ ├── _themes │ │ ├── default │ │ │ ├── en │ │ │ │ ├── base.css │ │ │ │ ├── body_end.shtml │ │ │ │ ├── footer.shtml │ │ │ │ ├── head_end.shtml │ │ │ │ └── header.shtml │ │ │ └── feed-icon-14x14.png │ │ ├── opensolaris.com │ │ │ └── en │ │ │ │ ├── base.css │ │ │ │ ├── body_end.shtml │ │ │ │ ├── footer.shtml │ │ │ │ ├── head_end.shtml │ │ │ │ └── header.shtml │ │ ├── opensolaris.org │ │ │ ├── en │ │ │ │ ├── base.css │ │ │ │ ├── body_end.shtml │ │ │ │ ├── footer.shtml │ │ │ │ ├── head_end.shtml │ │ │ │ └── header.shtml │ │ │ └── feed-icon-14x14.png │ │ ├── oracle.com │ │ │ ├── breadcrumb-center.png │ │ │ ├── breadcrumb-left.png │ │ │ ├── breadcrumb-right.png │ │ │ ├── en │ │ │ │ ├── base.css │ │ │ │ ├── body_end.shtml │ │ │ │ ├── footer.shtml │ │ │ │ ├── head_end.shtml │ │ │ │ └── header.shtml │ │ │ ├── feed-icon-14x14.png │ │ │ ├── mosaic-homebutton.png │ │ │ ├── navigation-item-background.png │ │ │ ├── navigation-last-button-cap.png │ │ │ ├── oralogo_small.png │ │ │ └── separator.png │ │ ├── p5i-link.png │ │ ├── pkg-block-icon.png │ │ ├── pkg-block-logo.png │ │ ├── pkg-block-logo.svg │ │ ├── sun.com │ │ │ └── en │ │ │ │ ├── base.css │ │ │ │ ├── body_end.shtml │ │ │ │ ├── footer.shtml │ │ │ │ ├── head_end.shtml │ │ │ │ └── header.shtml │ │ └── yui-reset-font-grids_base-min.css │ ├── config.shtml │ ├── en │ │ ├── advanced_search.shtml │ │ ├── base.shtml │ │ ├── catalog.shtml │ │ ├── index.shtml │ │ ├── layout.shtml │ │ ├── search.shtml │ │ └── stats.shtml │ ├── index.shtml │ ├── robots.txt │ └── shared.shtml └── zoneproxy │ ├── Makefile │ ├── Makefile.constants │ ├── Makefile.subdirs │ ├── zoneproxy-adm │ ├── Makefile │ └── zoneproxy-adm.c │ ├── zoneproxy-client │ ├── Makefile │ └── zoneproxy-client.c │ └── zoneproxyd │ ├── Makefile │ ├── zoneproxy_impl.h │ └── zoneproxyd.c └── tools ├── notification.cfg └── pycodestyle.cfg /.arclint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/.arclint -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/.hgtags -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-CPIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/LICENSE-CPIO -------------------------------------------------------------------------------- /LICENSE-MINISAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/LICENSE-MINISAT -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/SECURITY.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/README.guide -------------------------------------------------------------------------------- /doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/TODO -------------------------------------------------------------------------------- /doc/actions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/actions.rst -------------------------------------------------------------------------------- /doc/actions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/actions.txt -------------------------------------------------------------------------------- /doc/apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/apt.txt -------------------------------------------------------------------------------- /doc/boot_environments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/boot_environments.txt -------------------------------------------------------------------------------- /doc/case-outline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/case-outline.txt -------------------------------------------------------------------------------- /doc/catalog-v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/catalog-v1.txt -------------------------------------------------------------------------------- /doc/catalog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/catalog.txt -------------------------------------------------------------------------------- /doc/client_api_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/client_api_versions.txt -------------------------------------------------------------------------------- /doc/deduction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/deduction.txt -------------------------------------------------------------------------------- /doc/depot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/depot.rst -------------------------------------------------------------------------------- /doc/depot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/depot.txt -------------------------------------------------------------------------------- /doc/dev-guide/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/Makefile -------------------------------------------------------------------------------- /doc/dev-guide/appendix-a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/appendix-a.txt -------------------------------------------------------------------------------- /doc/dev-guide/appendix-b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/appendix-b.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt1.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt10.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt11.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt12.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt13.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt14.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt2.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt3.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt4.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt5.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt6.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt7.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt8.txt -------------------------------------------------------------------------------- /doc/dev-guide/chpt9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/chpt9.txt -------------------------------------------------------------------------------- /doc/dev-guide/createpdf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/createpdf.patch -------------------------------------------------------------------------------- /doc/dev-guide/dev-guide.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/dev-guide.style -------------------------------------------------------------------------------- /doc/dev-guide/developer-guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/developer-guide.txt -------------------------------------------------------------------------------- /doc/dev-guide/docbook.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/docbook.patch -------------------------------------------------------------------------------- /doc/dev-guide/macros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/macros.txt -------------------------------------------------------------------------------- /doc/dev-guide/ologo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/ologo.png -------------------------------------------------------------------------------- /doc/dev-guide/pkg-block-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/dev-guide/pkg-block-logo.png -------------------------------------------------------------------------------- /doc/directory_perms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/directory_perms.txt -------------------------------------------------------------------------------- /doc/elf-jar-handling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/elf-jar-handling.txt -------------------------------------------------------------------------------- /doc/es-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/es-requirements.txt -------------------------------------------------------------------------------- /doc/facets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/facets.txt -------------------------------------------------------------------------------- /doc/file-metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/file-metadata.txt -------------------------------------------------------------------------------- /doc/filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/filter.txt -------------------------------------------------------------------------------- /doc/guide-basic-ops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/guide-basic-ops.rst -------------------------------------------------------------------------------- /doc/guide-implementation-depot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/guide-implementation-depot.rst -------------------------------------------------------------------------------- /doc/guide-main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/guide-main.rst -------------------------------------------------------------------------------- /doc/guide-metadata-conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/guide-metadata-conventions.rst -------------------------------------------------------------------------------- /doc/guide-naming-conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/guide-naming-conventions.rst -------------------------------------------------------------------------------- /doc/guide-pkg-states.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/guide-pkg-states.rst -------------------------------------------------------------------------------- /doc/guide-publication-protocol.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/guide-publication-protocol.rst -------------------------------------------------------------------------------- /doc/guide-repository-format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/guide-repository-format.rst -------------------------------------------------------------------------------- /doc/guide-retrieval-protocol.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/guide-retrieval-protocol.rst -------------------------------------------------------------------------------- /doc/guide-txn-states.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/guide-txn-states.rst -------------------------------------------------------------------------------- /doc/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/history.txt -------------------------------------------------------------------------------- /doc/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/image.rst -------------------------------------------------------------------------------- /doc/image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/image.txt -------------------------------------------------------------------------------- /doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/license.txt -------------------------------------------------------------------------------- /doc/linked-images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/linked-images.txt -------------------------------------------------------------------------------- /doc/macros.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/macros.rst -------------------------------------------------------------------------------- /doc/manifest_preprocessor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/manifest_preprocessor.txt -------------------------------------------------------------------------------- /doc/mediated-links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/mediated-links.txt -------------------------------------------------------------------------------- /doc/multi-platform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/multi-platform.rst -------------------------------------------------------------------------------- /doc/multi-platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/multi-platform.txt -------------------------------------------------------------------------------- /doc/on-disk-format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/on-disk-format.txt -------------------------------------------------------------------------------- /doc/one-pager-main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/one-pager-main.txt -------------------------------------------------------------------------------- /doc/parallel-linked-images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/parallel-linked-images.txt -------------------------------------------------------------------------------- /doc/pkg-guide-web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/pkg-guide-web.css -------------------------------------------------------------------------------- /doc/pkg-states.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/pkg-states.rst -------------------------------------------------------------------------------- /doc/pkg-states.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/pkg-states.txt -------------------------------------------------------------------------------- /doc/pkgs-and-groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/pkgs-and-groups.txt -------------------------------------------------------------------------------- /doc/protocol-versioning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/protocol-versioning.txt -------------------------------------------------------------------------------- /doc/publication.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/publication.txt -------------------------------------------------------------------------------- /doc/publisher_search_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/publisher_search_order.txt -------------------------------------------------------------------------------- /doc/razor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/razor.txt -------------------------------------------------------------------------------- /doc/repository.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/repository.txt -------------------------------------------------------------------------------- /doc/rest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/rest.txt -------------------------------------------------------------------------------- /doc/rfes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/rfes.txt -------------------------------------------------------------------------------- /doc/sat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/sat.txt -------------------------------------------------------------------------------- /doc/scripting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/scripting.txt -------------------------------------------------------------------------------- /doc/search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/search.txt -------------------------------------------------------------------------------- /doc/server_api_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/server_api_versions.txt -------------------------------------------------------------------------------- /doc/signed_manifests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/signed_manifests.txt -------------------------------------------------------------------------------- /doc/system_repository.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/system_repository.txt -------------------------------------------------------------------------------- /doc/tags-and-attributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/tags-and-attributes.txt -------------------------------------------------------------------------------- /doc/transaction-order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/transaction-order.txt -------------------------------------------------------------------------------- /doc/usr-setuid-bins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/usr-setuid-bins.txt -------------------------------------------------------------------------------- /doc/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/versions.txt -------------------------------------------------------------------------------- /doc/wos-filetype-stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/wos-filetype-stats.txt -------------------------------------------------------------------------------- /doc/xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/doc/xml.txt -------------------------------------------------------------------------------- /exception_lists/binary_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/exception_lists/binary_files -------------------------------------------------------------------------------- /exception_lists/cddlchk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/exception_lists/cddlchk -------------------------------------------------------------------------------- /exception_lists/cdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/exception_lists/cdm -------------------------------------------------------------------------------- /exception_lists/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/exception_lists/copyright -------------------------------------------------------------------------------- /exception_lists/permchk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/exception_lists/permchk -------------------------------------------------------------------------------- /exception_lists/spell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/exception_lists/spell -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.constants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/Makefile.constants -------------------------------------------------------------------------------- /src/cffi_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/cffi_src/Makefile -------------------------------------------------------------------------------- /src/cffi_src/build_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/cffi_src/build_arch.py -------------------------------------------------------------------------------- /src/cffi_src/build_sha512_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/cffi_src/build_sha512_t.py -------------------------------------------------------------------------------- /src/cffi_src/build_sysattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/cffi_src/build_sysattr.py -------------------------------------------------------------------------------- /src/cffi_src/build_syscallat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/cffi_src/build_syscallat.py -------------------------------------------------------------------------------- /src/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/client.py -------------------------------------------------------------------------------- /src/cronjob-removal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/cronjob-removal.sh -------------------------------------------------------------------------------- /src/depot-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/depot-config.py -------------------------------------------------------------------------------- /src/depot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/depot.py -------------------------------------------------------------------------------- /src/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/Makefile -------------------------------------------------------------------------------- /src/man/ja_JP/pkg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkg.1 -------------------------------------------------------------------------------- /src/man/ja_JP/pkg.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkg.7 -------------------------------------------------------------------------------- /src/man/ja_JP/pkg.depot-config.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkg.depot-config.8 -------------------------------------------------------------------------------- /src/man/ja_JP/pkg.depotd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkg.depotd.8 -------------------------------------------------------------------------------- /src/man/ja_JP/pkg.sysrepo.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkg.sysrepo.8 -------------------------------------------------------------------------------- /src/man/ja_JP/pkgdepend.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkgdepend.1 -------------------------------------------------------------------------------- /src/man/ja_JP/pkgdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkgdiff.1 -------------------------------------------------------------------------------- /src/man/ja_JP/pkgfmt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkgfmt.1 -------------------------------------------------------------------------------- /src/man/ja_JP/pkglint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkglint.1 -------------------------------------------------------------------------------- /src/man/ja_JP/pkgmerge.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkgmerge.1 -------------------------------------------------------------------------------- /src/man/ja_JP/pkgmogrify.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkgmogrify.1 -------------------------------------------------------------------------------- /src/man/ja_JP/pkgrecv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkgrecv.1 -------------------------------------------------------------------------------- /src/man/ja_JP/pkgrepo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkgrepo.1 -------------------------------------------------------------------------------- /src/man/ja_JP/pkgsend.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkgsend.1 -------------------------------------------------------------------------------- /src/man/ja_JP/pkgsign.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkgsign.1 -------------------------------------------------------------------------------- /src/man/ja_JP/pkgsurf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/ja_JP/pkgsurf.1 -------------------------------------------------------------------------------- /src/man/pkg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkg.1 -------------------------------------------------------------------------------- /src/man/pkg.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkg.7 -------------------------------------------------------------------------------- /src/man/pkg.depot-config.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkg.depot-config.8 -------------------------------------------------------------------------------- /src/man/pkg.depotd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkg.depotd.8 -------------------------------------------------------------------------------- /src/man/pkg.sysrepo.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkg.sysrepo.8 -------------------------------------------------------------------------------- /src/man/pkgdepend.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkgdepend.1 -------------------------------------------------------------------------------- /src/man/pkgdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkgdiff.1 -------------------------------------------------------------------------------- /src/man/pkgfmt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkgfmt.1 -------------------------------------------------------------------------------- /src/man/pkglint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkglint.1 -------------------------------------------------------------------------------- /src/man/pkgmerge.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkgmerge.1 -------------------------------------------------------------------------------- /src/man/pkgmogrify.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkgmogrify.1 -------------------------------------------------------------------------------- /src/man/pkgrecv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkgrecv.1 -------------------------------------------------------------------------------- /src/man/pkgrepo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkgrepo.1 -------------------------------------------------------------------------------- /src/man/pkgsend.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkgsend.1 -------------------------------------------------------------------------------- /src/man/pkgsign.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkgsign.1 -------------------------------------------------------------------------------- /src/man/pkgsurf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/pkgsurf.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkg.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkg.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkg.7 -------------------------------------------------------------------------------- /src/man/zh_CN/pkg.depot-config.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkg.depot-config.8 -------------------------------------------------------------------------------- /src/man/zh_CN/pkg.depotd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkg.depotd.8 -------------------------------------------------------------------------------- /src/man/zh_CN/pkg.sysrepo.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkg.sysrepo.8 -------------------------------------------------------------------------------- /src/man/zh_CN/pkgdepend.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkgdepend.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkgdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkgdiff.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkgfmt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkgfmt.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkglint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkglint.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkgmerge.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkgmerge.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkgmogrify.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkgmogrify.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkgrecv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkgrecv.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkgrepo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkgrepo.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkgsend.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkgsend.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkgsign.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkgsign.1 -------------------------------------------------------------------------------- /src/man/zh_CN/pkgsurf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/man/zh_CN/pkgsurf.1 -------------------------------------------------------------------------------- /src/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/Makefile -------------------------------------------------------------------------------- /src/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/__init__.py -------------------------------------------------------------------------------- /src/modules/_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/_misc.c -------------------------------------------------------------------------------- /src/modules/_varcet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/_varcet.c -------------------------------------------------------------------------------- /src/modules/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/__init__.py -------------------------------------------------------------------------------- /src/modules/actions/_actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/_actions.c -------------------------------------------------------------------------------- /src/modules/actions/_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/_common.c -------------------------------------------------------------------------------- /src/modules/actions/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/attribute.py -------------------------------------------------------------------------------- /src/modules/actions/depend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/depend.py -------------------------------------------------------------------------------- /src/modules/actions/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/directory.py -------------------------------------------------------------------------------- /src/modules/actions/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/driver.py -------------------------------------------------------------------------------- /src/modules/actions/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/file.py -------------------------------------------------------------------------------- /src/modules/actions/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/generic.py -------------------------------------------------------------------------------- /src/modules/actions/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/group.py -------------------------------------------------------------------------------- /src/modules/actions/hardlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/hardlink.py -------------------------------------------------------------------------------- /src/modules/actions/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/legacy.py -------------------------------------------------------------------------------- /src/modules/actions/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/license.py -------------------------------------------------------------------------------- /src/modules/actions/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/link.py -------------------------------------------------------------------------------- /src/modules/actions/signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/signature.py -------------------------------------------------------------------------------- /src/modules/actions/unknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/unknown.py -------------------------------------------------------------------------------- /src/modules/actions/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/actions/user.py -------------------------------------------------------------------------------- /src/modules/altroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/altroot.py -------------------------------------------------------------------------------- /src/modules/api_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/api_common.py -------------------------------------------------------------------------------- /src/modules/arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/arch.py -------------------------------------------------------------------------------- /src/modules/bundle/DirectoryBundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/bundle/DirectoryBundle.py -------------------------------------------------------------------------------- /src/modules/bundle/SolarisPackageDatastreamBundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/bundle/SolarisPackageDatastreamBundle.py -------------------------------------------------------------------------------- /src/modules/bundle/SolarisPackageDirBundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/bundle/SolarisPackageDirBundle.py -------------------------------------------------------------------------------- /src/modules/bundle/TarBundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/bundle/TarBundle.py -------------------------------------------------------------------------------- /src/modules/bundle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/bundle/__init__.py -------------------------------------------------------------------------------- /src/modules/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/catalog.py -------------------------------------------------------------------------------- /src/modules/cfgfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/cfgfiles.py -------------------------------------------------------------------------------- /src/modules/choose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/choose.py -------------------------------------------------------------------------------- /src/modules/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/__init__.py -------------------------------------------------------------------------------- /src/modules/client/actuator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/actuator.py -------------------------------------------------------------------------------- /src/modules/client/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/api.py -------------------------------------------------------------------------------- /src/modules/client/api_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/api_errors.py -------------------------------------------------------------------------------- /src/modules/client/bootenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/bootenv.py -------------------------------------------------------------------------------- /src/modules/client/client_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/client_api.py -------------------------------------------------------------------------------- /src/modules/client/debugvalues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/debugvalues.py -------------------------------------------------------------------------------- /src/modules/client/firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/firmware.py -------------------------------------------------------------------------------- /src/modules/client/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/history.py -------------------------------------------------------------------------------- /src/modules/client/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/image.py -------------------------------------------------------------------------------- /src/modules/client/imageconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/imageconfig.py -------------------------------------------------------------------------------- /src/modules/client/imageplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/imageplan.py -------------------------------------------------------------------------------- /src/modules/client/imagetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/imagetypes.py -------------------------------------------------------------------------------- /src/modules/client/indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/indexer.py -------------------------------------------------------------------------------- /src/modules/client/linkedimage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/linkedimage/__init__.py -------------------------------------------------------------------------------- /src/modules/client/linkedimage/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/linkedimage/common.py -------------------------------------------------------------------------------- /src/modules/client/linkedimage/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/linkedimage/system.py -------------------------------------------------------------------------------- /src/modules/client/linkedimage/zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/linkedimage/zone.py -------------------------------------------------------------------------------- /src/modules/client/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/options.py -------------------------------------------------------------------------------- /src/modules/client/pkg_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/pkg_solver.py -------------------------------------------------------------------------------- /src/modules/client/pkgdefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/pkgdefs.py -------------------------------------------------------------------------------- /src/modules/client/pkgplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/pkgplan.py -------------------------------------------------------------------------------- /src/modules/client/pkgremote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/pkgremote.py -------------------------------------------------------------------------------- /src/modules/client/plandesc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/plandesc.py -------------------------------------------------------------------------------- /src/modules/client/printengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/printengine.py -------------------------------------------------------------------------------- /src/modules/client/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/progress.py -------------------------------------------------------------------------------- /src/modules/client/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/publisher.py -------------------------------------------------------------------------------- /src/modules/client/query_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/query_parser.py -------------------------------------------------------------------------------- /src/modules/client/rad_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/rad_pkg.py -------------------------------------------------------------------------------- /src/modules/client/sigpolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/sigpolicy.py -------------------------------------------------------------------------------- /src/modules/client/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/transport/__init__.py -------------------------------------------------------------------------------- /src/modules/client/transport/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/transport/engine.py -------------------------------------------------------------------------------- /src/modules/client/transport/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/transport/exception.py -------------------------------------------------------------------------------- /src/modules/client/transport/fileobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/transport/fileobj.py -------------------------------------------------------------------------------- /src/modules/client/transport/mdetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/transport/mdetect.py -------------------------------------------------------------------------------- /src/modules/client/transport/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/transport/repo.py -------------------------------------------------------------------------------- /src/modules/client/transport/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/transport/stats.py -------------------------------------------------------------------------------- /src/modules/client/transport/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/client/transport/transport.py -------------------------------------------------------------------------------- /src/modules/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/config.py -------------------------------------------------------------------------------- /src/modules/cpiofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/cpiofile.py -------------------------------------------------------------------------------- /src/modules/dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/dependency.py -------------------------------------------------------------------------------- /src/modules/depotcontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/depotcontroller.py -------------------------------------------------------------------------------- /src/modules/digest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/digest.py -------------------------------------------------------------------------------- /src/modules/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/elf.c -------------------------------------------------------------------------------- /src/modules/elfextract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/elfextract.c -------------------------------------------------------------------------------- /src/modules/elfextract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/elfextract.h -------------------------------------------------------------------------------- /src/modules/facet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/facet.py -------------------------------------------------------------------------------- /src/modules/file_layout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/file_layout/__init__.py -------------------------------------------------------------------------------- /src/modules/file_layout/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/file_layout/file_manager.py -------------------------------------------------------------------------------- /src/modules/file_layout/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/file_layout/layout.py -------------------------------------------------------------------------------- /src/modules/flavor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/flavor/__init__.py -------------------------------------------------------------------------------- /src/modules/flavor/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/flavor/base.py -------------------------------------------------------------------------------- /src/modules/flavor/depthlimitedmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/flavor/depthlimitedmf.py -------------------------------------------------------------------------------- /src/modules/flavor/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/flavor/elf.py -------------------------------------------------------------------------------- /src/modules/flavor/hardlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/flavor/hardlink.py -------------------------------------------------------------------------------- /src/modules/flavor/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/flavor/python.py -------------------------------------------------------------------------------- /src/modules/flavor/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/flavor/script.py -------------------------------------------------------------------------------- /src/modules/flavor/smf_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/flavor/smf_manifest.py -------------------------------------------------------------------------------- /src/modules/fmri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/fmri.py -------------------------------------------------------------------------------- /src/modules/indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/indexer.py -------------------------------------------------------------------------------- /src/modules/liblist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/liblist.c -------------------------------------------------------------------------------- /src/modules/liblist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/liblist.h -------------------------------------------------------------------------------- /src/modules/lint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/lint/__init__.py -------------------------------------------------------------------------------- /src/modules/lint/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/lint/base.py -------------------------------------------------------------------------------- /src/modules/lint/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/lint/config.py -------------------------------------------------------------------------------- /src/modules/lint/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/lint/engine.py -------------------------------------------------------------------------------- /src/modules/lint/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/lint/log.py -------------------------------------------------------------------------------- /src/modules/lint/opensolaris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/lint/opensolaris.py -------------------------------------------------------------------------------- /src/modules/lint/pkglint_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/lint/pkglint_action.py -------------------------------------------------------------------------------- /src/modules/lint/pkglint_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/lint/pkglint_manifest.py -------------------------------------------------------------------------------- /src/modules/lockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/lockfile.py -------------------------------------------------------------------------------- /src/modules/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/manifest.py -------------------------------------------------------------------------------- /src/modules/mediator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/mediator.py -------------------------------------------------------------------------------- /src/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/misc.py -------------------------------------------------------------------------------- /src/modules/mogrify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/mogrify.py -------------------------------------------------------------------------------- /src/modules/no_site_packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/no_site_packages/__init__.py -------------------------------------------------------------------------------- /src/modules/nrlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/nrlock.py -------------------------------------------------------------------------------- /src/modules/p5i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/p5i.py -------------------------------------------------------------------------------- /src/modules/p5p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/p5p.py -------------------------------------------------------------------------------- /src/modules/p5s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/p5s.py -------------------------------------------------------------------------------- /src/modules/pipeutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/pipeutils.py -------------------------------------------------------------------------------- /src/modules/pkggzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/pkggzip.py -------------------------------------------------------------------------------- /src/modules/pkgtarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/pkgtarfile.py -------------------------------------------------------------------------------- /src/modules/portable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/portable/__init__.py -------------------------------------------------------------------------------- /src/modules/portable/os_aix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/portable/os_aix.py -------------------------------------------------------------------------------- /src/modules/portable/os_darwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/portable/os_darwin.py -------------------------------------------------------------------------------- /src/modules/portable/os_sunos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/portable/os_sunos.py -------------------------------------------------------------------------------- /src/modules/portable/os_unix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/portable/os_unix.py -------------------------------------------------------------------------------- /src/modules/portable/os_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/portable/os_windows.py -------------------------------------------------------------------------------- /src/modules/portable/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/portable/util.py -------------------------------------------------------------------------------- /src/modules/publish/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/publish/__init__.py -------------------------------------------------------------------------------- /src/modules/publish/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/publish/dependencies.py -------------------------------------------------------------------------------- /src/modules/publish/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/publish/transaction.py -------------------------------------------------------------------------------- /src/modules/query_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/query_parser.py -------------------------------------------------------------------------------- /src/modules/search_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/search_errors.py -------------------------------------------------------------------------------- /src/modules/search_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/search_storage.py -------------------------------------------------------------------------------- /src/modules/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/server/__init__.py -------------------------------------------------------------------------------- /src/modules/server/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/server/api.py -------------------------------------------------------------------------------- /src/modules/server/api_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/server/api_errors.py -------------------------------------------------------------------------------- /src/modules/server/depot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/server/depot.py -------------------------------------------------------------------------------- /src/modules/server/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/server/face.py -------------------------------------------------------------------------------- /src/modules/server/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/server/feed.py -------------------------------------------------------------------------------- /src/modules/server/query_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/server/query_parser.py -------------------------------------------------------------------------------- /src/modules/server/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/server/repository.py -------------------------------------------------------------------------------- /src/modules/server/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/server/transaction.py -------------------------------------------------------------------------------- /src/modules/sha512_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/sha512_t.py -------------------------------------------------------------------------------- /src/modules/smf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/smf.py -------------------------------------------------------------------------------- /src/modules/solver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/solver/LICENSE -------------------------------------------------------------------------------- /src/modules/solver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/solver/README -------------------------------------------------------------------------------- /src/modules/solver/py_solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/solver/py_solver.c -------------------------------------------------------------------------------- /src/modules/solver/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/solver/solver.c -------------------------------------------------------------------------------- /src/modules/solver/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/solver/solver.h -------------------------------------------------------------------------------- /src/modules/solver/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/solver/vec.h -------------------------------------------------------------------------------- /src/modules/sysattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/sysattr.py -------------------------------------------------------------------------------- /src/modules/syscallat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/syscallat.py -------------------------------------------------------------------------------- /src/modules/sysvpkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/sysvpkg.py -------------------------------------------------------------------------------- /src/modules/variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/variant.py -------------------------------------------------------------------------------- /src/modules/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/modules/version.py -------------------------------------------------------------------------------- /src/pkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/Makefile -------------------------------------------------------------------------------- /src/pkg/external_deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/external_deps.txt -------------------------------------------------------------------------------- /src/pkg/external_deps_fragment.pkglintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/external_deps_fragment.pkglintrc -------------------------------------------------------------------------------- /src/pkg/ips-pkglintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/ips-pkglintrc -------------------------------------------------------------------------------- /src/pkg/license_files/cr_Oracle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/license_files/cr_Oracle -------------------------------------------------------------------------------- /src/pkg/license_files/lic_CDDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/license_files/lic_CDDL -------------------------------------------------------------------------------- /src/pkg/license_files/lic_gustaebel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/license_files/lic_gustaebel -------------------------------------------------------------------------------- /src/pkg/license_files/lic_minisat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/license_files/lic_minisat -------------------------------------------------------------------------------- /src/pkg/license_files/lic_yui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/license_files/lic_yui -------------------------------------------------------------------------------- /src/pkg/manifests/SUNWipkg-gui.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/SUNWipkg-gui.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/SUNWipkg-um.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/SUNWipkg-um.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/SUNWipkg.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/SUNWipkg.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/consolidation:ips:ips-incorporation.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/consolidation:ips:ips-incorporation.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/consolidation:ips:ips-message-files.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/consolidation:ips:ips-message-files.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/developer:opensolaris:pkg5.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/developer:opensolaris:pkg5.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/package:pkg-311.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/package:pkg-311.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/package:pkg-34.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/package:pkg-34.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/package:pkg-37.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/package:pkg-37.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/package:pkg-39.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/package:pkg-39.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/package:pkg.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/package:pkg.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/package:pkg:depot.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/package:pkg:depot.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/package:pkg:oci.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/package:pkg:oci.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/package:pkg:package-manager.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/package:pkg:package-manager.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/package:pkg:system-repository.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/package:pkg:system-repository.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/package:pkg:update-manager.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/package:pkg:update-manager.p5m -------------------------------------------------------------------------------- /src/pkg/manifests/package:pkg:zones-proxy.p5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/manifests/package:pkg:zones-proxy.p5m -------------------------------------------------------------------------------- /src/pkg/pkglint_whitelist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pkg/transforms/compare-strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/transforms/compare-strip -------------------------------------------------------------------------------- /src/pkg/transforms/defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/transforms/defaults -------------------------------------------------------------------------------- /src/pkg/transforms/find-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/transforms/find-links -------------------------------------------------------------------------------- /src/pkg/transforms/incorp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/transforms/incorp -------------------------------------------------------------------------------- /src/pkg/transforms/incorp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/transforms/incorp2 -------------------------------------------------------------------------------- /src/pkg/transforms/nopublish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/transforms/nopublish -------------------------------------------------------------------------------- /src/pkg/transforms/strip_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkg/transforms/strip_versions -------------------------------------------------------------------------------- /src/pkgdep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkgdep.py -------------------------------------------------------------------------------- /src/pkgrepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pkgrepo.py -------------------------------------------------------------------------------- /src/po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/ChangeLog -------------------------------------------------------------------------------- /src/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/LINGUAS -------------------------------------------------------------------------------- /src/po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/Makefile -------------------------------------------------------------------------------- /src/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/Makevars -------------------------------------------------------------------------------- /src/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/POTFILES.in -------------------------------------------------------------------------------- /src/po/POTFILES.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/POTFILES.skip -------------------------------------------------------------------------------- /src/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/ar.po -------------------------------------------------------------------------------- /src/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/ca.po -------------------------------------------------------------------------------- /src/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/cs.po -------------------------------------------------------------------------------- /src/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/de.po -------------------------------------------------------------------------------- /src/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/es.po -------------------------------------------------------------------------------- /src/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/fr.po -------------------------------------------------------------------------------- /src/po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/he.po -------------------------------------------------------------------------------- /src/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/hu.po -------------------------------------------------------------------------------- /src/po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/id.po -------------------------------------------------------------------------------- /src/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/it.po -------------------------------------------------------------------------------- /src/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/ja.po -------------------------------------------------------------------------------- /src/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/ko.po -------------------------------------------------------------------------------- /src/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/nl.po -------------------------------------------------------------------------------- /src/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/pl.po -------------------------------------------------------------------------------- /src/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/pt_BR.po -------------------------------------------------------------------------------- /src/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/ru.po -------------------------------------------------------------------------------- /src/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/sk.po -------------------------------------------------------------------------------- /src/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/sv.po -------------------------------------------------------------------------------- /src/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/zh_CN.po -------------------------------------------------------------------------------- /src/po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/zh_HK.po -------------------------------------------------------------------------------- /src/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/po/zh_TW.po -------------------------------------------------------------------------------- /src/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/publish.py -------------------------------------------------------------------------------- /src/pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/pull.py -------------------------------------------------------------------------------- /src/rad-invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/rad-invoke.py -------------------------------------------------------------------------------- /src/sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/sign.py -------------------------------------------------------------------------------- /src/svc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/Makefile -------------------------------------------------------------------------------- /src/svc/pkg-auto-update-cleanup-enable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/pkg-auto-update-cleanup-enable.xml -------------------------------------------------------------------------------- /src/svc/pkg-auto-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/pkg-auto-update.xml -------------------------------------------------------------------------------- /src/svc/pkg-depot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/pkg-depot.xml -------------------------------------------------------------------------------- /src/svc/pkg-mdns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/pkg-mdns.xml -------------------------------------------------------------------------------- /src/svc/pkg-mirror.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/pkg-mirror.xml -------------------------------------------------------------------------------- /src/svc/pkg-oci-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/pkg-oci-config.xml -------------------------------------------------------------------------------- /src/svc/pkg-repositories-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/pkg-repositories-setup.xml -------------------------------------------------------------------------------- /src/svc/pkg-server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/pkg-server.xml -------------------------------------------------------------------------------- /src/svc/pkg-sysrepo-cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/pkg-sysrepo-cache.xml -------------------------------------------------------------------------------- /src/svc/pkg-system-repository.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/pkg-system-repository.xml -------------------------------------------------------------------------------- /src/svc/pkg5_include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/pkg5_include.sh -------------------------------------------------------------------------------- /src/svc/svc-pkg-auto-update-cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/svc-pkg-auto-update-cleanup.py -------------------------------------------------------------------------------- /src/svc/svc-pkg-auto-update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/svc-pkg-auto-update.py -------------------------------------------------------------------------------- /src/svc/svc-pkg-depot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/svc-pkg-depot -------------------------------------------------------------------------------- /src/svc/svc-pkg-mdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/svc-pkg-mdns -------------------------------------------------------------------------------- /src/svc/svc-pkg-mirror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/svc-pkg-mirror -------------------------------------------------------------------------------- /src/svc/svc-pkg-oci-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/svc-pkg-oci-config.py -------------------------------------------------------------------------------- /src/svc/svc-pkg-repositories-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/svc-pkg-repositories-setup -------------------------------------------------------------------------------- /src/svc/svc-pkg-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/svc-pkg-server -------------------------------------------------------------------------------- /src/svc/svc-pkg-sysrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/svc-pkg-sysrepo -------------------------------------------------------------------------------- /src/svc/svc-pkg-sysrepo-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/svc-pkg-sysrepo-cache -------------------------------------------------------------------------------- /src/svc/zoneproxy-client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/zoneproxy-client.xml -------------------------------------------------------------------------------- /src/svc/zoneproxyd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/svc/zoneproxyd.xml -------------------------------------------------------------------------------- /src/sysrepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/sysrepo.py -------------------------------------------------------------------------------- /src/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/README -------------------------------------------------------------------------------- /src/tests/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/__init__.py -------------------------------------------------------------------------------- /src/tests/api/t_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_action.py -------------------------------------------------------------------------------- /src/tests/api/t_altroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_altroot.py -------------------------------------------------------------------------------- /src/tests/api/t_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_api.py -------------------------------------------------------------------------------- /src/tests/api/t_api_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_api_info.py -------------------------------------------------------------------------------- /src/tests/api/t_api_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_api_list.py -------------------------------------------------------------------------------- /src/tests/api/t_api_refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_api_refresh.py -------------------------------------------------------------------------------- /src/tests/api/t_api_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_api_search.py -------------------------------------------------------------------------------- /src/tests/api/t_async_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_async_rpc.py -------------------------------------------------------------------------------- /src/tests/api/t_bootenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_bootenv.py -------------------------------------------------------------------------------- /src/tests/api/t_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_catalog.py -------------------------------------------------------------------------------- /src/tests/api/t_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_client.py -------------------------------------------------------------------------------- /src/tests/api/t_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_config.py -------------------------------------------------------------------------------- /src/tests/api/t_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_dependencies.py -------------------------------------------------------------------------------- /src/tests/api/t_elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_elf.py -------------------------------------------------------------------------------- /src/tests/api/t_fast_quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_fast_quote.py -------------------------------------------------------------------------------- /src/tests/api/t_file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_file_manager.py -------------------------------------------------------------------------------- /src/tests/api/t_fmri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_fmri.py -------------------------------------------------------------------------------- /src/tests/api/t_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_history.py -------------------------------------------------------------------------------- /src/tests/api/t_imageconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_imageconfig.py -------------------------------------------------------------------------------- /src/tests/api/t_indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_indexer.py -------------------------------------------------------------------------------- /src/tests/api/t_linked_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_linked_image.py -------------------------------------------------------------------------------- /src/tests/api/t_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_manifest.py -------------------------------------------------------------------------------- /src/tests/api/t_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_misc.py -------------------------------------------------------------------------------- /src/tests/api/t_p5i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_p5i.py -------------------------------------------------------------------------------- /src/tests/api/t_p5p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_p5p.py -------------------------------------------------------------------------------- /src/tests/api/t_pkg_api_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_pkg_api_fix.py -------------------------------------------------------------------------------- /src/tests/api/t_pkg_api_hydrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_pkg_api_hydrate.py -------------------------------------------------------------------------------- /src/tests/api/t_pkg_api_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_pkg_api_install.py -------------------------------------------------------------------------------- /src/tests/api/t_pkg_api_revert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_pkg_api_revert.py -------------------------------------------------------------------------------- /src/tests/api/t_pkglint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_pkglint.py -------------------------------------------------------------------------------- /src/tests/api/t_pkgtarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_pkgtarfile.py -------------------------------------------------------------------------------- /src/tests/api/t_plat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_plat.py -------------------------------------------------------------------------------- /src/tests/api/t_printengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_printengine.py -------------------------------------------------------------------------------- /src/tests/api/t_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_progress.py -------------------------------------------------------------------------------- /src/tests/api/t_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_publisher.py -------------------------------------------------------------------------------- /src/tests/api/t_sha512_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_sha512_t.py -------------------------------------------------------------------------------- /src/tests/api/t_smf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_smf.py -------------------------------------------------------------------------------- /src/tests/api/t_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_solver.py -------------------------------------------------------------------------------- /src/tests/api/t_sysattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_sysattr.py -------------------------------------------------------------------------------- /src/tests/api/t_unix_usergrp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_unix_usergrp.py -------------------------------------------------------------------------------- /src/tests/api/t_variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_variant.py -------------------------------------------------------------------------------- /src/tests/api/t_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/t_version.py -------------------------------------------------------------------------------- /src/tests/api/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/api/testutils.py -------------------------------------------------------------------------------- /src/tests/bandit-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/bandit-baseline.json -------------------------------------------------------------------------------- /src/tests/banditrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/banditrc -------------------------------------------------------------------------------- /src/tests/baseline-311.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/baseline.py -------------------------------------------------------------------------------- /src/tests/certgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/certgenerator.py -------------------------------------------------------------------------------- /src/tests/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/__init__.py -------------------------------------------------------------------------------- /src/tests/cli/t_actuators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_actuators.py -------------------------------------------------------------------------------- /src/tests/cli/t_change_facet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_change_facet.py -------------------------------------------------------------------------------- /src/tests/cli/t_change_variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_change_variant.py -------------------------------------------------------------------------------- /src/tests/cli/t_client_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_client_api.py -------------------------------------------------------------------------------- /src/tests/cli/t_colliding_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_colliding_links.py -------------------------------------------------------------------------------- /src/tests/cli/t_depot_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_depot_config.py -------------------------------------------------------------------------------- /src/tests/cli/t_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_fix.py -------------------------------------------------------------------------------- /src/tests/cli/t_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_https.py -------------------------------------------------------------------------------- /src/tests/cli/t_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_lock.py -------------------------------------------------------------------------------- /src/tests/cli/t_origin_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_origin_cpu.py -------------------------------------------------------------------------------- /src/tests/cli/t_origin_fw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_origin_fw.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_R_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_R_option.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_avoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_avoid.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_composite.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_contents.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_depotd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_depotd.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_errors.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_freeze.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_help.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_history.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_hydrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_hydrate.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_image_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_image_create.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_image_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_image_update.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_info.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_initinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_initinstall.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_install.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_intent.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_linked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_linked.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_list.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_mediated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_mediated.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_modified.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_nasty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_nasty.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_property.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_publisher.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_rebuild_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_rebuild_index.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_refresh.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_revert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_revert.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_search.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_sysrepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_sysrepo.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_temp_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_temp_sources.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_terminal.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_uninstall.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_varcet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_varcet.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_verify.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkg_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkg_version.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkgdep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkgdep.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkgdep_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkgdep_resolve.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkgdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkgdiff.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkgfmt.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkglint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkglint.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkgmerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkgmerge.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkgmogrify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkgmogrify.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkgrecv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkgrecv.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkgrepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkgrepo.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkgsend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkgsend.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkgsign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkgsign.py -------------------------------------------------------------------------------- /src/tests/cli/t_pkgsurf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_pkgsurf.py -------------------------------------------------------------------------------- /src/tests/cli/t_publish_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_publish_api.py -------------------------------------------------------------------------------- /src/tests/cli/t_sysrepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_sysrepo.py -------------------------------------------------------------------------------- /src/tests/cli/t_util_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_util_merge.py -------------------------------------------------------------------------------- /src/tests/cli/t_util_update_file_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_util_update_file_layout.py -------------------------------------------------------------------------------- /src/tests/cli/t_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/t_variants.py -------------------------------------------------------------------------------- /src/tests/cli/testdata/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/cli/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/cli/testutils.py -------------------------------------------------------------------------------- /src/tests/interactive/runprintengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/interactive/runprintengine.py -------------------------------------------------------------------------------- /src/tests/interactive/runprogress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/interactive/runprogress.py -------------------------------------------------------------------------------- /src/tests/perf/actionbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/perf/actionbench.py -------------------------------------------------------------------------------- /src/tests/perf/fmribench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/perf/fmribench.py -------------------------------------------------------------------------------- /src/tests/perf/manbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/perf/manbench.py -------------------------------------------------------------------------------- /src/tests/perf/membench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/perf/membench.py -------------------------------------------------------------------------------- /src/tests/pkg5testenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/pkg5testenv.py -------------------------------------------------------------------------------- /src/tests/pkg5unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/pkg5unittest.py -------------------------------------------------------------------------------- /src/tests/pycodestyle-whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/pycodestyle-whitelist.txt -------------------------------------------------------------------------------- /src/tests/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/pylintrc -------------------------------------------------------------------------------- /src/tests/ro_data/88591enc.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/88591enc.copyright -------------------------------------------------------------------------------- /src/tests/ro_data/badencoding.relnote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/badencoding.relnote -------------------------------------------------------------------------------- /src/tests/ro_data/elftest.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/elftest.so.1 -------------------------------------------------------------------------------- /src/tests/ro_data/elftest.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/elftest.so.2 -------------------------------------------------------------------------------- /src/tests/ro_data/pkg.help.eucJP.expected.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/pkg.help.eucJP.expected.out -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/generate_certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/generate_certs.py -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/01.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/01.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/02.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/02.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/03.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/03.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/04.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/04.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/05.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/05.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/08.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/08.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/0A.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/0A.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/0C.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/0C.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/0D.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/0D.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/10.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/10.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/1A.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/1A.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/1C.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/1C.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/1E.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/1E.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/20.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/20.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/22.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/22.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/26.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/26.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/28.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/28.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch1.1_ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch1.1_ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch1.1_ta4_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch1.1_ta4_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch1.2_ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch1.2_ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch1.3_ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch1.3_ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch1.4_ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch1.4_ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch1_ta1_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch1_ta1_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch1_ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch1_ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch1_ta4_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch1_ta4_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch1_ta5_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch1_ta5_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch2_ta1_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch2_ta1_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch3_ta1_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch3_ta1_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch4.3_ta1_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch4.3_ta1_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch4_ta1_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch4_ta1_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch5.1_ta1_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch5.1_ta1_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch5.2_ta1_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch5.2_ta1_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch5.3_ta1_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch5.3_ta1_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/chain_certs/ch5_ta1_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/chain_certs/ch5_ta1_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/06.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/06.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/07.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/07.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/09.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/09.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/0B.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/0B.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/0E.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/0E.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/0F.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/0F.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/11.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/11.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/12.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/12.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/13.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/13.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/14.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/14.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/15.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/15.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/16.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/16.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/17.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/17.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/18.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/18.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/19.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/19.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/1B.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/1B.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/1D.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/1D.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/1F.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/1F.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/21.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/21.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/23.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/23.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/24.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/24.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/25.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/25.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/27.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/27.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/29.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/29.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/2A.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/2A.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/2B.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/2B.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/2C.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/2C.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/2D.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/2D.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/2E.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/2E.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/2F.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/2F.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1.1_ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1.1_ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1.1_ta4_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1.1_ta4_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1.2_ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1.2_ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1.3_ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1.3_ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1.4_ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1.4_ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1_ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1_ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1_ta4_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ch1_ta4_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta10_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta10_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta11_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta11_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta2_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta2_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta6_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta6_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta7_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta7_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta8_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta8_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta9_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cs1_ta9_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/code_signing_certs/cust_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/code_signing_certs/cust_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/combined_cas.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/combined_cas.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/crl/ch1.1_ta4_crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/crl/ch1.1_ta4_crl.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/crl/ch1_ta4_crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/crl/ch1_ta4_crl.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/crl/ch5_ta1_crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/crl/ch5_ta1_crl.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/crl/ta5_crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/crl/ta5_crl.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/index -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/index.attr: -------------------------------------------------------------------------------- 1 | unique_subject = no 2 | -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch1.1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch1.1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch1.1_ta4_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch1.1_ta4_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch1.2_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch1.2_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch1.3_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch1.3_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch1.4_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch1.4_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch1_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch1_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch1_ta4_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch1_ta4_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch1_ta5_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch1_ta5_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch2_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch2_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch3_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch3_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch4.3_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch4.3_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch4_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch4_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch5.1_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch5.1_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch5.2_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch5.2_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch5.3_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch5.3_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ch5_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ch5_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch1.1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch1.1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch1.1_ta4_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch1.1_ta4_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch1.2_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch1.2_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch1.3_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch1.3_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch1.4_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch1.4_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch1_ta4_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch1_ta4_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch1_ta5_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch1_ta5_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch5.1_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch5.1_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch5.2_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch5.2_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch5.3_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch5.3_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ch5_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ch5_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_cs8_ch1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_cs8_ch1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ta10_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ta10_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ta11_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ta11_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ta2_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ta2_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ta6_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ta6_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ta7_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ta7_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ta7_reqpass_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ta7_reqpass_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ta8_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ta8_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs1_ta9_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs1_ta9_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs2_ch1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs2_ch1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs2_ch1_ta4_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs2_ch1_ta4_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs2_ch5_ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs2_ch5_ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs3_ch1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs3_ch1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs3_ch1_ta4_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs3_ch1_ta4_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs4_ch1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs4_ch1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs5_ch1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs5_ch1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs7_ch1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs7_ch1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs8_ch1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs8_ch1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cs9_ch1_ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cs9_ch1_ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/cust_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/cust_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ta10_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ta10_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ta11_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ta11_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ta1_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ta1_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ta2_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ta2_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ta3_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ta3_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ta4_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ta4_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ta5_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ta5_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ta6_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ta6_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ta7_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ta7_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ta8_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ta8_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/keys/ta9_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/keys/ta9_key.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/serial: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta1/ta1_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta1/ta1_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta10/ta10_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta10/ta10_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta11/ta11_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta11/ta11_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta1ta3/ta1ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta1ta3/ta1ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta2/ta2_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta2/ta2_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta3/ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta3/ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta4/ta4_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta4/ta4_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta5/ta5_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta5/ta5_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta6/ta6_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta6/ta6_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta7/ta7_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta7/ta7_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta8/ta8_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta8/ta8_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/ta9/ta9_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/ta9/ta9_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/cust_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/cust_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta10_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta10_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta11_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta11_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta1_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta1_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta1ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta1ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta2_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta2_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta3_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta3_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta4_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta4_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta5_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta5_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta6_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta6_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta7_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta7_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta8_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta8_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/signing_certs/produced/trust_anchors/ta9_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/signing_certs/produced/trust_anchors/ta9_cert.pem -------------------------------------------------------------------------------- /src/tests/ro_data/unsupported.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/unsupported.copyright -------------------------------------------------------------------------------- /src/tests/ro_data/utf8enc.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/ro_data/utf8enc.copyright -------------------------------------------------------------------------------- /src/tests/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/run.py -------------------------------------------------------------------------------- /src/tests/testsuite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/testsuite/__init__.py -------------------------------------------------------------------------------- /src/tests/testsuite/t_setup_teardown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/testsuite/t_setup_teardown.py -------------------------------------------------------------------------------- /src/tests/testsuite/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/tests/testsuite/testutils.py -------------------------------------------------------------------------------- /src/util/apache2/cache-example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/cache-example.conf -------------------------------------------------------------------------------- /src/util/apache2/depot/depot.conf.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/depot/depot.conf.mako -------------------------------------------------------------------------------- /src/util/apache2/depot/depot_httpd.conf.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/depot/depot_httpd.conf.mako -------------------------------------------------------------------------------- /src/util/apache2/depot/depot_httpd_ssl_protocol.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/depot/depot_httpd_ssl_protocol.conf -------------------------------------------------------------------------------- /src/util/apache2/depot/depot_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/depot/depot_index.py -------------------------------------------------------------------------------- /src/util/apache2/depot/repos.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/depot/repos.shtml -------------------------------------------------------------------------------- /src/util/apache2/proxy-example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/proxy-example.conf -------------------------------------------------------------------------------- /src/util/apache2/sysrepo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/sysrepo/README.txt -------------------------------------------------------------------------------- /src/util/apache2/sysrepo/reference_httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/sysrepo/reference_httpd.conf -------------------------------------------------------------------------------- /src/util/apache2/sysrepo/sysrepo_httpd.conf.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/sysrepo/sysrepo_httpd.conf.mako -------------------------------------------------------------------------------- /src/util/apache2/sysrepo/sysrepo_p5p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/sysrepo/sysrepo_p5p.py -------------------------------------------------------------------------------- /src/util/apache2/sysrepo/sysrepo_publisher_response.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/apache2/sysrepo/sysrepo_publisher_response.mako -------------------------------------------------------------------------------- /src/util/log-rotate/turn-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-rotate/turn-logs.sh -------------------------------------------------------------------------------- /src/util/log-scripts/Makefile.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/Makefile.data -------------------------------------------------------------------------------- /src/util/log-scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/README -------------------------------------------------------------------------------- /src/util/log-scripts/an2_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/an2_ip.py -------------------------------------------------------------------------------- /src/util/log-scripts/an2_ip_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/an2_ip_active.py -------------------------------------------------------------------------------- /src/util/log-scripts/an_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/an_catalog.py -------------------------------------------------------------------------------- /src/util/log-scripts/an_filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/an_filelist.py -------------------------------------------------------------------------------- /src/util/log-scripts/an_first_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/an_first_timestamp.py -------------------------------------------------------------------------------- /src/util/log-scripts/an_ip_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/an_ip_active.py -------------------------------------------------------------------------------- /src/util/log-scripts/an_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/an_manifest.py -------------------------------------------------------------------------------- /src/util/log-scripts/an_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/an_report.py -------------------------------------------------------------------------------- /src/util/log-scripts/an_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/an_search.py -------------------------------------------------------------------------------- /src/util/log-scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/config.py -------------------------------------------------------------------------------- /src/util/log-scripts/cron.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/cron.ksh -------------------------------------------------------------------------------- /src/util/log-scripts/in_footer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/in_footer.py -------------------------------------------------------------------------------- /src/util/log-scripts/in_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/in_header.py -------------------------------------------------------------------------------- /src/util/log-scripts/log.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/log.css -------------------------------------------------------------------------------- /src/util/log-scripts/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/log.py -------------------------------------------------------------------------------- /src/util/log-scripts/site-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/site-config -------------------------------------------------------------------------------- /src/util/log-scripts/split.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/split.awk -------------------------------------------------------------------------------- /src/util/log-scripts/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/log-scripts/translate.py -------------------------------------------------------------------------------- /src/util/misc/auth_attr.d/package:pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/misc/auth_attr.d/package:pkg -------------------------------------------------------------------------------- /src/util/misc/exec_attr.d/package:pkg: -------------------------------------------------------------------------------- 1 | Software Installation:solaris:cmd:RO::/usr/bin/pkg:uid=0 2 | -------------------------------------------------------------------------------- /src/util/misc/user_attr.d/package:pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/misc/user_attr.d/package:pkg -------------------------------------------------------------------------------- /src/util/mkcert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/mkcert/Makefile -------------------------------------------------------------------------------- /src/util/mkcert/mkcert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/mkcert/mkcert.c -------------------------------------------------------------------------------- /src/util/opensolaris.org.sections: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/opensolaris.org.sections -------------------------------------------------------------------------------- /src/util/pkg-build/pkg-build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/pkg-build/pkg-build.bash -------------------------------------------------------------------------------- /src/util/pkglintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/pkglintrc -------------------------------------------------------------------------------- /src/util/publish/pkgdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/publish/pkgdiff.py -------------------------------------------------------------------------------- /src/util/publish/pkgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/publish/pkgfmt.py -------------------------------------------------------------------------------- /src/util/publish/pkglint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/publish/pkglint.py -------------------------------------------------------------------------------- /src/util/publish/pkgmerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/publish/pkgmerge.py -------------------------------------------------------------------------------- /src/util/publish/pkgmogrify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/publish/pkgmogrify.py -------------------------------------------------------------------------------- /src/util/publish/pkgsurf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/publish/pkgsurf.py -------------------------------------------------------------------------------- /src/util/publish/transforms/developer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/publish/transforms/developer -------------------------------------------------------------------------------- /src/util/publish/transforms/documentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/publish/transforms/documentation -------------------------------------------------------------------------------- /src/util/publish/transforms/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/publish/transforms/locale -------------------------------------------------------------------------------- /src/util/publish/transforms/smf-manifests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/publish/transforms/smf-manifests -------------------------------------------------------------------------------- /src/util/publish/update_file_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/publish/update_file_layout.py -------------------------------------------------------------------------------- /src/util/qual-simulator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/qual-simulator/Makefile -------------------------------------------------------------------------------- /src/util/qual-simulator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/qual-simulator/README -------------------------------------------------------------------------------- /src/util/qual-simulator/depot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/qual-simulator/depot.py -------------------------------------------------------------------------------- /src/util/qual-simulator/scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/qual-simulator/scenario.py -------------------------------------------------------------------------------- /src/util/test-summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/util/test-summary.sh -------------------------------------------------------------------------------- /src/web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/Makefile -------------------------------------------------------------------------------- /src/web/_themes/default/en/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/default/en/base.css -------------------------------------------------------------------------------- /src/web/_themes/default/en/body_end.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/default/en/body_end.shtml -------------------------------------------------------------------------------- /src/web/_themes/default/en/footer.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/default/en/footer.shtml -------------------------------------------------------------------------------- /src/web/_themes/default/en/head_end.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/default/en/head_end.shtml -------------------------------------------------------------------------------- /src/web/_themes/default/en/header.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/default/en/header.shtml -------------------------------------------------------------------------------- /src/web/_themes/default/feed-icon-14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/default/feed-icon-14x14.png -------------------------------------------------------------------------------- /src/web/_themes/opensolaris.com/en/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/opensolaris.com/en/base.css -------------------------------------------------------------------------------- /src/web/_themes/opensolaris.com/en/body_end.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/opensolaris.com/en/body_end.shtml -------------------------------------------------------------------------------- /src/web/_themes/opensolaris.com/en/footer.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/opensolaris.com/en/footer.shtml -------------------------------------------------------------------------------- /src/web/_themes/opensolaris.com/en/head_end.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/opensolaris.com/en/head_end.shtml -------------------------------------------------------------------------------- /src/web/_themes/opensolaris.com/en/header.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/opensolaris.com/en/header.shtml -------------------------------------------------------------------------------- /src/web/_themes/opensolaris.org/en/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/opensolaris.org/en/base.css -------------------------------------------------------------------------------- /src/web/_themes/opensolaris.org/en/body_end.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/opensolaris.org/en/body_end.shtml -------------------------------------------------------------------------------- /src/web/_themes/opensolaris.org/en/footer.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/opensolaris.org/en/footer.shtml -------------------------------------------------------------------------------- /src/web/_themes/opensolaris.org/en/head_end.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/opensolaris.org/en/head_end.shtml -------------------------------------------------------------------------------- /src/web/_themes/opensolaris.org/en/header.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/opensolaris.org/en/header.shtml -------------------------------------------------------------------------------- /src/web/_themes/opensolaris.org/feed-icon-14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/opensolaris.org/feed-icon-14x14.png -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/breadcrumb-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/breadcrumb-center.png -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/breadcrumb-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/breadcrumb-left.png -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/breadcrumb-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/breadcrumb-right.png -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/en/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/en/base.css -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/en/body_end.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/en/body_end.shtml -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/en/footer.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/en/footer.shtml -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/en/head_end.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/en/head_end.shtml -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/en/header.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/en/header.shtml -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/feed-icon-14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/feed-icon-14x14.png -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/mosaic-homebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/mosaic-homebutton.png -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/navigation-item-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/navigation-item-background.png -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/navigation-last-button-cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/navigation-last-button-cap.png -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/oralogo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/oralogo_small.png -------------------------------------------------------------------------------- /src/web/_themes/oracle.com/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/oracle.com/separator.png -------------------------------------------------------------------------------- /src/web/_themes/p5i-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/p5i-link.png -------------------------------------------------------------------------------- /src/web/_themes/pkg-block-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/pkg-block-icon.png -------------------------------------------------------------------------------- /src/web/_themes/pkg-block-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/pkg-block-logo.png -------------------------------------------------------------------------------- /src/web/_themes/pkg-block-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/pkg-block-logo.svg -------------------------------------------------------------------------------- /src/web/_themes/sun.com/en/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/sun.com/en/base.css -------------------------------------------------------------------------------- /src/web/_themes/sun.com/en/body_end.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/sun.com/en/body_end.shtml -------------------------------------------------------------------------------- /src/web/_themes/sun.com/en/footer.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/sun.com/en/footer.shtml -------------------------------------------------------------------------------- /src/web/_themes/sun.com/en/head_end.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/sun.com/en/head_end.shtml -------------------------------------------------------------------------------- /src/web/_themes/sun.com/en/header.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/sun.com/en/header.shtml -------------------------------------------------------------------------------- /src/web/_themes/yui-reset-font-grids_base-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/_themes/yui-reset-font-grids_base-min.css -------------------------------------------------------------------------------- /src/web/config.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/config.shtml -------------------------------------------------------------------------------- /src/web/en/advanced_search.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/en/advanced_search.shtml -------------------------------------------------------------------------------- /src/web/en/base.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/en/base.shtml -------------------------------------------------------------------------------- /src/web/en/catalog.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/en/catalog.shtml -------------------------------------------------------------------------------- /src/web/en/index.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/en/index.shtml -------------------------------------------------------------------------------- /src/web/en/layout.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/en/layout.shtml -------------------------------------------------------------------------------- /src/web/en/search.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/en/search.shtml -------------------------------------------------------------------------------- /src/web/en/stats.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/en/stats.shtml -------------------------------------------------------------------------------- /src/web/index.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/index.shtml -------------------------------------------------------------------------------- /src/web/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /src/web/shared.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/web/shared.shtml -------------------------------------------------------------------------------- /src/zoneproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/zoneproxy/Makefile -------------------------------------------------------------------------------- /src/zoneproxy/Makefile.constants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/zoneproxy/Makefile.constants -------------------------------------------------------------------------------- /src/zoneproxy/Makefile.subdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/zoneproxy/Makefile.subdirs -------------------------------------------------------------------------------- /src/zoneproxy/zoneproxy-adm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/zoneproxy/zoneproxy-adm/Makefile -------------------------------------------------------------------------------- /src/zoneproxy/zoneproxy-adm/zoneproxy-adm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/zoneproxy/zoneproxy-adm/zoneproxy-adm.c -------------------------------------------------------------------------------- /src/zoneproxy/zoneproxy-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/zoneproxy/zoneproxy-client/Makefile -------------------------------------------------------------------------------- /src/zoneproxy/zoneproxy-client/zoneproxy-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/zoneproxy/zoneproxy-client/zoneproxy-client.c -------------------------------------------------------------------------------- /src/zoneproxy/zoneproxyd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/zoneproxy/zoneproxyd/Makefile -------------------------------------------------------------------------------- /src/zoneproxy/zoneproxyd/zoneproxy_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/zoneproxy/zoneproxyd/zoneproxy_impl.h -------------------------------------------------------------------------------- /src/zoneproxy/zoneproxyd/zoneproxyd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/src/zoneproxy/zoneproxyd/zoneproxyd.c -------------------------------------------------------------------------------- /tools/notification.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/tools/notification.cfg -------------------------------------------------------------------------------- /tools/pycodestyle.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/solaris-ips/HEAD/tools/pycodestyle.cfg --------------------------------------------------------------------------------