├── .github └── workflows │ ├── current-amd8-daily-build-devel.yml │ ├── current-arm9-daily-build-devel.yml │ ├── run_unit_tests_on_docker.yml │ ├── stable-amd8-daily-build-devel.yml │ └── stable-arm9-daily-build-devel.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── bp.sh ├── cli ├── README.md ├── genHelp.sh └── scripts │ ├── .vscode │ └── settings.json │ ├── ConsoleLogger.py │ ├── ace-tests │ ├── .coveragerc │ ├── conftest.py │ ├── test_api.py │ ├── test_block_boundaries.py │ ├── test_cert_auth.py │ ├── test_composite_keys.py │ ├── test_config.py │ ├── test_data_types.py │ ├── test_fix_nulls.py │ ├── test_insert_only.py │ ├── test_merkle_trees_composite.py │ ├── test_merkle_trees_simple.py │ ├── test_mixed_case.py │ ├── test_replication.py │ ├── test_repset_diff.py │ ├── test_simple.py │ ├── test_simple_base.py │ └── test_table_filter.py │ ├── ace.py │ ├── ace_auth.py │ ├── ace_cli.py │ ├── ace_config.py │ ├── ace_constants.py │ ├── ace_core.py │ ├── ace_daemon.py │ ├── ace_data_models.py │ ├── ace_db.py │ ├── ace_exceptions.py │ ├── ace_html_reporter.py │ ├── ace_mtree.py │ ├── ace_readme.md │ ├── ace_sql.py │ ├── ace_timeparse.py │ ├── api.py │ ├── app.py │ ├── attic │ ├── cli.bat │ ├── nt.py │ ├── repo.py │ └── update_hub.py │ ├── check_pre_reqs.sh │ ├── cli.py │ ├── cloud.py │ ├── cluster.py │ ├── contrib │ └── localhost.py │ ├── db.py │ ├── docs │ ├── ace_api.mdx │ ├── ace_functions.md │ ├── ace_overview.mdx │ └── schedule_ace.mdx │ ├── etcd.py │ ├── fire │ ├── __init__.py │ ├── __main__.py │ ├── completion.py │ ├── completion_test.py │ ├── console │ │ ├── __init__.py │ │ ├── console_attr.py │ │ ├── console_attr_os.py │ │ ├── console_io.py │ │ ├── console_pager.py │ │ ├── encoding.py │ │ ├── files.py │ │ ├── platforms.py │ │ └── text.py │ ├── core.py │ ├── core_test.py │ ├── custom_descriptions.py │ ├── custom_descriptions_test.py │ ├── decorators.py │ ├── decorators_test.py │ ├── docstrings.py │ ├── docstrings_fuzz_test.py │ ├── docstrings_test.py │ ├── fire_import_test.py │ ├── fire_test.py │ ├── formatting.py │ ├── formatting_test.py │ ├── formatting_windows.py │ ├── helptext.py │ ├── helptext_test.py │ ├── inspectutils.py │ ├── inspectutils_test.py │ ├── interact.py │ ├── interact_test.py │ ├── main_test.py │ ├── parser.py │ ├── parser_fuzz_test.py │ ├── parser_test.py │ ├── test_components.py │ ├── test_components_bin.py │ ├── test_components_py3.py │ ├── test_components_test.py │ ├── testutils.py │ ├── testutils_test.py │ ├── trace.py │ ├── trace_test.py │ └── value_types.py │ ├── firewalld.py │ ├── get_old.py │ ├── ha_patroni.py │ ├── ini │ └── __init__.py │ ├── install.py │ ├── lib │ ├── PgInstance.py │ ├── click │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── _termui_impl.py │ │ ├── _textwrap.py │ │ ├── _winconsole.py │ │ ├── core.py │ │ ├── decorators.py │ │ ├── exceptions.py │ │ ├── formatting.py │ │ ├── globals.py │ │ ├── parser.py │ │ ├── py.typed │ │ ├── shell_completion.py │ │ ├── termui.py │ │ ├── testing.py │ │ ├── types.py │ │ └── utils.py │ ├── clilog.py │ ├── pgpasslib.py │ ├── semantic_version │ │ ├── __init__.py │ │ ├── base.py │ │ └── django_fields.py │ ├── six.py │ ├── termcolor │ │ ├── .coveragerc │ │ ├── .editorconfig │ │ ├── .flake8 │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── SECURITY.md │ │ │ ├── labels.yml │ │ │ ├── release-drafter.yml │ │ │ ├── renovate.json │ │ │ └── workflows │ │ │ │ ├── deploy.yml │ │ │ │ ├── labels.yml │ │ │ │ ├── lint.yml │ │ │ │ ├── release-drafter.yml │ │ │ │ ├── require-pr-label.yml │ │ │ │ └── test.yml │ │ ├── .gitignore │ │ ├── .pre-commit-config.yaml │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _types.py │ │ ├── py.typed │ │ └── termcolor.py │ └── typing_extensions.py │ ├── log_helpers.py │ ├── meta.py │ ├── service.py │ ├── setup.py │ ├── setup_core.py │ ├── sh │ └── cli.sh │ ├── skeleton.sh │ ├── spock.py │ ├── sql │ ├── northwind.sql │ ├── pgbench_check.sql │ └── spockbench_check.sql │ ├── startup.py │ ├── um.py │ ├── upgrade-cli-fire.py │ ├── upgrade-cli.py │ └── util.py ├── devel ├── adb │ ├── install-adb │ └── remove-adb ├── attic │ ├── ansible │ │ ├── README.md │ │ ├── ac │ │ ├── env-arm9.sh │ │ └── run.sh │ ├── firewall │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── firewall.py │ │ ├── requirements.txt │ │ └── utilx.py │ ├── isTTY.sh │ ├── kafka │ │ ├── getPKMG.sh │ │ ├── install-java │ │ ├── install-kafka │ │ ├── kafka.service.orig │ │ ├── remove-kafka │ │ ├── start-kafka │ │ └── stop-kafka │ ├── pgml-containers │ │ ├── install-container.toolkit.sh │ │ └── ub22 │ │ │ ├── Dockerfile │ │ │ ├── alias.sh │ │ │ ├── install_pgml.py │ │ │ └── reqs.ub22 │ ├── pgml-deb12-container │ │ ├── Dockerfile │ │ └── build.sh │ ├── test-farm-podman │ │ ├── build-amd │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ └── run.sh │ │ ├── build.sh │ │ ├── db12 │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ ├── env.sh │ │ │ └── run.sh │ │ ├── el8 │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ ├── env.sh │ │ │ └── run.sh │ │ ├── el9 │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ ├── env.sh │ │ │ └── run.sh │ │ ├── fd40 │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ ├── env.sh │ │ │ └── run.sh │ │ ├── run.sh │ │ ├── ub22 │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ ├── env.sh │ │ │ └── run.sh │ │ └── ub24 │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ ├── env.sh │ │ │ └── run.sh │ └── ubi │ │ ├── Dockerfile │ │ ├── bld.sh │ │ └── run.sh ├── packages │ ├── .gitignore │ ├── README.md │ ├── after-install.sh │ ├── after-remove.sh │ ├── before-install.sh │ ├── install_fpm.sh │ └── run_fpm.sh ├── pg │ ├── 1-pgml-bld-rust.sh │ ├── 2-pgml-copy-IN.sh │ ├── attic │ │ ├── 2-pgml-pip-venv.sh │ │ └── osxSetup.txt │ ├── downBuild.sh │ ├── pathSet.sh │ └── pgml-env.sh ├── pgbin │ └── build │ │ ├── build-all-components.sh │ │ ├── build-all-pgbin.sh │ │ ├── build-component.sh │ │ ├── build-pgbin.sh │ │ ├── run-components-common-builds.sh │ │ ├── run-components-pgedge-builds.sh │ │ ├── run-pgbin-builds.sh │ │ ├── sharedLibs.sh │ │ └── versions.sh ├── setup │ ├── 10-toolset.sh │ ├── 20-venv.sh │ ├── 30-bashrc.sh │ ├── 40-awscli.sh │ ├── 50-pull-IN.sh │ ├── Dockerfile.rocky810 │ ├── Dockerfile.rocky95 │ ├── attic │ │ ├── 3a-certbot.sh │ │ ├── 3a-java17.sh │ │ ├── 3b-etcd-haproxy.sh │ │ ├── 3b-zookeeper.sh │ │ ├── 3c-kafka.sh │ │ ├── 3c-mosquitto.sh │ │ ├── 3d-dns.sh │ │ ├── 4a-docker.sh │ │ └── 4b-compose.sh │ ├── bash_profile │ ├── common.env │ ├── compose │ │ ├── Dockerfile.node.rocky95 │ │ ├── Dockerfile.node.ubuntu2204 │ │ ├── Dockerfile.repo │ │ ├── Makefile │ │ ├── README.md │ │ ├── docker-compose.yaml │ │ └── proxy_server.py │ ├── gitHelpful.sh │ └── in │ │ ├── dryrun.sh │ │ ├── pull-s3.sh │ │ └── push-s3.sh ├── startHTTP.sh ├── stopHTTP.sh └── util │ ├── build_to_devel.sh │ ├── copy-newer.sh │ ├── copy-to-devel.sh │ ├── copy-to-download.sh │ ├── copy-to-upstream.sh │ ├── cp-devel-to-download.sh │ ├── cp-devel-to-upstream.sh │ ├── cp-upstream-to-download.sh │ ├── in │ ├── dryrun.sh │ ├── pull-s3.sh │ └── push-s3.sh │ ├── rename.py │ ├── replace-sql.py │ └── replace.py ├── docs ├── cli_functions.md └── functions │ ├── ace-mtree-build.md │ ├── ace-mtree-init.md │ ├── ace-mtree-table-diff.md │ ├── ace-mtree-teardown.md │ ├── ace-mtree-update.md │ ├── ace-mtree.md │ ├── ace-repset-diff.md │ ├── ace-schema-diff.md │ ├── ace-spock-diff.md │ ├── ace-spock-exception-update.md │ ├── ace-start.md │ ├── ace-table-diff.md │ ├── ace-table-repair.md │ ├── ace-table-rerun.md │ ├── ace.md │ ├── cluster-add-db.md │ ├── cluster-add-node.md │ ├── cluster-app-concurrent-index.md │ ├── cluster-app-install.md │ ├── cluster-app-remove.md │ ├── cluster-command.md │ ├── cluster-init.md │ ├── cluster-json-create.md │ ├── cluster-json-template.md │ ├── cluster-json-validate.md │ ├── cluster-list-nodes.md │ ├── cluster-remove-node.md │ ├── cluster-remove.md │ ├── cluster-replication-begin.md │ ├── cluster-replication-check.md │ ├── cluster-ssh.md │ ├── cluster.md │ ├── db-create.md │ ├── db-guc-set.md │ ├── db-guc-show.md │ ├── db-set-readonly.md │ ├── db-test-io.md │ ├── db.md │ ├── localhost-cluster-create.md │ ├── localhost-cluster-destroy.md │ ├── localhost.md │ ├── service-config.md │ ├── service-disable.md │ ├── service-enable.md │ ├── service-init.md │ ├── service-reload.md │ ├── service-restart.md │ ├── service-start.md │ ├── service-status.md │ ├── service-stop.md │ ├── service.md │ ├── setup.md │ ├── spock-health-check.md │ ├── spock-metrics-check.md │ ├── spock-node-add-interface.md │ ├── spock-node-create.md │ ├── spock-node-drop-interface.md │ ├── spock-node-drop.md │ ├── spock-node-list.md │ ├── spock-replicate-ddl.md │ ├── spock-repset-add-partition.md │ ├── spock-repset-add-table.md │ ├── spock-repset-alter.md │ ├── spock-repset-create.md │ ├── spock-repset-drop.md │ ├── spock-repset-list-tables.md │ ├── spock-repset-remove-partition.md │ ├── spock-repset-remove-table.md │ ├── spock-sequence-convert.md │ ├── spock-set-readonly.md │ ├── spock-sub-add-repset.md │ ├── spock-sub-alter-interface.md │ ├── spock-sub-create.md │ ├── spock-sub-disable.md │ ├── spock-sub-drop.md │ ├── spock-sub-enable.md │ ├── spock-sub-remove-repset.md │ ├── spock-sub-resync-table.md │ ├── spock-sub-show-status.md │ ├── spock-sub-show-table.md │ ├── spock-sub-wait-for-sync.md │ ├── spock-table-wait-for-sync.md │ ├── spock.md │ ├── um-clean.md │ ├── um-download.md │ ├── um-install.md │ ├── um-list.md │ ├── um-remove.md │ ├── um-update.md │ ├── um-upgrade.md │ ├── um-verify-metadata.md │ ├── um.md │ └── upgrade-cli.md ├── env.sh ├── make_tgz.sh ├── requirements.txt ├── src ├── ace │ ├── start-ace.py │ └── stop-ace.py ├── attic │ ├── anon-pgXX │ │ ├── install-anon-pgXX.py │ │ └── remove-anon-pgXX.py │ ├── ansible │ │ ├── getPKMG.sh │ │ ├── install-ansible │ │ └── remove-ansible │ ├── apicurio │ │ ├── install-apicurio │ │ ├── start-apicurio │ │ └── stop-apicurio │ ├── apscheduler │ │ ├── background.py │ │ └── requirements.txt │ ├── archivist-pgXX │ │ ├── install-archivist-pgXX.py │ │ └── remove-archivist-pgXX.py │ ├── audit-pgXX │ │ ├── install-audit-pgXX.py │ │ └── remove-audit-pgXX.py │ ├── background-pgXX │ │ ├── install-background-pgXX.py │ │ └── remove-background-pgXX.py │ ├── bqfdw-pgXX │ │ └── install-bqfdw-pgXX.py │ ├── bts │ │ ├── bootstrap.sh │ │ ├── config-rancher │ │ ├── disable-pgdg │ │ ├── enable-pgdg │ │ ├── etcd.service │ │ ├── getPKMG.sh │ │ ├── install-docker │ │ ├── install-etcd │ │ ├── install-jdk11 │ │ ├── install-kubectl │ │ ├── install-nginx │ │ ├── install-pgdg │ │ ├── install-python3 │ │ ├── install-rancher │ │ ├── rancher-cluster.yml │ │ ├── reload-pgdg │ │ ├── remove-ansible │ │ ├── remove-docker │ │ ├── remove-etcd │ │ ├── remove-kubectl │ │ ├── remove-nginx │ │ ├── remove-pgdg │ │ ├── sshIsNoPwd.sh │ │ ├── sshSetNoPwd.sh │ │ ├── start-docker │ │ ├── start-etcd │ │ ├── start-nginx │ │ ├── start-pgdg │ │ ├── status-pgdg │ │ ├── stop-docker │ │ ├── stop-etcd │ │ ├── stop-nginx │ │ ├── stop-pgdg │ │ └── systemctl-pgdg │ ├── bulkload-pgXX │ │ ├── install-bulkload-pgXX.py │ │ └── remove-bulkload-pgXX.py │ ├── cassandra │ │ ├── cassandra.repo │ │ ├── install-cassandra │ │ ├── remove-cassandra │ │ ├── start-cassandra │ │ └── stop-cassandra │ ├── cassandrafdw-pgXX │ │ ├── install-cassandrafdw-pgXX.py │ │ └── remove-cassandrafdw-pgXX.py │ ├── citus-pgXX │ │ ├── install-citus-pgXX.py │ │ └── remove-citus-pgXX.py │ ├── cloud │ │ ├── install-cloud │ │ └── remove-cloud │ ├── cron-pgXX │ │ ├── install-cron-pgXX.py │ │ └── remove-cron-pgXX.py │ ├── csvdiff │ │ ├── install-csvdiff.py │ │ └── remove-csvdiff.py │ ├── curl-pgXX │ │ ├── install-curl-pgXX.py │ │ └── remove-curl-pgXX.py │ ├── debezium │ │ ├── connect-distributed.properties │ │ ├── getPKMG.sh │ │ ├── install-debezium │ │ ├── kafka-connect.service │ │ ├── pg-connect.json │ │ ├── remove-debezium │ │ ├── start-debezium │ │ ├── start-pg-connect.sh │ │ └── stop-debezium │ ├── decoderbufs-pgXX │ │ ├── install-decoderbufs-pgXX.py │ │ ├── pg_hba.conf.replication │ │ └── remove-decoderbufs-pgXX.py │ ├── docker │ │ ├── getPKMG.sh │ │ ├── install-debian │ │ ├── install-docker │ │ ├── install-el │ │ ├── install-ubuntu │ │ ├── remove-docker │ │ ├── start-docker │ │ └── stop-docker │ ├── elasticsearch │ │ ├── install-elasticsearch │ │ ├── remove-elasticsearch │ │ ├── start-elasticsearch │ │ └── stop-elasticsearch │ ├── esfdw-pgXX │ │ └── install-esfdw-pgXX.py │ ├── filebeat │ │ ├── elasticsearch.repo │ │ ├── filebeat.yml │ │ ├── install-filebeat │ │ ├── remove-filebeat │ │ ├── start-filebeat │ │ ├── stop-filebeat │ │ └── system.yml │ ├── firewalld │ │ ├── config-firewalld.py │ │ ├── install-firewalld.py │ │ ├── remove-firewalld.py │ │ ├── start-firewalld.py │ │ └── stop-firewalld.py │ ├── fixeddecimal-pgXX │ │ ├── install-fixeddecimal-pgXX.py │ │ └── remove-fixeddecimal-pgXX.py │ ├── foslots-pgXX │ │ ├── install-foslots-pgXX.py │ │ └── remove-foslots-pgXX.py │ ├── gcc │ │ └── install-gcc │ ├── golang │ │ └── install-golang │ ├── grafana │ │ ├── grafana.repo │ │ ├── install-grafana │ │ ├── remove-grafana │ │ ├── start-grafana │ │ └── stop-grafana │ ├── haproxy │ │ ├── config-haproxy │ │ ├── disable-haproxy │ │ ├── enable-haproxy │ │ ├── install-haproxy │ │ ├── remove-haproxy │ │ ├── start-haproxy │ │ └── stop-haproxy │ ├── helm │ │ ├── install-helm │ │ └── remove-helm │ ├── hg │ │ ├── install-hg │ │ └── remove-hg │ ├── hintplan-pgXX │ │ ├── install-hintplan-pgXX.py │ │ └── remove-hintplan-pgXX.py │ ├── hivefdw-pgXX │ │ ├── install-hivefdw-pgXX.py │ │ └── remove-hivefdw-pgXX.py │ ├── hivemeta │ │ ├── config-hivemeta │ │ ├── example-hive-site.xml │ │ ├── install-hivemeta │ │ ├── postgresql-42.2.16.jar │ │ └── start-hivemeta │ ├── http-pgXX │ │ ├── install-http-pgXX.py │ │ └── remove-http-pgXX.py │ ├── hypopg-pgXX │ │ ├── install-hypopg-pgXX.py │ │ └── remove-hypopg-pgXX.py │ ├── instantclient │ │ └── install-instantclient │ ├── java │ │ └── install-java │ ├── keycloak │ │ └── install-keycloak │ ├── kibana │ │ ├── config-kibana │ │ ├── disable-kibana │ │ ├── enable-kibana │ │ ├── install-kibana │ │ ├── kibana.yml │ │ ├── nginx-kibana.conf │ │ ├── remove-kibana │ │ ├── start-kibana │ │ └── stop-kibana │ ├── kubectl │ │ ├── install-kubectl │ │ └── remove-kubectl │ ├── kubernetes │ │ ├── install-kubernetes │ │ ├── remove-kubernetes │ │ ├── start-kubernetes │ │ ├── status-kubernetes │ │ └── stop-kubernetes │ ├── logstash │ │ ├── config-logstash │ │ ├── disable-logstash │ │ ├── enable-logstash │ │ ├── install-logstash │ │ ├── logstash.yml │ │ ├── remove-logstash │ │ ├── start-logstash │ │ └── stop-logstash │ ├── lolor-pgXX │ │ ├── README.md │ │ ├── install-lolor-pgXX.py │ │ └── remove-lolor-pgXX.py │ ├── mariadb │ │ ├── getPKMG.sh │ │ ├── install-mariadb │ │ ├── remove-mariadb │ │ ├── start-mariadb │ │ └── stop-mariadb │ ├── minikube │ │ ├── install-minikube │ │ └── remove-minikube │ ├── mongodb │ │ ├── install-mongodb │ │ ├── remove-mongodb │ │ ├── start-mongodb │ │ └── stop-mongodb │ ├── mongofdw-pgXX │ │ ├── install-mongofdw-pgXX.py │ │ └── remove-mongofdw-pgXX.py │ ├── multicorn2-pgXX │ │ ├── install-multicorn2-pgXX.py │ │ └── remove-multicorn-pgXX.py │ ├── mysqlfdw-pgXX │ │ ├── install-mysqlfdw-pgXX.py │ │ └── remove-mysqlfdw-pgXX.py │ ├── nginx │ │ ├── getPKMG.sh │ │ ├── init │ │ │ ├── index.html │ │ │ ├── nginx.conf │ │ │ ├── self-signed.conf │ │ │ └── ssl-params.conf │ │ ├── install-nginx │ │ ├── remove-nginx │ │ ├── selfSignCert.sh │ │ ├── start-nginx │ │ └── stop-nginx │ ├── nodejs │ │ ├── hello.js │ │ ├── install-nodejs │ │ ├── remove-nodejs │ │ ├── start-nodejs │ │ └── stop-nodejs │ ├── old-pgadmin │ │ ├── init-pgadmin.py │ │ ├── remove-pgadmin │ │ ├── start-pgadmin.py │ │ └── stop-pgadmin │ ├── omnidb │ │ ├── getPKMG.sh │ │ ├── install-omnidb │ │ └── omnidb.service │ ├── openjdk │ │ ├── getPKMG.sh │ │ ├── install-openjdk │ │ └── remove-openjdk │ ├── openstack │ │ └── install-openstack │ ├── ora2pg │ │ ├── install-ora2pg │ │ └── remove-ora2pg │ ├── oracle_xe │ │ ├── README.1st │ │ ├── config-oracle_xe │ │ ├── install-oracle_xe │ │ ├── remove-oracle_xe │ │ ├── start-oracle_xe │ │ └── stop-oracle_xe │ ├── oraclefdw-pgXX │ │ ├── install-oraclefdw-pgXX.py │ │ └── remove-oraclefdw-pgXX.py │ ├── orafce-pgXX │ │ ├── install-orafce-pgXX.py │ │ └── remove-orafce-pgXX.py │ ├── partman-pgXX │ │ ├── install-partman-pgXX.py │ │ └── remove-partman-pgXX.py │ ├── pgadmin4 │ │ ├── config-pgadmin4 │ │ ├── install-pgadmin4 │ │ ├── remove-pgadmin4 │ │ ├── start-pgadmin4 │ │ └── stop-pgadmin4 │ ├── pgdg │ │ ├── disable-pgdg │ │ ├── enable-pgdg │ │ ├── env.sh │ │ ├── install-pgdg │ │ ├── reload-pgdg │ │ ├── remove-pgdg │ │ ├── start-pgdg │ │ ├── status-pgdg │ │ ├── stop-pgdg │ │ └── systemctl-pgdg │ ├── pglogical-pgXX │ │ ├── install-pglogical-pgXX.py │ │ └── remove-pglogical-pgXX.py │ ├── pgml │ │ └── install-nvidia-cuda-toolkit.sh │ ├── pgtsql-pgXX │ │ ├── install-pgtsql-pgXX.py │ │ └── remove-pgtsql-pgXX.py │ ├── pldebugger-pgXX │ │ ├── install-pldebugger-pgXX.py │ │ └── remove-pldebugger-pgXX.py │ ├── pljava-pgXX │ │ ├── install-pljava-pgXX.py │ │ └── remove-pljava-pgXX.py │ ├── plprofiler-pgXX │ │ ├── LICENSE.TXT │ │ ├── install-plprofiler-pgXX.py │ │ ├── remove-plprofiler-pgXX.py │ │ └── src.tar.gz │ ├── plv8-pgXX │ │ ├── install-plv8-pgXX.py │ │ └── remove-plv8-pgXX.py │ ├── pool2 │ │ ├── getPKMG.sh │ │ ├── install-pool2 │ │ ├── remove-pool2 │ │ ├── start-pool2 │ │ └── stop-pool2 │ ├── postgis-pgXX │ │ ├── install-postgis-pgXX.py │ │ └── remove-postgis-pgXX.py │ ├── postgrest │ │ ├── init-postgrest.py │ │ ├── init-swagger-initializer.js │ │ ├── install-postgrest │ │ ├── postgrest.service │ │ ├── remove-postgrest.py │ │ ├── start-postgrest.py │ │ └── stop-postgrest.py │ ├── prest │ │ └── install-prest │ ├── prestosql │ │ ├── install-prestosql │ │ ├── remove-prestosql │ │ ├── start-prestosql │ │ └── stop-prestosql │ ├── proctab-pgXX │ │ ├── install-proctab-pgXX.py │ │ └── remove-proctab-pgXX.py │ ├── qualstats-pgXX │ │ ├── install-qualstats-pgXX.py │ │ └── remove-qualstats-pgXX.py │ ├── r │ │ └── install-r │ ├── rabbitmq │ │ ├── install-rabbitmq │ │ ├── remove-rabbitmq │ │ ├── start-rabbitmq │ │ └── stop-rabbitmq │ ├── rancher │ │ ├── config-rancher │ │ ├── install-rancher │ │ ├── rancher-cluster.yml │ │ └── rancher-cluster.yml.orig │ ├── readonly-pgXX │ │ ├── install-readonly-pgXX.py │ │ └── remove-readonly-pgXX.py │ ├── redis │ │ ├── getPKMG.sh │ │ ├── install-redis │ │ ├── redis.conf │ │ ├── remove-redis │ │ ├── start-redis │ │ └── stop-redis │ ├── redisfdw-pgXX │ │ ├── install-redisfdw-pgXX.py │ │ └── remove-redisfdw-pgXX.py │ ├── repack-pgXX │ │ ├── install-repack-pgXX.py │ │ └── remove-repack-pgXX.py │ ├── rustpgx-pgXX │ │ └── install-rustpgx-pgXX │ ├── snowflake-pgXX │ │ ├── install-snowflake-pgXX.py │ │ └── remove-snowflake-pgXX.py │ ├── spock32-pgXX │ │ ├── install-spock32-pgXX.py │ │ └── remove-spock32-pgXX.py │ ├── spock33-pgXX │ │ ├── install-spock33-pgXX.py │ │ └── remove-spock33-pgXX.py │ ├── spock40-pgXX │ │ ├── install-spock40-pgXX.py │ │ └── remove-spock40-pgXX.py │ ├── sqlsvr │ │ ├── config-sqlsvr │ │ ├── getPKMG.sh │ │ ├── install-sqlsvr │ │ ├── remove-sqlsvr │ │ ├── start-sqlsvr │ │ └── stop-sqlsvr │ ├── statkcache-pgXX │ │ ├── install-statkcache-pgXX.py │ │ └── remove-statkcache-pgXX.py │ ├── tdsfdw-pgXX │ │ ├── install-tdsfdw-pgXX.py │ │ └── remove-tdsfdw-pgXX.py │ ├── terraform │ │ ├── getPKMG.sh │ │ └── install-terraform │ ├── timescaledb-pgXX │ │ ├── install-timescaledb-pgXX.py │ │ └── remove-timescaledb-pgXX.py │ ├── vector-pgXX │ │ ├── install-vector-pgXX.py │ │ └── remove-vector-pgXX.py │ ├── wa-pgXX │ │ └── install-wa-pgXX.py │ ├── waitsampling-pgXX │ │ ├── install-waitsampling-pgXX.py │ │ └── remove-waitsampling-pgXX.py │ ├── wal2json-pgXX │ │ ├── install-wal2json-pgXX.py │ │ ├── pg_hba.conf.replication │ │ └── remove-wal2json-pgXX.py │ ├── walg │ │ └── install-walg │ ├── web │ │ └── static │ │ │ ├── about.py │ │ │ ├── components.py │ │ │ ├── contact_us.py │ │ │ ├── dbaas.html │ │ │ ├── deploy.sh │ │ │ ├── downloads.py │ │ │ ├── gen2.sh │ │ │ ├── genpl2.sh │ │ │ ├── h5.html │ │ │ ├── html │ │ │ └── img │ │ │ │ ├── about.png │ │ │ │ ├── agent.png │ │ │ │ ├── anon.png │ │ │ │ ├── apicurio.png │ │ │ │ ├── audit.png │ │ │ │ ├── backrest.png │ │ │ │ ├── badger.png │ │ │ │ ├── banner_x.png │ │ │ │ ├── bigquery.png │ │ │ │ ├── bouncer.png │ │ │ │ ├── bowtie.png │ │ │ │ ├── bruce.png │ │ │ │ ├── bulkload.png │ │ │ │ ├── citus.png │ │ │ │ ├── contact_us.png │ │ │ │ ├── cron.png │ │ │ │ ├── debezium.png │ │ │ │ ├── debugger.png │ │ │ │ ├── downloads.png │ │ │ │ ├── esfdw.png │ │ │ │ ├── hintplan.png │ │ │ │ ├── index.png │ │ │ │ ├── index2.png │ │ │ │ ├── jan.png │ │ │ │ ├── larry.png │ │ │ │ ├── line.png │ │ │ │ ├── multicorn.png │ │ │ │ ├── mysqlfdw.png │ │ │ │ ├── olr.png │ │ │ │ ├── omnidb.png │ │ │ │ ├── op-systems.png │ │ │ │ ├── op-systems1.png │ │ │ │ ├── ora2pg.png │ │ │ │ ├── oracle_fdw.png │ │ │ │ ├── parquet_fdw.png │ │ │ │ ├── partman.png │ │ │ │ ├── patroni.png │ │ │ │ ├── pg-bouncer.png │ │ │ │ ├── pgXX.png │ │ │ │ ├── pgadmin.png │ │ │ │ ├── pglogical.png │ │ │ │ ├── pgpool2.png │ │ │ │ ├── platforms.png │ │ │ │ ├── platforms2.png │ │ │ │ ├── platforms3.png │ │ │ │ ├── platforms4.png │ │ │ │ ├── pljava.png │ │ │ │ ├── plprofiler.png │ │ │ │ ├── plusql.png │ │ │ │ ├── postgis.png │ │ │ │ ├── postgres-apps.png │ │ │ │ ├── postgres-core.png │ │ │ │ ├── postgres-devs.png │ │ │ │ ├── postgres-extensions.png │ │ │ │ ├── postgres-fdws.png │ │ │ │ ├── postgres-hyper.png │ │ │ │ ├── postgresql.png │ │ │ │ ├── postgrest.png │ │ │ │ ├── protobuf.png │ │ │ │ ├── r-project.png │ │ │ │ ├── repack.png │ │ │ │ ├── rustpgx.png │ │ │ │ ├── sailboat.png │ │ │ │ ├── server.png │ │ │ │ ├── services.png │ │ │ │ ├── setuser.png │ │ │ │ ├── slonik.png │ │ │ │ ├── spacer.png │ │ │ │ ├── spock.png │ │ │ │ ├── tds.png │ │ │ │ ├── timescaledb.png │ │ │ │ ├── tutorial.png │ │ │ │ ├── v8.png │ │ │ │ ├── waitsampling.png │ │ │ │ └── whatif.png │ │ │ ├── index.py │ │ │ ├── local.db │ │ │ ├── oscg.py │ │ │ ├── project.py │ │ │ ├── services.py │ │ │ └── tutorial.py │ └── zookeeper │ │ ├── example-log4j.properties │ │ ├── example.config │ │ ├── example.service │ │ ├── getPKMG.sh │ │ ├── install-zookeeper │ │ ├── remove-zookeeper │ │ ├── start-zookeeper │ │ └── stop-zookeeper ├── backrest │ ├── backrest.py │ ├── install-backrest.py │ ├── pitr.py │ └── remove-backrest.py ├── bouncer │ ├── bouncer.service │ ├── init-bouncer.py │ ├── install-bouncer.py │ ├── pgbouncer.ini │ ├── remove-bouncer.py │ ├── start-bouncer.py │ └── stop-bouncer.py ├── conf │ ├── components.sql │ ├── db_local.db │ ├── insert_component.py │ ├── insert_setting.py │ └── versions.sql ├── ctlibs │ ├── config-ctlibs.py │ ├── install-ctlibs.py │ └── remove-ctlibs.py ├── etcd │ ├── etcd.py │ ├── etcd.service │ ├── install-etcd.py │ ├── remove-etcd │ ├── start-etcd │ └── stop-etcd ├── kirk │ ├── example-config.sh │ ├── install-kirk.py │ ├── kirk.py │ ├── start-kirk │ └── stop-kirk ├── minio │ ├── install-minio.py │ ├── minio.py │ ├── minio.service │ ├── remove-minio │ ├── start-minio │ └── stop-minio ├── patroni │ ├── ha_patroni.py │ ├── install-patroni.py │ ├── patroni.service │ └── patroni.yaml ├── pgXX │ ├── activity-pgXX.py │ ├── config-pgXX.py │ ├── genSelfCert.sh │ ├── init-pgXX.py │ ├── install-pgXX.py │ ├── pg_hba.conf.nix │ ├── reload-pgXX.py │ ├── remove-pgXX.py │ ├── run-pgctl.py │ ├── start-pgXX.py │ ├── stop-pgXX.py │ └── sysctl.conf ├── pgcat │ ├── config-pgcat │ ├── install-pgcat │ ├── pgcat.service │ ├── pgcat.toml │ ├── pgcat.toml.template │ ├── start-pgcat │ └── stop-pgcat ├── prompgexp │ ├── install-prompgexp │ ├── queries.yml │ ├── start-prompgexp │ └── stop-prompgexp └── repo │ ├── startLOCAL │ └── stopLOCAL └── test ├── entrypoint.sh ├── runner.py ├── runner_dependencies.md ├── schedule_files └── script_file └── t ├── lib ├── 14config.env ├── 15config.env ├── 16config.env └── 17config.env ├── temp.sh └── util_test.py /.github/workflows/current-amd8-daily-build-devel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/.github/workflows/current-amd8-daily-build-devel.yml -------------------------------------------------------------------------------- /.github/workflows/current-arm9-daily-build-devel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/.github/workflows/current-arm9-daily-build-devel.yml -------------------------------------------------------------------------------- /.github/workflows/run_unit_tests_on_docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/.github/workflows/run_unit_tests_on_docker.yml -------------------------------------------------------------------------------- /.github/workflows/stable-amd8-daily-build-devel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/.github/workflows/stable-amd8-daily-build-devel.yml -------------------------------------------------------------------------------- /.github/workflows/stable-arm9-daily-build-devel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/.github/workflows/stable-arm9-daily-build-devel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/README.md -------------------------------------------------------------------------------- /bp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/bp.sh -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/genHelp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/genHelp.sh -------------------------------------------------------------------------------- /cli/scripts/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/.vscode/settings.json -------------------------------------------------------------------------------- /cli/scripts/ConsoleLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ConsoleLogger.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/.coveragerc -------------------------------------------------------------------------------- /cli/scripts/ace-tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/conftest.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_api.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_block_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_block_boundaries.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_cert_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_cert_auth.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_composite_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_composite_keys.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_config.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_data_types.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_fix_nulls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_fix_nulls.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_insert_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_insert_only.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_merkle_trees_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_merkle_trees_composite.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_merkle_trees_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_merkle_trees_simple.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_mixed_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_mixed_case.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_replication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_replication.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_repset_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_repset_diff.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_simple.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_simple_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_simple_base.py -------------------------------------------------------------------------------- /cli/scripts/ace-tests/test_table_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace-tests/test_table_filter.py -------------------------------------------------------------------------------- /cli/scripts/ace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace.py -------------------------------------------------------------------------------- /cli/scripts/ace_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_auth.py -------------------------------------------------------------------------------- /cli/scripts/ace_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_cli.py -------------------------------------------------------------------------------- /cli/scripts/ace_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_config.py -------------------------------------------------------------------------------- /cli/scripts/ace_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_constants.py -------------------------------------------------------------------------------- /cli/scripts/ace_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_core.py -------------------------------------------------------------------------------- /cli/scripts/ace_daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_daemon.py -------------------------------------------------------------------------------- /cli/scripts/ace_data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_data_models.py -------------------------------------------------------------------------------- /cli/scripts/ace_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_db.py -------------------------------------------------------------------------------- /cli/scripts/ace_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_exceptions.py -------------------------------------------------------------------------------- /cli/scripts/ace_html_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_html_reporter.py -------------------------------------------------------------------------------- /cli/scripts/ace_mtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_mtree.py -------------------------------------------------------------------------------- /cli/scripts/ace_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_readme.md -------------------------------------------------------------------------------- /cli/scripts/ace_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_sql.py -------------------------------------------------------------------------------- /cli/scripts/ace_timeparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ace_timeparse.py -------------------------------------------------------------------------------- /cli/scripts/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/api.py -------------------------------------------------------------------------------- /cli/scripts/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/app.py -------------------------------------------------------------------------------- /cli/scripts/attic/cli.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/attic/cli.bat -------------------------------------------------------------------------------- /cli/scripts/attic/nt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/attic/nt.py -------------------------------------------------------------------------------- /cli/scripts/attic/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/attic/repo.py -------------------------------------------------------------------------------- /cli/scripts/attic/update_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/attic/update_hub.py -------------------------------------------------------------------------------- /cli/scripts/check_pre_reqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/check_pre_reqs.sh -------------------------------------------------------------------------------- /cli/scripts/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/cli.py -------------------------------------------------------------------------------- /cli/scripts/cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/cloud.py -------------------------------------------------------------------------------- /cli/scripts/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/cluster.py -------------------------------------------------------------------------------- /cli/scripts/contrib/localhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/contrib/localhost.py -------------------------------------------------------------------------------- /cli/scripts/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/db.py -------------------------------------------------------------------------------- /cli/scripts/docs/ace_api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/docs/ace_api.mdx -------------------------------------------------------------------------------- /cli/scripts/docs/ace_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/docs/ace_functions.md -------------------------------------------------------------------------------- /cli/scripts/docs/ace_overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/docs/ace_overview.mdx -------------------------------------------------------------------------------- /cli/scripts/docs/schedule_ace.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/docs/schedule_ace.mdx -------------------------------------------------------------------------------- /cli/scripts/etcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/etcd.py -------------------------------------------------------------------------------- /cli/scripts/fire/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/__init__.py -------------------------------------------------------------------------------- /cli/scripts/fire/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/__main__.py -------------------------------------------------------------------------------- /cli/scripts/fire/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/completion.py -------------------------------------------------------------------------------- /cli/scripts/fire/completion_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/completion_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/console/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/scripts/fire/console/console_attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/console/console_attr.py -------------------------------------------------------------------------------- /cli/scripts/fire/console/console_attr_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/console/console_attr_os.py -------------------------------------------------------------------------------- /cli/scripts/fire/console/console_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/console/console_io.py -------------------------------------------------------------------------------- /cli/scripts/fire/console/console_pager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/console/console_pager.py -------------------------------------------------------------------------------- /cli/scripts/fire/console/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/console/encoding.py -------------------------------------------------------------------------------- /cli/scripts/fire/console/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/console/files.py -------------------------------------------------------------------------------- /cli/scripts/fire/console/platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/console/platforms.py -------------------------------------------------------------------------------- /cli/scripts/fire/console/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/console/text.py -------------------------------------------------------------------------------- /cli/scripts/fire/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/core.py -------------------------------------------------------------------------------- /cli/scripts/fire/core_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/core_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/custom_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/custom_descriptions.py -------------------------------------------------------------------------------- /cli/scripts/fire/custom_descriptions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/custom_descriptions_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/decorators.py -------------------------------------------------------------------------------- /cli/scripts/fire/decorators_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/decorators_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/docstrings.py -------------------------------------------------------------------------------- /cli/scripts/fire/docstrings_fuzz_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/docstrings_fuzz_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/docstrings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/docstrings_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/fire_import_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/fire_import_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/fire_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/fire_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/formatting.py -------------------------------------------------------------------------------- /cli/scripts/fire/formatting_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/formatting_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/formatting_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/formatting_windows.py -------------------------------------------------------------------------------- /cli/scripts/fire/helptext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/helptext.py -------------------------------------------------------------------------------- /cli/scripts/fire/helptext_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/helptext_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/inspectutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/inspectutils.py -------------------------------------------------------------------------------- /cli/scripts/fire/inspectutils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/inspectutils_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/interact.py -------------------------------------------------------------------------------- /cli/scripts/fire/interact_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/interact_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/main_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/parser.py -------------------------------------------------------------------------------- /cli/scripts/fire/parser_fuzz_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/parser_fuzz_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/parser_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/test_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/test_components.py -------------------------------------------------------------------------------- /cli/scripts/fire/test_components_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/test_components_bin.py -------------------------------------------------------------------------------- /cli/scripts/fire/test_components_py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/test_components_py3.py -------------------------------------------------------------------------------- /cli/scripts/fire/test_components_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/test_components_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/testutils.py -------------------------------------------------------------------------------- /cli/scripts/fire/testutils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/testutils_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/trace.py -------------------------------------------------------------------------------- /cli/scripts/fire/trace_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/trace_test.py -------------------------------------------------------------------------------- /cli/scripts/fire/value_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/fire/value_types.py -------------------------------------------------------------------------------- /cli/scripts/firewalld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/firewalld.py -------------------------------------------------------------------------------- /cli/scripts/get_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/get_old.py -------------------------------------------------------------------------------- /cli/scripts/ha_patroni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ha_patroni.py -------------------------------------------------------------------------------- /cli/scripts/ini/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/ini/__init__.py -------------------------------------------------------------------------------- /cli/scripts/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/install.py -------------------------------------------------------------------------------- /cli/scripts/lib/PgInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/PgInstance.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/__init__.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/_compat.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/_termui_impl.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/_textwrap.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/_winconsole.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/core.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/decorators.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/exceptions.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/formatting.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/globals.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/parser.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/scripts/lib/click/shell_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/shell_completion.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/termui.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/testing.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/types.py -------------------------------------------------------------------------------- /cli/scripts/lib/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/click/utils.py -------------------------------------------------------------------------------- /cli/scripts/lib/clilog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/clilog.py -------------------------------------------------------------------------------- /cli/scripts/lib/pgpasslib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/pgpasslib.py -------------------------------------------------------------------------------- /cli/scripts/lib/semantic_version/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/semantic_version/__init__.py -------------------------------------------------------------------------------- /cli/scripts/lib/semantic_version/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/semantic_version/base.py -------------------------------------------------------------------------------- /cli/scripts/lib/semantic_version/django_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/semantic_version/django_fields.py -------------------------------------------------------------------------------- /cli/scripts/lib/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/six.py -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/.coveragerc -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/.editorconfig -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max_line_length = 88 3 | -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: hugovk 2 | tidelift: "pypi/termcolor" 3 | -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/.github/SECURITY.md -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/.github/labels.yml -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/.github/release-drafter.yml -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/.github/renovate.json -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/.gitignore -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/.pre-commit-config.yaml -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/__init__.py -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/__main__.py -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/_types.py -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/scripts/lib/termcolor/termcolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/termcolor/termcolor.py -------------------------------------------------------------------------------- /cli/scripts/lib/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/lib/typing_extensions.py -------------------------------------------------------------------------------- /cli/scripts/log_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/log_helpers.py -------------------------------------------------------------------------------- /cli/scripts/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/meta.py -------------------------------------------------------------------------------- /cli/scripts/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/service.py -------------------------------------------------------------------------------- /cli/scripts/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/setup.py -------------------------------------------------------------------------------- /cli/scripts/setup_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/setup_core.py -------------------------------------------------------------------------------- /cli/scripts/sh/cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/sh/cli.sh -------------------------------------------------------------------------------- /cli/scripts/skeleton.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/skeleton.sh -------------------------------------------------------------------------------- /cli/scripts/spock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/spock.py -------------------------------------------------------------------------------- /cli/scripts/sql/northwind.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/sql/northwind.sql -------------------------------------------------------------------------------- /cli/scripts/sql/pgbench_check.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/sql/pgbench_check.sql -------------------------------------------------------------------------------- /cli/scripts/sql/spockbench_check.sql: -------------------------------------------------------------------------------- 1 | pgbench_check.sql -------------------------------------------------------------------------------- /cli/scripts/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/startup.py -------------------------------------------------------------------------------- /cli/scripts/um.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/um.py -------------------------------------------------------------------------------- /cli/scripts/upgrade-cli-fire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/upgrade-cli-fire.py -------------------------------------------------------------------------------- /cli/scripts/upgrade-cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/upgrade-cli.py -------------------------------------------------------------------------------- /cli/scripts/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/cli/scripts/util.py -------------------------------------------------------------------------------- /devel/adb/install-adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/adb/install-adb -------------------------------------------------------------------------------- /devel/adb/remove-adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/adb/remove-adb -------------------------------------------------------------------------------- /devel/attic/ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/ansible/README.md -------------------------------------------------------------------------------- /devel/attic/ansible/ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/ansible/ac -------------------------------------------------------------------------------- /devel/attic/ansible/env-arm9.sh: -------------------------------------------------------------------------------- 1 | arm9=172.31.2.45 2 | export REPO=http://$arm9:8000 3 | -------------------------------------------------------------------------------- /devel/attic/ansible/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/ansible/run.sh -------------------------------------------------------------------------------- /devel/attic/firewall/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/firewall/LICENSE.txt -------------------------------------------------------------------------------- /devel/attic/firewall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/firewall/README.md -------------------------------------------------------------------------------- /devel/attic/firewall/firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/firewall/firewall.py -------------------------------------------------------------------------------- /devel/attic/firewall/requirements.txt: -------------------------------------------------------------------------------- 1 | fire>=0.6.0 2 | -------------------------------------------------------------------------------- /devel/attic/firewall/utilx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/firewall/utilx.py -------------------------------------------------------------------------------- /devel/attic/isTTY.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/isTTY.sh -------------------------------------------------------------------------------- /devel/attic/kafka/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/kafka/getPKMG.sh -------------------------------------------------------------------------------- /devel/attic/kafka/install-java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/kafka/install-java -------------------------------------------------------------------------------- /devel/attic/kafka/install-kafka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/kafka/install-kafka -------------------------------------------------------------------------------- /devel/attic/kafka/kafka.service.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/kafka/kafka.service.orig -------------------------------------------------------------------------------- /devel/attic/kafka/remove-kafka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/kafka/remove-kafka -------------------------------------------------------------------------------- /devel/attic/kafka/start-kafka: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl start kafka 3 | -------------------------------------------------------------------------------- /devel/attic/kafka/stop-kafka: -------------------------------------------------------------------------------- 1 | set -x 2 | 3 | sudo systemctl stop kafka 4 | -------------------------------------------------------------------------------- /devel/attic/pgml-containers/ub22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/pgml-containers/ub22/Dockerfile -------------------------------------------------------------------------------- /devel/attic/pgml-containers/ub22/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/pgml-containers/ub22/alias.sh -------------------------------------------------------------------------------- /devel/attic/pgml-containers/ub22/install_pgml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/pgml-containers/ub22/install_pgml.py -------------------------------------------------------------------------------- /devel/attic/pgml-containers/ub22/reqs.ub22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/pgml-containers/ub22/reqs.ub22 -------------------------------------------------------------------------------- /devel/attic/pgml-deb12-container/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/pgml-deb12-container/Dockerfile -------------------------------------------------------------------------------- /devel/attic/pgml-deb12-container/build.sh: -------------------------------------------------------------------------------- 1 | docker build -t pgedge/deb12:latest ./ 2 | -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/build-amd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/test-farm-podman/build-amd/Dockerfile -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/build-amd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/test-farm-podman/build-amd/build.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/build-amd/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/test-farm-podman/build-amd/run.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/test-farm-podman/build.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/db12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/test-farm-podman/db12/Dockerfile -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/db12/build.sh: -------------------------------------------------------------------------------- 1 | ../build.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/db12/env.sh: -------------------------------------------------------------------------------- 1 | 2 | port=5555 3 | host=db12 4 | 5 | -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/db12/run.sh: -------------------------------------------------------------------------------- 1 | ../run.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/el8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/test-farm-podman/el8/Dockerfile -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/el8/build.sh: -------------------------------------------------------------------------------- 1 | ../build.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/el8/env.sh: -------------------------------------------------------------------------------- 1 | 2 | port=3333 3 | host=el8 4 | 5 | -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/el8/run.sh: -------------------------------------------------------------------------------- 1 | ../run.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/el9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/test-farm-podman/el9/Dockerfile -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/el9/build.sh: -------------------------------------------------------------------------------- 1 | ../build.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/el9/env.sh: -------------------------------------------------------------------------------- 1 | 2 | port=4444 3 | host=el9 4 | 5 | -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/el9/run.sh: -------------------------------------------------------------------------------- 1 | ../run.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/fd40/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/test-farm-podman/fd40/Dockerfile -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/fd40/build.sh: -------------------------------------------------------------------------------- 1 | ../build.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/fd40/env.sh: -------------------------------------------------------------------------------- 1 | 2 | port=4445 3 | host=fd40 4 | 5 | -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/fd40/run.sh: -------------------------------------------------------------------------------- 1 | ../run.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/test-farm-podman/run.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/ub22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/test-farm-podman/ub22/Dockerfile -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/ub22/build.sh: -------------------------------------------------------------------------------- 1 | ../build.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/ub22/env.sh: -------------------------------------------------------------------------------- 1 | 2 | port=5556 3 | host=ub22 4 | 5 | -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/ub22/run.sh: -------------------------------------------------------------------------------- 1 | ../run.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/ub24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/test-farm-podman/ub24/Dockerfile -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/ub24/build.sh: -------------------------------------------------------------------------------- 1 | ../build.sh -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/ub24/env.sh: -------------------------------------------------------------------------------- 1 | 2 | port=5557 3 | host=ub24 4 | 5 | -------------------------------------------------------------------------------- /devel/attic/test-farm-podman/ub24/run.sh: -------------------------------------------------------------------------------- 1 | ../run.sh -------------------------------------------------------------------------------- /devel/attic/ubi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/ubi/Dockerfile -------------------------------------------------------------------------------- /devel/attic/ubi/bld.sh: -------------------------------------------------------------------------------- 1 | podman build -t myubi9 --force-rm $1 . 2 | -------------------------------------------------------------------------------- /devel/attic/ubi/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/attic/ubi/run.sh -------------------------------------------------------------------------------- /devel/packages/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .idea 3 | .vagrant 4 | output 5 | -------------------------------------------------------------------------------- /devel/packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/packages/README.md -------------------------------------------------------------------------------- /devel/packages/after-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/packages/after-install.sh -------------------------------------------------------------------------------- /devel/packages/after-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/packages/after-remove.sh -------------------------------------------------------------------------------- /devel/packages/before-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/packages/before-install.sh -------------------------------------------------------------------------------- /devel/packages/install_fpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/packages/install_fpm.sh -------------------------------------------------------------------------------- /devel/packages/run_fpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/packages/run_fpm.sh -------------------------------------------------------------------------------- /devel/pg/1-pgml-bld-rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pg/1-pgml-bld-rust.sh -------------------------------------------------------------------------------- /devel/pg/2-pgml-copy-IN.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pg/2-pgml-copy-IN.sh -------------------------------------------------------------------------------- /devel/pg/attic/2-pgml-pip-venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pg/attic/2-pgml-pip-venv.sh -------------------------------------------------------------------------------- /devel/pg/attic/osxSetup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pg/attic/osxSetup.txt -------------------------------------------------------------------------------- /devel/pg/downBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pg/downBuild.sh -------------------------------------------------------------------------------- /devel/pg/pathSet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pg/pathSet.sh -------------------------------------------------------------------------------- /devel/pg/pgml-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pg/pgml-env.sh -------------------------------------------------------------------------------- /devel/pgbin/build/build-all-components.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pgbin/build/build-all-components.sh -------------------------------------------------------------------------------- /devel/pgbin/build/build-all-pgbin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pgbin/build/build-all-pgbin.sh -------------------------------------------------------------------------------- /devel/pgbin/build/build-component.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pgbin/build/build-component.sh -------------------------------------------------------------------------------- /devel/pgbin/build/build-pgbin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pgbin/build/build-pgbin.sh -------------------------------------------------------------------------------- /devel/pgbin/build/run-components-common-builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pgbin/build/run-components-common-builds.sh -------------------------------------------------------------------------------- /devel/pgbin/build/run-components-pgedge-builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pgbin/build/run-components-pgedge-builds.sh -------------------------------------------------------------------------------- /devel/pgbin/build/run-pgbin-builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pgbin/build/run-pgbin-builds.sh -------------------------------------------------------------------------------- /devel/pgbin/build/sharedLibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pgbin/build/sharedLibs.sh -------------------------------------------------------------------------------- /devel/pgbin/build/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/pgbin/build/versions.sh -------------------------------------------------------------------------------- /devel/setup/10-toolset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/10-toolset.sh -------------------------------------------------------------------------------- /devel/setup/20-venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/20-venv.sh -------------------------------------------------------------------------------- /devel/setup/30-bashrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/30-bashrc.sh -------------------------------------------------------------------------------- /devel/setup/40-awscli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/40-awscli.sh -------------------------------------------------------------------------------- /devel/setup/50-pull-IN.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/50-pull-IN.sh -------------------------------------------------------------------------------- /devel/setup/Dockerfile.rocky810: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/Dockerfile.rocky810 -------------------------------------------------------------------------------- /devel/setup/Dockerfile.rocky95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/Dockerfile.rocky95 -------------------------------------------------------------------------------- /devel/setup/attic/3a-certbot.sh: -------------------------------------------------------------------------------- 1 | 2 | sudo dnf install -y certbot 3 | -------------------------------------------------------------------------------- /devel/setup/attic/3a-java17.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/attic/3a-java17.sh -------------------------------------------------------------------------------- /devel/setup/attic/3b-etcd-haproxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/attic/3b-etcd-haproxy.sh -------------------------------------------------------------------------------- /devel/setup/attic/3b-zookeeper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/attic/3b-zookeeper.sh -------------------------------------------------------------------------------- /devel/setup/attic/3c-kafka.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/attic/3c-kafka.sh -------------------------------------------------------------------------------- /devel/setup/attic/3c-mosquitto.sh: -------------------------------------------------------------------------------- 1 | 2 | sudo snap install mosquitto 3 | -------------------------------------------------------------------------------- /devel/setup/attic/3d-dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/attic/3d-dns.sh -------------------------------------------------------------------------------- /devel/setup/attic/4a-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/attic/4a-docker.sh -------------------------------------------------------------------------------- /devel/setup/attic/4b-compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/attic/4b-compose.sh -------------------------------------------------------------------------------- /devel/setup/bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/bash_profile -------------------------------------------------------------------------------- /devel/setup/common.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/common.env -------------------------------------------------------------------------------- /devel/setup/compose/Dockerfile.node.rocky95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/compose/Dockerfile.node.rocky95 -------------------------------------------------------------------------------- /devel/setup/compose/Dockerfile.node.ubuntu2204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/compose/Dockerfile.node.ubuntu2204 -------------------------------------------------------------------------------- /devel/setup/compose/Dockerfile.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/compose/Dockerfile.repo -------------------------------------------------------------------------------- /devel/setup/compose/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/compose/Makefile -------------------------------------------------------------------------------- /devel/setup/compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/compose/README.md -------------------------------------------------------------------------------- /devel/setup/compose/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/compose/docker-compose.yaml -------------------------------------------------------------------------------- /devel/setup/compose/proxy_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/compose/proxy_server.py -------------------------------------------------------------------------------- /devel/setup/gitHelpful.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/gitHelpful.sh -------------------------------------------------------------------------------- /devel/setup/in/dryrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/in/dryrun.sh -------------------------------------------------------------------------------- /devel/setup/in/pull-s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/in/pull-s3.sh -------------------------------------------------------------------------------- /devel/setup/in/push-s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/setup/in/push-s3.sh -------------------------------------------------------------------------------- /devel/startHTTP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/startHTTP.sh -------------------------------------------------------------------------------- /devel/stopHTTP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/stopHTTP.sh -------------------------------------------------------------------------------- /devel/util/build_to_devel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/build_to_devel.sh -------------------------------------------------------------------------------- /devel/util/copy-newer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/copy-newer.sh -------------------------------------------------------------------------------- /devel/util/copy-to-devel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/copy-to-devel.sh -------------------------------------------------------------------------------- /devel/util/copy-to-download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/copy-to-download.sh -------------------------------------------------------------------------------- /devel/util/copy-to-upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/copy-to-upstream.sh -------------------------------------------------------------------------------- /devel/util/cp-devel-to-download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/cp-devel-to-download.sh -------------------------------------------------------------------------------- /devel/util/cp-devel-to-upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/cp-devel-to-upstream.sh -------------------------------------------------------------------------------- /devel/util/cp-upstream-to-download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/cp-upstream-to-download.sh -------------------------------------------------------------------------------- /devel/util/in/dryrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/in/dryrun.sh -------------------------------------------------------------------------------- /devel/util/in/pull-s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/in/pull-s3.sh -------------------------------------------------------------------------------- /devel/util/in/push-s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/in/push-s3.sh -------------------------------------------------------------------------------- /devel/util/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/rename.py -------------------------------------------------------------------------------- /devel/util/replace-sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/replace-sql.py -------------------------------------------------------------------------------- /devel/util/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/devel/util/replace.py -------------------------------------------------------------------------------- /docs/cli_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/cli_functions.md -------------------------------------------------------------------------------- /docs/functions/ace-mtree-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-mtree-build.md -------------------------------------------------------------------------------- /docs/functions/ace-mtree-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-mtree-init.md -------------------------------------------------------------------------------- /docs/functions/ace-mtree-table-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-mtree-table-diff.md -------------------------------------------------------------------------------- /docs/functions/ace-mtree-teardown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-mtree-teardown.md -------------------------------------------------------------------------------- /docs/functions/ace-mtree-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-mtree-update.md -------------------------------------------------------------------------------- /docs/functions/ace-mtree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-mtree.md -------------------------------------------------------------------------------- /docs/functions/ace-repset-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-repset-diff.md -------------------------------------------------------------------------------- /docs/functions/ace-schema-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-schema-diff.md -------------------------------------------------------------------------------- /docs/functions/ace-spock-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-spock-diff.md -------------------------------------------------------------------------------- /docs/functions/ace-spock-exception-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-spock-exception-update.md -------------------------------------------------------------------------------- /docs/functions/ace-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-start.md -------------------------------------------------------------------------------- /docs/functions/ace-table-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-table-diff.md -------------------------------------------------------------------------------- /docs/functions/ace-table-repair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-table-repair.md -------------------------------------------------------------------------------- /docs/functions/ace-table-rerun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace-table-rerun.md -------------------------------------------------------------------------------- /docs/functions/ace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/ace.md -------------------------------------------------------------------------------- /docs/functions/cluster-add-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-add-db.md -------------------------------------------------------------------------------- /docs/functions/cluster-add-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-add-node.md -------------------------------------------------------------------------------- /docs/functions/cluster-app-concurrent-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-app-concurrent-index.md -------------------------------------------------------------------------------- /docs/functions/cluster-app-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-app-install.md -------------------------------------------------------------------------------- /docs/functions/cluster-app-remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-app-remove.md -------------------------------------------------------------------------------- /docs/functions/cluster-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-command.md -------------------------------------------------------------------------------- /docs/functions/cluster-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-init.md -------------------------------------------------------------------------------- /docs/functions/cluster-json-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-json-create.md -------------------------------------------------------------------------------- /docs/functions/cluster-json-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-json-template.md -------------------------------------------------------------------------------- /docs/functions/cluster-json-validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-json-validate.md -------------------------------------------------------------------------------- /docs/functions/cluster-list-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-list-nodes.md -------------------------------------------------------------------------------- /docs/functions/cluster-remove-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-remove-node.md -------------------------------------------------------------------------------- /docs/functions/cluster-remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-remove.md -------------------------------------------------------------------------------- /docs/functions/cluster-replication-begin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-replication-begin.md -------------------------------------------------------------------------------- /docs/functions/cluster-replication-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-replication-check.md -------------------------------------------------------------------------------- /docs/functions/cluster-ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster-ssh.md -------------------------------------------------------------------------------- /docs/functions/cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/cluster.md -------------------------------------------------------------------------------- /docs/functions/db-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/db-create.md -------------------------------------------------------------------------------- /docs/functions/db-guc-set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/db-guc-set.md -------------------------------------------------------------------------------- /docs/functions/db-guc-show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/db-guc-show.md -------------------------------------------------------------------------------- /docs/functions/db-set-readonly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/db-set-readonly.md -------------------------------------------------------------------------------- /docs/functions/db-test-io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/db-test-io.md -------------------------------------------------------------------------------- /docs/functions/db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/db.md -------------------------------------------------------------------------------- /docs/functions/localhost-cluster-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/localhost-cluster-create.md -------------------------------------------------------------------------------- /docs/functions/localhost-cluster-destroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/localhost-cluster-destroy.md -------------------------------------------------------------------------------- /docs/functions/localhost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/localhost.md -------------------------------------------------------------------------------- /docs/functions/service-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/service-config.md -------------------------------------------------------------------------------- /docs/functions/service-disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/service-disable.md -------------------------------------------------------------------------------- /docs/functions/service-enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/service-enable.md -------------------------------------------------------------------------------- /docs/functions/service-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/service-init.md -------------------------------------------------------------------------------- /docs/functions/service-reload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/service-reload.md -------------------------------------------------------------------------------- /docs/functions/service-restart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/service-restart.md -------------------------------------------------------------------------------- /docs/functions/service-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/service-start.md -------------------------------------------------------------------------------- /docs/functions/service-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/service-status.md -------------------------------------------------------------------------------- /docs/functions/service-stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/service-stop.md -------------------------------------------------------------------------------- /docs/functions/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/service.md -------------------------------------------------------------------------------- /docs/functions/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/setup.md -------------------------------------------------------------------------------- /docs/functions/spock-health-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-health-check.md -------------------------------------------------------------------------------- /docs/functions/spock-metrics-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-metrics-check.md -------------------------------------------------------------------------------- /docs/functions/spock-node-add-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-node-add-interface.md -------------------------------------------------------------------------------- /docs/functions/spock-node-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-node-create.md -------------------------------------------------------------------------------- /docs/functions/spock-node-drop-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-node-drop-interface.md -------------------------------------------------------------------------------- /docs/functions/spock-node-drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-node-drop.md -------------------------------------------------------------------------------- /docs/functions/spock-node-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-node-list.md -------------------------------------------------------------------------------- /docs/functions/spock-replicate-ddl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-replicate-ddl.md -------------------------------------------------------------------------------- /docs/functions/spock-repset-add-partition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-repset-add-partition.md -------------------------------------------------------------------------------- /docs/functions/spock-repset-add-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-repset-add-table.md -------------------------------------------------------------------------------- /docs/functions/spock-repset-alter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-repset-alter.md -------------------------------------------------------------------------------- /docs/functions/spock-repset-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-repset-create.md -------------------------------------------------------------------------------- /docs/functions/spock-repset-drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-repset-drop.md -------------------------------------------------------------------------------- /docs/functions/spock-repset-list-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-repset-list-tables.md -------------------------------------------------------------------------------- /docs/functions/spock-repset-remove-partition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-repset-remove-partition.md -------------------------------------------------------------------------------- /docs/functions/spock-repset-remove-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-repset-remove-table.md -------------------------------------------------------------------------------- /docs/functions/spock-sequence-convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sequence-convert.md -------------------------------------------------------------------------------- /docs/functions/spock-set-readonly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-set-readonly.md -------------------------------------------------------------------------------- /docs/functions/spock-sub-add-repset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sub-add-repset.md -------------------------------------------------------------------------------- /docs/functions/spock-sub-alter-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sub-alter-interface.md -------------------------------------------------------------------------------- /docs/functions/spock-sub-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sub-create.md -------------------------------------------------------------------------------- /docs/functions/spock-sub-disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sub-disable.md -------------------------------------------------------------------------------- /docs/functions/spock-sub-drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sub-drop.md -------------------------------------------------------------------------------- /docs/functions/spock-sub-enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sub-enable.md -------------------------------------------------------------------------------- /docs/functions/spock-sub-remove-repset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sub-remove-repset.md -------------------------------------------------------------------------------- /docs/functions/spock-sub-resync-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sub-resync-table.md -------------------------------------------------------------------------------- /docs/functions/spock-sub-show-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sub-show-status.md -------------------------------------------------------------------------------- /docs/functions/spock-sub-show-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sub-show-table.md -------------------------------------------------------------------------------- /docs/functions/spock-sub-wait-for-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-sub-wait-for-sync.md -------------------------------------------------------------------------------- /docs/functions/spock-table-wait-for-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock-table-wait-for-sync.md -------------------------------------------------------------------------------- /docs/functions/spock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/spock.md -------------------------------------------------------------------------------- /docs/functions/um-clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/um-clean.md -------------------------------------------------------------------------------- /docs/functions/um-download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/um-download.md -------------------------------------------------------------------------------- /docs/functions/um-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/um-install.md -------------------------------------------------------------------------------- /docs/functions/um-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/um-list.md -------------------------------------------------------------------------------- /docs/functions/um-remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/um-remove.md -------------------------------------------------------------------------------- /docs/functions/um-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/um-update.md -------------------------------------------------------------------------------- /docs/functions/um-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/um-upgrade.md -------------------------------------------------------------------------------- /docs/functions/um-verify-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/um-verify-metadata.md -------------------------------------------------------------------------------- /docs/functions/um.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/um.md -------------------------------------------------------------------------------- /docs/functions/upgrade-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/docs/functions/upgrade-cli.md -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/env.sh -------------------------------------------------------------------------------- /make_tgz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/make_tgz.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/ace/start-ace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/ace/start-ace.py -------------------------------------------------------------------------------- /src/ace/stop-ace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/ace/stop-ace.py -------------------------------------------------------------------------------- /src/attic/anon-pgXX/install-anon-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/anon-pgXX/install-anon-pgXX.py -------------------------------------------------------------------------------- /src/attic/anon-pgXX/remove-anon-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/anon-pgXX/remove-anon-pgXX.py -------------------------------------------------------------------------------- /src/attic/ansible/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/ansible/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/ansible/install-ansible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/ansible/install-ansible -------------------------------------------------------------------------------- /src/attic/ansible/remove-ansible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/ansible/remove-ansible -------------------------------------------------------------------------------- /src/attic/apicurio/install-apicurio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/apicurio/install-apicurio -------------------------------------------------------------------------------- /src/attic/apicurio/start-apicurio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/apicurio/start-apicurio -------------------------------------------------------------------------------- /src/attic/apicurio/stop-apicurio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/apicurio/stop-apicurio -------------------------------------------------------------------------------- /src/attic/apscheduler/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/apscheduler/background.py -------------------------------------------------------------------------------- /src/attic/apscheduler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/apscheduler/requirements.txt -------------------------------------------------------------------------------- /src/attic/archivist-pgXX/install-archivist-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/archivist-pgXX/install-archivist-pgXX.py -------------------------------------------------------------------------------- /src/attic/archivist-pgXX/remove-archivist-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/archivist-pgXX/remove-archivist-pgXX.py -------------------------------------------------------------------------------- /src/attic/audit-pgXX/install-audit-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/audit-pgXX/install-audit-pgXX.py -------------------------------------------------------------------------------- /src/attic/audit-pgXX/remove-audit-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/audit-pgXX/remove-audit-pgXX.py -------------------------------------------------------------------------------- /src/attic/background-pgXX/remove-background-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/background-pgXX/remove-background-pgXX.py -------------------------------------------------------------------------------- /src/attic/bqfdw-pgXX/install-bqfdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bqfdw-pgXX/install-bqfdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/bts/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/bootstrap.sh -------------------------------------------------------------------------------- /src/attic/bts/config-rancher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/config-rancher -------------------------------------------------------------------------------- /src/attic/bts/disable-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg disable $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/bts/enable-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg enable $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/bts/etcd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/etcd.service -------------------------------------------------------------------------------- /src/attic/bts/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/bts/install-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/install-docker -------------------------------------------------------------------------------- /src/attic/bts/install-etcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/install-etcd -------------------------------------------------------------------------------- /src/attic/bts/install-jdk11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/install-jdk11 -------------------------------------------------------------------------------- /src/attic/bts/install-kubectl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/install-kubectl -------------------------------------------------------------------------------- /src/attic/bts/install-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/install-nginx -------------------------------------------------------------------------------- /src/attic/bts/install-pgdg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/install-pgdg -------------------------------------------------------------------------------- /src/attic/bts/install-python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/install-python3 -------------------------------------------------------------------------------- /src/attic/bts/install-rancher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/install-rancher -------------------------------------------------------------------------------- /src/attic/bts/rancher-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/rancher-cluster.yml -------------------------------------------------------------------------------- /src/attic/bts/reload-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg reload $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/bts/remove-ansible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/remove-ansible -------------------------------------------------------------------------------- /src/attic/bts/remove-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/remove-docker -------------------------------------------------------------------------------- /src/attic/bts/remove-etcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/remove-etcd -------------------------------------------------------------------------------- /src/attic/bts/remove-kubectl: -------------------------------------------------------------------------------- 1 | 2 | sudo rm -f /usr/local/bin/kubectl 3 | -------------------------------------------------------------------------------- /src/attic/bts/remove-nginx: -------------------------------------------------------------------------------- 1 | sudo yum remove -y nginx 2 | -------------------------------------------------------------------------------- /src/attic/bts/remove-pgdg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/remove-pgdg -------------------------------------------------------------------------------- /src/attic/bts/sshIsNoPwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/sshIsNoPwd.sh -------------------------------------------------------------------------------- /src/attic/bts/sshSetNoPwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/sshSetNoPwd.sh -------------------------------------------------------------------------------- /src/attic/bts/start-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/start-docker -------------------------------------------------------------------------------- /src/attic/bts/start-etcd: -------------------------------------------------------------------------------- 1 | sudo systemctl start etcd 2 | -------------------------------------------------------------------------------- /src/attic/bts/start-nginx: -------------------------------------------------------------------------------- 1 | sudo systemctl start nginx 2 | -------------------------------------------------------------------------------- /src/attic/bts/start-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg start $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/bts/status-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg status $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/bts/stop-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/stop-docker -------------------------------------------------------------------------------- /src/attic/bts/stop-etcd: -------------------------------------------------------------------------------- 1 | sudo systemctl stop etcd 2 | -------------------------------------------------------------------------------- /src/attic/bts/stop-nginx: -------------------------------------------------------------------------------- 1 | sudo systemctl stop nginx 2 | -------------------------------------------------------------------------------- /src/attic/bts/stop-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg stop $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/bts/systemctl-pgdg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bts/systemctl-pgdg -------------------------------------------------------------------------------- /src/attic/bulkload-pgXX/install-bulkload-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bulkload-pgXX/install-bulkload-pgXX.py -------------------------------------------------------------------------------- /src/attic/bulkload-pgXX/remove-bulkload-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/bulkload-pgXX/remove-bulkload-pgXX.py -------------------------------------------------------------------------------- /src/attic/cassandra/cassandra.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/cassandra/cassandra.repo -------------------------------------------------------------------------------- /src/attic/cassandra/install-cassandra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/cassandra/install-cassandra -------------------------------------------------------------------------------- /src/attic/cassandra/remove-cassandra: -------------------------------------------------------------------------------- 1 | 2 | set -x 3 | 4 | sudo yum remove cassandra 5 | 6 | -------------------------------------------------------------------------------- /src/attic/cassandra/start-cassandra: -------------------------------------------------------------------------------- 1 | set -x 2 | 3 | sudo systemctl start cassandra 4 | -------------------------------------------------------------------------------- /src/attic/cassandra/stop-cassandra: -------------------------------------------------------------------------------- 1 | set -x 2 | 3 | sudo systemctl stop cassandra 4 | -------------------------------------------------------------------------------- /src/attic/citus-pgXX/install-citus-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/citus-pgXX/install-citus-pgXX.py -------------------------------------------------------------------------------- /src/attic/citus-pgXX/remove-citus-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/citus-pgXX/remove-citus-pgXX.py -------------------------------------------------------------------------------- /src/attic/cloud/install-cloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/cloud/install-cloud -------------------------------------------------------------------------------- /src/attic/cloud/remove-cloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/cloud/remove-cloud -------------------------------------------------------------------------------- /src/attic/cron-pgXX/install-cron-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/cron-pgXX/install-cron-pgXX.py -------------------------------------------------------------------------------- /src/attic/cron-pgXX/remove-cron-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/cron-pgXX/remove-cron-pgXX.py -------------------------------------------------------------------------------- /src/attic/csvdiff/install-csvdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/csvdiff/install-csvdiff.py -------------------------------------------------------------------------------- /src/attic/csvdiff/remove-csvdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/csvdiff/remove-csvdiff.py -------------------------------------------------------------------------------- /src/attic/curl-pgXX/install-curl-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/curl-pgXX/install-curl-pgXX.py -------------------------------------------------------------------------------- /src/attic/curl-pgXX/remove-curl-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/curl-pgXX/remove-curl-pgXX.py -------------------------------------------------------------------------------- /src/attic/debezium/connect-distributed.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/debezium/connect-distributed.properties -------------------------------------------------------------------------------- /src/attic/debezium/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/debezium/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/debezium/install-debezium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/debezium/install-debezium -------------------------------------------------------------------------------- /src/attic/debezium/kafka-connect.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/debezium/kafka-connect.service -------------------------------------------------------------------------------- /src/attic/debezium/pg-connect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/debezium/pg-connect.json -------------------------------------------------------------------------------- /src/attic/debezium/remove-debezium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/debezium/remove-debezium -------------------------------------------------------------------------------- /src/attic/debezium/start-debezium: -------------------------------------------------------------------------------- 1 | sudo systemctl start kafka-connect 2 | -------------------------------------------------------------------------------- /src/attic/debezium/start-pg-connect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/debezium/start-pg-connect.sh -------------------------------------------------------------------------------- /src/attic/debezium/stop-debezium: -------------------------------------------------------------------------------- 1 | sudo systemctl stop kafka-connect 2 | -------------------------------------------------------------------------------- /src/attic/decoderbufs-pgXX/pg_hba.conf.replication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/decoderbufs-pgXX/pg_hba.conf.replication -------------------------------------------------------------------------------- /src/attic/docker/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/docker/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/docker/install-debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/docker/install-debian -------------------------------------------------------------------------------- /src/attic/docker/install-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/docker/install-docker -------------------------------------------------------------------------------- /src/attic/docker/install-el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/docker/install-el -------------------------------------------------------------------------------- /src/attic/docker/install-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/docker/install-ubuntu -------------------------------------------------------------------------------- /src/attic/docker/remove-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/docker/remove-docker -------------------------------------------------------------------------------- /src/attic/docker/start-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/docker/start-docker -------------------------------------------------------------------------------- /src/attic/docker/stop-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/docker/stop-docker -------------------------------------------------------------------------------- /src/attic/elasticsearch/install-elasticsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/elasticsearch/install-elasticsearch -------------------------------------------------------------------------------- /src/attic/elasticsearch/remove-elasticsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/elasticsearch/remove-elasticsearch -------------------------------------------------------------------------------- /src/attic/elasticsearch/start-elasticsearch: -------------------------------------------------------------------------------- 1 | sudo systemctl start elasticsearch 2 | -------------------------------------------------------------------------------- /src/attic/elasticsearch/stop-elasticsearch: -------------------------------------------------------------------------------- 1 | sudo systemctl stop elasticsearch 2 | -------------------------------------------------------------------------------- /src/attic/esfdw-pgXX/install-esfdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/esfdw-pgXX/install-esfdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/filebeat/elasticsearch.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/filebeat/elasticsearch.repo -------------------------------------------------------------------------------- /src/attic/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/filebeat/filebeat.yml -------------------------------------------------------------------------------- /src/attic/filebeat/install-filebeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/filebeat/install-filebeat -------------------------------------------------------------------------------- /src/attic/filebeat/remove-filebeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/filebeat/remove-filebeat -------------------------------------------------------------------------------- /src/attic/filebeat/start-filebeat: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl start filebeat 3 | -------------------------------------------------------------------------------- /src/attic/filebeat/stop-filebeat: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl stop filebeat 3 | -------------------------------------------------------------------------------- /src/attic/filebeat/system.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/filebeat/system.yml -------------------------------------------------------------------------------- /src/attic/firewalld/config-firewalld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/firewalld/config-firewalld.py -------------------------------------------------------------------------------- /src/attic/firewalld/install-firewalld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/firewalld/install-firewalld.py -------------------------------------------------------------------------------- /src/attic/firewalld/remove-firewalld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/firewalld/remove-firewalld.py -------------------------------------------------------------------------------- /src/attic/firewalld/start-firewalld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/firewalld/start-firewalld.py -------------------------------------------------------------------------------- /src/attic/firewalld/stop-firewalld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/firewalld/stop-firewalld.py -------------------------------------------------------------------------------- /src/attic/foslots-pgXX/install-foslots-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/foslots-pgXX/install-foslots-pgXX.py -------------------------------------------------------------------------------- /src/attic/foslots-pgXX/remove-foslots-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/foslots-pgXX/remove-foslots-pgXX.py -------------------------------------------------------------------------------- /src/attic/gcc/install-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/gcc/install-gcc -------------------------------------------------------------------------------- /src/attic/golang/install-golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/golang/install-golang -------------------------------------------------------------------------------- /src/attic/grafana/grafana.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/grafana/grafana.repo -------------------------------------------------------------------------------- /src/attic/grafana/install-grafana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/grafana/install-grafana -------------------------------------------------------------------------------- /src/attic/grafana/remove-grafana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/grafana/remove-grafana -------------------------------------------------------------------------------- /src/attic/grafana/start-grafana: -------------------------------------------------------------------------------- 1 | sudo systemctl start grafana-server 2 | -------------------------------------------------------------------------------- /src/attic/grafana/stop-grafana: -------------------------------------------------------------------------------- 1 | set -x 2 | 3 | sudo systemctl stop grafana-server 4 | -------------------------------------------------------------------------------- /src/attic/haproxy/config-haproxy: -------------------------------------------------------------------------------- 1 | 2 | echo nothing yet 3 | -------------------------------------------------------------------------------- /src/attic/haproxy/disable-haproxy: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl disable haproxy 3 | -------------------------------------------------------------------------------- /src/attic/haproxy/enable-haproxy: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl enable haproxy 3 | -------------------------------------------------------------------------------- /src/attic/haproxy/install-haproxy: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo yum install -y haproxy 3 | -------------------------------------------------------------------------------- /src/attic/haproxy/remove-haproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/haproxy/remove-haproxy -------------------------------------------------------------------------------- /src/attic/haproxy/start-haproxy: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl start haproxy 3 | -------------------------------------------------------------------------------- /src/attic/haproxy/stop-haproxy: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl stop haproxy 3 | -------------------------------------------------------------------------------- /src/attic/helm/install-helm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/helm/install-helm -------------------------------------------------------------------------------- /src/attic/helm/remove-helm: -------------------------------------------------------------------------------- 1 | 2 | sudo rm -f /usr/local/bin/helm 3 | -------------------------------------------------------------------------------- /src/attic/hg/install-hg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hg/install-hg -------------------------------------------------------------------------------- /src/attic/hg/remove-hg: -------------------------------------------------------------------------------- 1 | bigV=13 2 | 3 | sudo yum remove -y hg-pgsql$bigV 4 | -------------------------------------------------------------------------------- /src/attic/hintplan-pgXX/install-hintplan-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hintplan-pgXX/install-hintplan-pgXX.py -------------------------------------------------------------------------------- /src/attic/hintplan-pgXX/remove-hintplan-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hintplan-pgXX/remove-hintplan-pgXX.py -------------------------------------------------------------------------------- /src/attic/hivefdw-pgXX/install-hivefdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hivefdw-pgXX/install-hivefdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/hivefdw-pgXX/remove-hivefdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hivefdw-pgXX/remove-hivefdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/hivemeta/config-hivemeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hivemeta/config-hivemeta -------------------------------------------------------------------------------- /src/attic/hivemeta/example-hive-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hivemeta/example-hive-site.xml -------------------------------------------------------------------------------- /src/attic/hivemeta/install-hivemeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hivemeta/install-hivemeta -------------------------------------------------------------------------------- /src/attic/hivemeta/postgresql-42.2.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hivemeta/postgresql-42.2.16.jar -------------------------------------------------------------------------------- /src/attic/hivemeta/start-hivemeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hivemeta/start-hivemeta -------------------------------------------------------------------------------- /src/attic/http-pgXX/install-http-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/http-pgXX/install-http-pgXX.py -------------------------------------------------------------------------------- /src/attic/http-pgXX/remove-http-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/http-pgXX/remove-http-pgXX.py -------------------------------------------------------------------------------- /src/attic/hypopg-pgXX/install-hypopg-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hypopg-pgXX/install-hypopg-pgXX.py -------------------------------------------------------------------------------- /src/attic/hypopg-pgXX/remove-hypopg-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/hypopg-pgXX/remove-hypopg-pgXX.py -------------------------------------------------------------------------------- /src/attic/instantclient/install-instantclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/instantclient/install-instantclient -------------------------------------------------------------------------------- /src/attic/java/install-java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/java/install-java -------------------------------------------------------------------------------- /src/attic/keycloak/install-keycloak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/keycloak/install-keycloak -------------------------------------------------------------------------------- /src/attic/kibana/config-kibana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kibana/config-kibana -------------------------------------------------------------------------------- /src/attic/kibana/disable-kibana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kibana/disable-kibana -------------------------------------------------------------------------------- /src/attic/kibana/enable-kibana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kibana/enable-kibana -------------------------------------------------------------------------------- /src/attic/kibana/install-kibana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kibana/install-kibana -------------------------------------------------------------------------------- /src/attic/kibana/kibana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kibana/kibana.yml -------------------------------------------------------------------------------- /src/attic/kibana/nginx-kibana.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kibana/nginx-kibana.conf -------------------------------------------------------------------------------- /src/attic/kibana/remove-kibana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kibana/remove-kibana -------------------------------------------------------------------------------- /src/attic/kibana/start-kibana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kibana/start-kibana -------------------------------------------------------------------------------- /src/attic/kibana/stop-kibana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kibana/stop-kibana -------------------------------------------------------------------------------- /src/attic/kubectl/install-kubectl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kubectl/install-kubectl -------------------------------------------------------------------------------- /src/attic/kubectl/remove-kubectl: -------------------------------------------------------------------------------- 1 | 2 | sudo rm -f /usr/local/bin/kubectl 3 | -------------------------------------------------------------------------------- /src/attic/kubernetes/install-kubernetes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kubernetes/install-kubernetes -------------------------------------------------------------------------------- /src/attic/kubernetes/remove-kubernetes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/kubernetes/remove-kubernetes -------------------------------------------------------------------------------- /src/attic/kubernetes/start-kubernetes: -------------------------------------------------------------------------------- 1 | sudo microk8s start 2 | -------------------------------------------------------------------------------- /src/attic/kubernetes/status-kubernetes: -------------------------------------------------------------------------------- 1 | sudo microk8s status 2 | -------------------------------------------------------------------------------- /src/attic/kubernetes/stop-kubernetes: -------------------------------------------------------------------------------- 1 | sudo microk8s stop 2 | -------------------------------------------------------------------------------- /src/attic/logstash/config-logstash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/logstash/config-logstash -------------------------------------------------------------------------------- /src/attic/logstash/disable-logstash: -------------------------------------------------------------------------------- 1 | sudo systemctl disable logstash 2 | 3 | -------------------------------------------------------------------------------- /src/attic/logstash/enable-logstash: -------------------------------------------------------------------------------- 1 | sudo systemctl enable logstash 2 | 3 | -------------------------------------------------------------------------------- /src/attic/logstash/install-logstash: -------------------------------------------------------------------------------- 1 | set -x 2 | 3 | sudo yum install -y logstash filebeat 4 | 5 | -------------------------------------------------------------------------------- /src/attic/logstash/logstash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/logstash/logstash.yml -------------------------------------------------------------------------------- /src/attic/logstash/remove-logstash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/logstash/remove-logstash -------------------------------------------------------------------------------- /src/attic/logstash/start-logstash: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl start logstash 3 | 4 | -------------------------------------------------------------------------------- /src/attic/logstash/stop-logstash: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl stop logstash 3 | 4 | -------------------------------------------------------------------------------- /src/attic/lolor-pgXX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/lolor-pgXX/README.md -------------------------------------------------------------------------------- /src/attic/lolor-pgXX/install-lolor-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/lolor-pgXX/install-lolor-pgXX.py -------------------------------------------------------------------------------- /src/attic/lolor-pgXX/remove-lolor-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/lolor-pgXX/remove-lolor-pgXX.py -------------------------------------------------------------------------------- /src/attic/mariadb/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/mariadb/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/mariadb/install-mariadb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/mariadb/install-mariadb -------------------------------------------------------------------------------- /src/attic/mariadb/remove-mariadb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/mariadb/remove-mariadb -------------------------------------------------------------------------------- /src/attic/mariadb/start-mariadb: -------------------------------------------------------------------------------- 1 | set -x 2 | 3 | sudo systemctl start mariadb 4 | -------------------------------------------------------------------------------- /src/attic/mariadb/stop-mariadb: -------------------------------------------------------------------------------- 1 | set -x 2 | 3 | sudo systemctl stop mariadb 4 | -------------------------------------------------------------------------------- /src/attic/minikube/install-minikube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/minikube/install-minikube -------------------------------------------------------------------------------- /src/attic/minikube/remove-minikube: -------------------------------------------------------------------------------- 1 | sudo yum remove -y minikube 2 | -------------------------------------------------------------------------------- /src/attic/mongodb/install-mongodb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/mongodb/install-mongodb -------------------------------------------------------------------------------- /src/attic/mongodb/remove-mongodb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/mongodb/remove-mongodb -------------------------------------------------------------------------------- /src/attic/mongodb/start-mongodb: -------------------------------------------------------------------------------- 1 | set -x 2 | 3 | sudo systemctl start mongod 4 | -------------------------------------------------------------------------------- /src/attic/mongodb/stop-mongodb: -------------------------------------------------------------------------------- 1 | set -x 2 | 3 | sudo systemctl stop mongod 4 | -------------------------------------------------------------------------------- /src/attic/mongofdw-pgXX/install-mongofdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/mongofdw-pgXX/install-mongofdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/mongofdw-pgXX/remove-mongofdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/mongofdw-pgXX/remove-mongofdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/multicorn2-pgXX/remove-multicorn-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/multicorn2-pgXX/remove-multicorn-pgXX.py -------------------------------------------------------------------------------- /src/attic/mysqlfdw-pgXX/install-mysqlfdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/mysqlfdw-pgXX/install-mysqlfdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/mysqlfdw-pgXX/remove-mysqlfdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/mysqlfdw-pgXX/remove-mysqlfdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/nginx/getPKMG.sh: -------------------------------------------------------------------------------- 1 | ../bts/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/nginx/init/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nginx/init/index.html -------------------------------------------------------------------------------- /src/attic/nginx/init/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nginx/init/nginx.conf -------------------------------------------------------------------------------- /src/attic/nginx/init/self-signed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nginx/init/self-signed.conf -------------------------------------------------------------------------------- /src/attic/nginx/init/ssl-params.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nginx/init/ssl-params.conf -------------------------------------------------------------------------------- /src/attic/nginx/install-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nginx/install-nginx -------------------------------------------------------------------------------- /src/attic/nginx/remove-nginx: -------------------------------------------------------------------------------- 1 | sudo yum remove -y nginx 2 | -------------------------------------------------------------------------------- /src/attic/nginx/selfSignCert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nginx/selfSignCert.sh -------------------------------------------------------------------------------- /src/attic/nginx/start-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nginx/start-nginx -------------------------------------------------------------------------------- /src/attic/nginx/stop-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nginx/stop-nginx -------------------------------------------------------------------------------- /src/attic/nodejs/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nodejs/hello.js -------------------------------------------------------------------------------- /src/attic/nodejs/install-nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nodejs/install-nodejs -------------------------------------------------------------------------------- /src/attic/nodejs/remove-nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nodejs/remove-nodejs -------------------------------------------------------------------------------- /src/attic/nodejs/start-nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nodejs/start-nodejs -------------------------------------------------------------------------------- /src/attic/nodejs/stop-nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/nodejs/stop-nodejs -------------------------------------------------------------------------------- /src/attic/old-pgadmin/init-pgadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/old-pgadmin/init-pgadmin.py -------------------------------------------------------------------------------- /src/attic/old-pgadmin/remove-pgadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/old-pgadmin/remove-pgadmin -------------------------------------------------------------------------------- /src/attic/old-pgadmin/start-pgadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/old-pgadmin/start-pgadmin.py -------------------------------------------------------------------------------- /src/attic/old-pgadmin/stop-pgadmin: -------------------------------------------------------------------------------- 1 | sudo docker stop pgadmin 2 | -------------------------------------------------------------------------------- /src/attic/omnidb/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/omnidb/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/omnidb/install-omnidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/omnidb/install-omnidb -------------------------------------------------------------------------------- /src/attic/omnidb/omnidb.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/omnidb/omnidb.service -------------------------------------------------------------------------------- /src/attic/openjdk/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/openjdk/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/openjdk/install-openjdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/openjdk/install-openjdk -------------------------------------------------------------------------------- /src/attic/openjdk/remove-openjdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/openjdk/remove-openjdk -------------------------------------------------------------------------------- /src/attic/openstack/install-openstack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/openstack/install-openstack -------------------------------------------------------------------------------- /src/attic/ora2pg/install-ora2pg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/ora2pg/install-ora2pg -------------------------------------------------------------------------------- /src/attic/ora2pg/remove-ora2pg: -------------------------------------------------------------------------------- 1 | sudo rm -rf /usr/local/bin/ora2pg* 2 | -------------------------------------------------------------------------------- /src/attic/oracle_xe/README.1st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/oracle_xe/README.1st -------------------------------------------------------------------------------- /src/attic/oracle_xe/config-oracle_xe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/oracle_xe/config-oracle_xe -------------------------------------------------------------------------------- /src/attic/oracle_xe/install-oracle_xe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/oracle_xe/install-oracle_xe -------------------------------------------------------------------------------- /src/attic/oracle_xe/remove-oracle_xe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/oracle_xe/remove-oracle_xe -------------------------------------------------------------------------------- /src/attic/oracle_xe/start-oracle_xe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/oracle_xe/start-oracle_xe -------------------------------------------------------------------------------- /src/attic/oracle_xe/stop-oracle_xe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/oracle_xe/stop-oracle_xe -------------------------------------------------------------------------------- /src/attic/oraclefdw-pgXX/install-oraclefdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/oraclefdw-pgXX/install-oraclefdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/oraclefdw-pgXX/remove-oraclefdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/oraclefdw-pgXX/remove-oraclefdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/orafce-pgXX/install-orafce-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/orafce-pgXX/install-orafce-pgXX.py -------------------------------------------------------------------------------- /src/attic/orafce-pgXX/remove-orafce-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/orafce-pgXX/remove-orafce-pgXX.py -------------------------------------------------------------------------------- /src/attic/partman-pgXX/install-partman-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/partman-pgXX/install-partman-pgXX.py -------------------------------------------------------------------------------- /src/attic/partman-pgXX/remove-partman-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/partman-pgXX/remove-partman-pgXX.py -------------------------------------------------------------------------------- /src/attic/pgadmin4/config-pgadmin4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pgadmin4/config-pgadmin4 -------------------------------------------------------------------------------- /src/attic/pgadmin4/install-pgadmin4: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./config-pgadmin4 5 | -------------------------------------------------------------------------------- /src/attic/pgadmin4/remove-pgadmin4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pgadmin4/remove-pgadmin4 -------------------------------------------------------------------------------- /src/attic/pgadmin4/start-pgadmin4: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl start httpd 3 | -------------------------------------------------------------------------------- /src/attic/pgadmin4/stop-pgadmin4: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl stop httpd 3 | -------------------------------------------------------------------------------- /src/attic/pgdg/disable-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg disable $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/pgdg/enable-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg enable $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/pgdg/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pgdg/env.sh -------------------------------------------------------------------------------- /src/attic/pgdg/install-pgdg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pgdg/install-pgdg -------------------------------------------------------------------------------- /src/attic/pgdg/reload-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg reload $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/pgdg/remove-pgdg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pgdg/remove-pgdg -------------------------------------------------------------------------------- /src/attic/pgdg/start-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg start $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/pgdg/status-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg status $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/pgdg/stop-pgdg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./systemctl-pgdg stop $1 5 | 6 | -------------------------------------------------------------------------------- /src/attic/pgdg/systemctl-pgdg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pgdg/systemctl-pgdg -------------------------------------------------------------------------------- /src/attic/pglogical-pgXX/install-pglogical-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pglogical-pgXX/install-pglogical-pgXX.py -------------------------------------------------------------------------------- /src/attic/pglogical-pgXX/remove-pglogical-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pglogical-pgXX/remove-pglogical-pgXX.py -------------------------------------------------------------------------------- /src/attic/pgml/install-nvidia-cuda-toolkit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pgml/install-nvidia-cuda-toolkit.sh -------------------------------------------------------------------------------- /src/attic/pgtsql-pgXX/install-pgtsql-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pgtsql-pgXX/install-pgtsql-pgXX.py -------------------------------------------------------------------------------- /src/attic/pgtsql-pgXX/remove-pgtsql-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pgtsql-pgXX/remove-pgtsql-pgXX.py -------------------------------------------------------------------------------- /src/attic/pldebugger-pgXX/remove-pldebugger-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pldebugger-pgXX/remove-pldebugger-pgXX.py -------------------------------------------------------------------------------- /src/attic/pljava-pgXX/install-pljava-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pljava-pgXX/install-pljava-pgXX.py -------------------------------------------------------------------------------- /src/attic/pljava-pgXX/remove-pljava-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pljava-pgXX/remove-pljava-pgXX.py -------------------------------------------------------------------------------- /src/attic/plprofiler-pgXX/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/plprofiler-pgXX/LICENSE.TXT -------------------------------------------------------------------------------- /src/attic/plprofiler-pgXX/remove-plprofiler-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/plprofiler-pgXX/remove-plprofiler-pgXX.py -------------------------------------------------------------------------------- /src/attic/plprofiler-pgXX/src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/plprofiler-pgXX/src.tar.gz -------------------------------------------------------------------------------- /src/attic/plv8-pgXX/install-plv8-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/plv8-pgXX/install-plv8-pgXX.py -------------------------------------------------------------------------------- /src/attic/plv8-pgXX/remove-plv8-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/plv8-pgXX/remove-plv8-pgXX.py -------------------------------------------------------------------------------- /src/attic/pool2/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pool2/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/pool2/install-pool2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/pool2/install-pool2 -------------------------------------------------------------------------------- /src/attic/pool2/remove-pool2: -------------------------------------------------------------------------------- 1 | sudo yum remove -y pgpool-II* 2 | -------------------------------------------------------------------------------- /src/attic/pool2/start-pool2: -------------------------------------------------------------------------------- 1 | sudo systemctl start pgpool 2 | -------------------------------------------------------------------------------- /src/attic/pool2/stop-pool2: -------------------------------------------------------------------------------- 1 | sudo systemctl stop pgpool 2 | -------------------------------------------------------------------------------- /src/attic/postgis-pgXX/install-postgis-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/postgis-pgXX/install-postgis-pgXX.py -------------------------------------------------------------------------------- /src/attic/postgis-pgXX/remove-postgis-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/postgis-pgXX/remove-postgis-pgXX.py -------------------------------------------------------------------------------- /src/attic/postgrest/init-postgrest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/postgrest/init-postgrest.py -------------------------------------------------------------------------------- /src/attic/postgrest/init-swagger-initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/postgrest/init-swagger-initializer.js -------------------------------------------------------------------------------- /src/attic/postgrest/install-postgrest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/postgrest/install-postgrest -------------------------------------------------------------------------------- /src/attic/postgrest/postgrest.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/postgrest/postgrest.service -------------------------------------------------------------------------------- /src/attic/postgrest/remove-postgrest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/postgrest/remove-postgrest.py -------------------------------------------------------------------------------- /src/attic/postgrest/start-postgrest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/postgrest/start-postgrest.py -------------------------------------------------------------------------------- /src/attic/postgrest/stop-postgrest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/postgrest/stop-postgrest.py -------------------------------------------------------------------------------- /src/attic/prest/install-prest: -------------------------------------------------------------------------------- 1 | pwd 2 | 3 | -------------------------------------------------------------------------------- /src/attic/prestosql/install-prestosql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/prestosql/install-prestosql -------------------------------------------------------------------------------- /src/attic/prestosql/remove-prestosql: -------------------------------------------------------------------------------- 1 | sudo yum remove -y presto-server* 2 | -------------------------------------------------------------------------------- /src/attic/prestosql/start-prestosql: -------------------------------------------------------------------------------- 1 | sudo service presto start 2 | -------------------------------------------------------------------------------- /src/attic/prestosql/stop-prestosql: -------------------------------------------------------------------------------- 1 | sudo service presto stop 2 | -------------------------------------------------------------------------------- /src/attic/proctab-pgXX/install-proctab-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/proctab-pgXX/install-proctab-pgXX.py -------------------------------------------------------------------------------- /src/attic/proctab-pgXX/remove-proctab-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/proctab-pgXX/remove-proctab-pgXX.py -------------------------------------------------------------------------------- /src/attic/qualstats-pgXX/install-qualstats-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/qualstats-pgXX/install-qualstats-pgXX.py -------------------------------------------------------------------------------- /src/attic/qualstats-pgXX/remove-qualstats-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/qualstats-pgXX/remove-qualstats-pgXX.py -------------------------------------------------------------------------------- /src/attic/r/install-r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/r/install-r -------------------------------------------------------------------------------- /src/attic/rabbitmq/install-rabbitmq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/rabbitmq/install-rabbitmq -------------------------------------------------------------------------------- /src/attic/rabbitmq/remove-rabbitmq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/rabbitmq/remove-rabbitmq -------------------------------------------------------------------------------- /src/attic/rabbitmq/start-rabbitmq: -------------------------------------------------------------------------------- 1 | sudo systemctl start rabbitmq-server 2 | -------------------------------------------------------------------------------- /src/attic/rabbitmq/stop-rabbitmq: -------------------------------------------------------------------------------- 1 | sudo systemctl stop rabbitmq-server 2 | -------------------------------------------------------------------------------- /src/attic/rancher/config-rancher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/rancher/config-rancher -------------------------------------------------------------------------------- /src/attic/rancher/install-rancher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/rancher/install-rancher -------------------------------------------------------------------------------- /src/attic/rancher/rancher-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/rancher/rancher-cluster.yml -------------------------------------------------------------------------------- /src/attic/rancher/rancher-cluster.yml.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/rancher/rancher-cluster.yml.orig -------------------------------------------------------------------------------- /src/attic/readonly-pgXX/install-readonly-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/readonly-pgXX/install-readonly-pgXX.py -------------------------------------------------------------------------------- /src/attic/readonly-pgXX/remove-readonly-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/readonly-pgXX/remove-readonly-pgXX.py -------------------------------------------------------------------------------- /src/attic/redis/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/redis/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/redis/install-redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/redis/install-redis -------------------------------------------------------------------------------- /src/attic/redis/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/redis/redis.conf -------------------------------------------------------------------------------- /src/attic/redis/remove-redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/redis/remove-redis -------------------------------------------------------------------------------- /src/attic/redis/start-redis: -------------------------------------------------------------------------------- 1 | sudo systemctl start redis-server 2 | -------------------------------------------------------------------------------- /src/attic/redis/stop-redis: -------------------------------------------------------------------------------- 1 | sudo systemctl stop redis-server 2 | -------------------------------------------------------------------------------- /src/attic/redisfdw-pgXX/install-redisfdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/redisfdw-pgXX/install-redisfdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/redisfdw-pgXX/remove-redisfdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/redisfdw-pgXX/remove-redisfdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/repack-pgXX/install-repack-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/repack-pgXX/install-repack-pgXX.py -------------------------------------------------------------------------------- /src/attic/repack-pgXX/remove-repack-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/repack-pgXX/remove-repack-pgXX.py -------------------------------------------------------------------------------- /src/attic/rustpgx-pgXX/install-rustpgx-pgXX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/rustpgx-pgXX/install-rustpgx-pgXX -------------------------------------------------------------------------------- /src/attic/snowflake-pgXX/install-snowflake-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/snowflake-pgXX/install-snowflake-pgXX.py -------------------------------------------------------------------------------- /src/attic/snowflake-pgXX/remove-snowflake-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/snowflake-pgXX/remove-snowflake-pgXX.py -------------------------------------------------------------------------------- /src/attic/spock32-pgXX/install-spock32-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/spock32-pgXX/install-spock32-pgXX.py -------------------------------------------------------------------------------- /src/attic/spock32-pgXX/remove-spock32-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/spock32-pgXX/remove-spock32-pgXX.py -------------------------------------------------------------------------------- /src/attic/spock33-pgXX/install-spock33-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/spock33-pgXX/install-spock33-pgXX.py -------------------------------------------------------------------------------- /src/attic/spock33-pgXX/remove-spock33-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/spock33-pgXX/remove-spock33-pgXX.py -------------------------------------------------------------------------------- /src/attic/spock40-pgXX/install-spock40-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/spock40-pgXX/install-spock40-pgXX.py -------------------------------------------------------------------------------- /src/attic/spock40-pgXX/remove-spock40-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/spock40-pgXX/remove-spock40-pgXX.py -------------------------------------------------------------------------------- /src/attic/sqlsvr/config-sqlsvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/sqlsvr/config-sqlsvr -------------------------------------------------------------------------------- /src/attic/sqlsvr/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/sqlsvr/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/sqlsvr/install-sqlsvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/sqlsvr/install-sqlsvr -------------------------------------------------------------------------------- /src/attic/sqlsvr/remove-sqlsvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/sqlsvr/remove-sqlsvr -------------------------------------------------------------------------------- /src/attic/sqlsvr/start-sqlsvr: -------------------------------------------------------------------------------- 1 | sudo systemctl start mssql-server 2 | -------------------------------------------------------------------------------- /src/attic/sqlsvr/stop-sqlsvr: -------------------------------------------------------------------------------- 1 | sudo systemctl stop mssql-server 2 | -------------------------------------------------------------------------------- /src/attic/statkcache-pgXX/remove-statkcache-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/statkcache-pgXX/remove-statkcache-pgXX.py -------------------------------------------------------------------------------- /src/attic/tdsfdw-pgXX/install-tdsfdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/tdsfdw-pgXX/install-tdsfdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/tdsfdw-pgXX/remove-tdsfdw-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/tdsfdw-pgXX/remove-tdsfdw-pgXX.py -------------------------------------------------------------------------------- /src/attic/terraform/getPKMG.sh: -------------------------------------------------------------------------------- 1 | ../bts/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/terraform/install-terraform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/terraform/install-terraform -------------------------------------------------------------------------------- /src/attic/vector-pgXX/install-vector-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/vector-pgXX/install-vector-pgXX.py -------------------------------------------------------------------------------- /src/attic/vector-pgXX/remove-vector-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/vector-pgXX/remove-vector-pgXX.py -------------------------------------------------------------------------------- /src/attic/wa-pgXX/install-wa-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/wa-pgXX/install-wa-pgXX.py -------------------------------------------------------------------------------- /src/attic/wal2json-pgXX/install-wal2json-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/wal2json-pgXX/install-wal2json-pgXX.py -------------------------------------------------------------------------------- /src/attic/wal2json-pgXX/pg_hba.conf.replication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/wal2json-pgXX/pg_hba.conf.replication -------------------------------------------------------------------------------- /src/attic/wal2json-pgXX/remove-wal2json-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/wal2json-pgXX/remove-wal2json-pgXX.py -------------------------------------------------------------------------------- /src/attic/walg/install-walg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/walg/install-walg -------------------------------------------------------------------------------- /src/attic/web/static/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/about.py -------------------------------------------------------------------------------- /src/attic/web/static/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/components.py -------------------------------------------------------------------------------- /src/attic/web/static/contact_us.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/contact_us.py -------------------------------------------------------------------------------- /src/attic/web/static/dbaas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/dbaas.html -------------------------------------------------------------------------------- /src/attic/web/static/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/deploy.sh -------------------------------------------------------------------------------- /src/attic/web/static/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/downloads.py -------------------------------------------------------------------------------- /src/attic/web/static/gen2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/gen2.sh -------------------------------------------------------------------------------- /src/attic/web/static/genpl2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/genpl2.sh -------------------------------------------------------------------------------- /src/attic/web/static/h5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/h5.html -------------------------------------------------------------------------------- /src/attic/web/static/html/img/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/about.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/agent.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/anon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/anon.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/apicurio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/apicurio.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/audit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/audit.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/backrest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/backrest.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/badger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/badger.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/banner_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/banner_x.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/bigquery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/bigquery.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/bouncer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/bouncer.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/bowtie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/bowtie.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/bruce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/bruce.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/bulkload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/bulkload.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/citus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/citus.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/contact_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/contact_us.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/cron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/cron.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/debezium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/debezium.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/debugger.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/downloads.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/esfdw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/esfdw.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/hintplan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/hintplan.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/index.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/index2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/index2.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/jan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/jan.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/larry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/larry.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/line.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/multicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/multicorn.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/mysqlfdw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/mysqlfdw.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/olr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/olr.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/omnidb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/omnidb.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/op-systems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/op-systems.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/op-systems1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/op-systems1.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/ora2pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/ora2pg.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/oracle_fdw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/oracle_fdw.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/parquet_fdw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/parquet_fdw.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/partman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/partman.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/patroni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/patroni.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/pg-bouncer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/pg-bouncer.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/pgXX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/pgXX.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/pgadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/pgadmin.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/pglogical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/pglogical.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/pgpool2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/pgpool2.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/platforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/platforms.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/platforms2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/platforms2.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/platforms3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/platforms3.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/platforms4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/platforms4.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/pljava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/pljava.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/plprofiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/plprofiler.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/plusql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/plusql.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/postgis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/postgis.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/postgres-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/postgres-apps.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/postgres-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/postgres-core.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/postgres-devs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/postgres-devs.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/postgres-fdws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/postgres-fdws.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/postgres-hyper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/postgres-hyper.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/postgresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/postgresql.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/postgrest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/postgrest.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/protobuf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/protobuf.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/r-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/r-project.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/repack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/repack.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/rustpgx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/rustpgx.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/sailboat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/sailboat.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/server.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/services.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/setuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/setuser.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/slonik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/slonik.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/spacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/spacer.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/spock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/spock.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/tds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/tds.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/timescaledb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/timescaledb.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/tutorial.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/v8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/v8.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/waitsampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/waitsampling.png -------------------------------------------------------------------------------- /src/attic/web/static/html/img/whatif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/html/img/whatif.png -------------------------------------------------------------------------------- /src/attic/web/static/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/index.py -------------------------------------------------------------------------------- /src/attic/web/static/local.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/local.db -------------------------------------------------------------------------------- /src/attic/web/static/oscg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/oscg.py -------------------------------------------------------------------------------- /src/attic/web/static/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/project.py -------------------------------------------------------------------------------- /src/attic/web/static/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/services.py -------------------------------------------------------------------------------- /src/attic/web/static/tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/web/static/tutorial.py -------------------------------------------------------------------------------- /src/attic/zookeeper/example-log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/zookeeper/example-log4j.properties -------------------------------------------------------------------------------- /src/attic/zookeeper/example.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/zookeeper/example.config -------------------------------------------------------------------------------- /src/attic/zookeeper/example.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/zookeeper/example.service -------------------------------------------------------------------------------- /src/attic/zookeeper/getPKMG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/zookeeper/getPKMG.sh -------------------------------------------------------------------------------- /src/attic/zookeeper/install-zookeeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/zookeeper/install-zookeeper -------------------------------------------------------------------------------- /src/attic/zookeeper/remove-zookeeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/attic/zookeeper/remove-zookeeper -------------------------------------------------------------------------------- /src/attic/zookeeper/start-zookeeper: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl start zookeeper 3 | -------------------------------------------------------------------------------- /src/attic/zookeeper/stop-zookeeper: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl stop zookeeper 3 | -------------------------------------------------------------------------------- /src/backrest/backrest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/backrest/backrest.py -------------------------------------------------------------------------------- /src/backrest/install-backrest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/backrest/install-backrest.py -------------------------------------------------------------------------------- /src/backrest/pitr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/backrest/pitr.py -------------------------------------------------------------------------------- /src/backrest/remove-backrest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/backrest/remove-backrest.py -------------------------------------------------------------------------------- /src/bouncer/bouncer.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/bouncer/bouncer.service -------------------------------------------------------------------------------- /src/bouncer/init-bouncer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/bouncer/init-bouncer.py -------------------------------------------------------------------------------- /src/bouncer/install-bouncer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/bouncer/install-bouncer.py -------------------------------------------------------------------------------- /src/bouncer/pgbouncer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/bouncer/pgbouncer.ini -------------------------------------------------------------------------------- /src/bouncer/remove-bouncer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/bouncer/remove-bouncer.py -------------------------------------------------------------------------------- /src/bouncer/start-bouncer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/bouncer/start-bouncer.py -------------------------------------------------------------------------------- /src/bouncer/stop-bouncer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/bouncer/stop-bouncer.py -------------------------------------------------------------------------------- /src/conf/components.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/conf/components.sql -------------------------------------------------------------------------------- /src/conf/db_local.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/conf/db_local.db -------------------------------------------------------------------------------- /src/conf/insert_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/conf/insert_component.py -------------------------------------------------------------------------------- /src/conf/insert_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/conf/insert_setting.py -------------------------------------------------------------------------------- /src/conf/versions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/conf/versions.sql -------------------------------------------------------------------------------- /src/ctlibs/config-ctlibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/ctlibs/config-ctlibs.py -------------------------------------------------------------------------------- /src/ctlibs/install-ctlibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/ctlibs/install-ctlibs.py -------------------------------------------------------------------------------- /src/ctlibs/remove-ctlibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/ctlibs/remove-ctlibs.py -------------------------------------------------------------------------------- /src/etcd/etcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/etcd/etcd.py -------------------------------------------------------------------------------- /src/etcd/etcd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/etcd/etcd.service -------------------------------------------------------------------------------- /src/etcd/install-etcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/etcd/install-etcd.py -------------------------------------------------------------------------------- /src/etcd/remove-etcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/etcd/remove-etcd -------------------------------------------------------------------------------- /src/etcd/start-etcd: -------------------------------------------------------------------------------- 1 | sudo systemctl start etcd 2 | -------------------------------------------------------------------------------- /src/etcd/stop-etcd: -------------------------------------------------------------------------------- 1 | sudo systemctl stop etcd 2 | -------------------------------------------------------------------------------- /src/kirk/example-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/kirk/example-config.sh -------------------------------------------------------------------------------- /src/kirk/install-kirk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/kirk/install-kirk.py -------------------------------------------------------------------------------- /src/kirk/kirk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/kirk/kirk.py -------------------------------------------------------------------------------- /src/kirk/start-kirk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/kirk/start-kirk -------------------------------------------------------------------------------- /src/kirk/stop-kirk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/kirk/stop-kirk -------------------------------------------------------------------------------- /src/minio/install-minio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/minio/install-minio.py -------------------------------------------------------------------------------- /src/minio/minio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/minio/minio.py -------------------------------------------------------------------------------- /src/minio/minio.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/minio/minio.service -------------------------------------------------------------------------------- /src/minio/remove-minio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/minio/remove-minio -------------------------------------------------------------------------------- /src/minio/start-minio: -------------------------------------------------------------------------------- 1 | sudo systemctl start minio 2 | -------------------------------------------------------------------------------- /src/minio/stop-minio: -------------------------------------------------------------------------------- 1 | sudo systemctl stop minio 2 | -------------------------------------------------------------------------------- /src/patroni/ha_patroni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/patroni/ha_patroni.py -------------------------------------------------------------------------------- /src/patroni/install-patroni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/patroni/install-patroni.py -------------------------------------------------------------------------------- /src/patroni/patroni.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/patroni/patroni.service -------------------------------------------------------------------------------- /src/patroni/patroni.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/patroni/patroni.yaml -------------------------------------------------------------------------------- /src/pgXX/activity-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/activity-pgXX.py -------------------------------------------------------------------------------- /src/pgXX/config-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/config-pgXX.py -------------------------------------------------------------------------------- /src/pgXX/genSelfCert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/genSelfCert.sh -------------------------------------------------------------------------------- /src/pgXX/init-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/init-pgXX.py -------------------------------------------------------------------------------- /src/pgXX/install-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/install-pgXX.py -------------------------------------------------------------------------------- /src/pgXX/pg_hba.conf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/pg_hba.conf.nix -------------------------------------------------------------------------------- /src/pgXX/reload-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/reload-pgXX.py -------------------------------------------------------------------------------- /src/pgXX/remove-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/remove-pgXX.py -------------------------------------------------------------------------------- /src/pgXX/run-pgctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/run-pgctl.py -------------------------------------------------------------------------------- /src/pgXX/start-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/start-pgXX.py -------------------------------------------------------------------------------- /src/pgXX/stop-pgXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/stop-pgXX.py -------------------------------------------------------------------------------- /src/pgXX/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgXX/sysctl.conf -------------------------------------------------------------------------------- /src/pgcat/config-pgcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgcat/config-pgcat -------------------------------------------------------------------------------- /src/pgcat/install-pgcat: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$(dirname "$0")" 3 | 4 | ./config-pgcat 5 | 6 | -------------------------------------------------------------------------------- /src/pgcat/pgcat.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgcat/pgcat.service -------------------------------------------------------------------------------- /src/pgcat/pgcat.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgcat/pgcat.toml -------------------------------------------------------------------------------- /src/pgcat/pgcat.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/pgcat/pgcat.toml.template -------------------------------------------------------------------------------- /src/pgcat/start-pgcat: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl start pgcat 3 | -------------------------------------------------------------------------------- /src/pgcat/stop-pgcat: -------------------------------------------------------------------------------- 1 | set -x 2 | sudo systemctl stop pgcat 3 | -------------------------------------------------------------------------------- /src/prompgexp/install-prompgexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/prompgexp/install-prompgexp -------------------------------------------------------------------------------- /src/prompgexp/queries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/prompgexp/queries.yml -------------------------------------------------------------------------------- /src/prompgexp/start-prompgexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/prompgexp/start-prompgexp -------------------------------------------------------------------------------- /src/prompgexp/stop-prompgexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/prompgexp/stop-prompgexp -------------------------------------------------------------------------------- /src/repo/startLOCAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/repo/startLOCAL -------------------------------------------------------------------------------- /src/repo/stopLOCAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/src/repo/stopLOCAL -------------------------------------------------------------------------------- /test/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/test/entrypoint.sh -------------------------------------------------------------------------------- /test/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/test/runner.py -------------------------------------------------------------------------------- /test/runner_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/test/runner_dependencies.md -------------------------------------------------------------------------------- /test/schedule_files/script_file: -------------------------------------------------------------------------------- 1 | test/t/temp.sh 2 | -------------------------------------------------------------------------------- /test/t/lib/14config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/test/t/lib/14config.env -------------------------------------------------------------------------------- /test/t/lib/15config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/test/t/lib/15config.env -------------------------------------------------------------------------------- /test/t/lib/16config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/test/t/lib/16config.env -------------------------------------------------------------------------------- /test/t/lib/17config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/test/t/lib/17config.env -------------------------------------------------------------------------------- /test/t/temp.sh: -------------------------------------------------------------------------------- 1 | psql -U postgres -h 127.0.0.1 -e -c "\d" 2 | -------------------------------------------------------------------------------- /test/t/util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/cli/HEAD/test/t/util_test.py --------------------------------------------------------------------------------