├── Readme.markdown ├── bolt-server └── helloworld.sh ├── ca ├── delete_cert.sh └── revoke_cert.sh ├── classifier ├── check_last_refresh.sh ├── create_group.sh ├── explain-201911.sh ├── explain.sh ├── external_node_script.rb ├── get_all_services_status.sh ├── get_classes.sh ├── get_console_groups.sh ├── get_console_groups_master.sh ├── get_node_group.sh ├── get_node_group_id.sh ├── get_node_group_parent_id.sh ├── get_node_record.sh ├── list_groups.sh ├── node_classification.sh ├── nodes_by_node_group.rb ├── pin_to_group.sh ├── restore_nc_groups.sh ├── search_for_a_class.sh ├── update_classes.sh └── update_group.sh ├── codemanager ├── deploy_environment.sh ├── manual_deployment.sh ├── manual_gitlab_webhook_hit.sh └── setup_codedeployer_user.sh ├── installer └── download_pe_tarball.sh ├── orchestrator ├── deploy_environment.sh ├── inventory.sh └── query_jobs.sh ├── puppet ├── clean_certificate.sh ├── get_ca_cert.sh ├── request_a_catalog.sh └── sign_certificate.sh ├── puppetdb ├── db_class_query.sh ├── db_environment_query.sh ├── exported_resources.sh ├── fact_query.sh ├── get_all_events_for_time_period.sh ├── get_authenticated_status.sh ├── get_exported_host_resources.sh ├── get_exported_resource.sh ├── get_facts.sh ├── get_node_info.sh ├── get_node_record.sh ├── get_old_nodes.sh ├── get_packages_for_node.sh ├── get_reports.sh ├── get_unauthenticated_status.sh ├── list_nodes_with_class.sh ├── list_resources.sh ├── list_specific_resources.sh ├── pql │ ├── active_nodes_with_specific_role_assigned.sh │ ├── certname_by_fact_value.sh │ ├── exported_resources.sh │ ├── fact_lookup.sh │ ├── files_causing_recursive_events.sh │ ├── nested_query_multiple_endpoints.sh │ ├── nodes_by_class.sh │ ├── nodes_by_environment.sh │ ├── nodes_not_respoinding.sh │ ├── nodes_with_recursive_events.sh │ ├── nodes_without_a_fact.sh │ └── reports_per_minute.sh └── resource-query-ast.sh ├── puppetserver ├── clear_environment_cache.sh ├── clear_jruby_pools.sh ├── file_metadatas │ ├── get_file_metadata.sh │ └── get_plugin_metadatas.sh ├── flush_jruby_pool.sh ├── rbac │ ├── create_user.sh │ ├── ds.json │ ├── get_directoryservice.sh │ ├── get_dsgroups.sh │ └── set_directoryservice.sh ├── show_known_environments.sh └── status │ ├── get_auth_status.sh │ ├── get_compilation_master_plaintext_status.sh │ ├── get_environments.sh │ ├── get_plaintext_status.sh │ ├── get_plaintext_status_debug.sh │ ├── get_simple_plaintext_status.sh │ └── get_status.sh ├── rbac ├── create_role_cd4pe.sh ├── create_user.sh ├── disable_nested_group_search.md ├── ds_read.sh ├── ds_write.sh ├── get_users.sh ├── ldapsearch_commands.sh ├── list_tokens.sh └── roles_view.sh └── ssl └── ssl_client.sh /Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/Readme.markdown -------------------------------------------------------------------------------- /bolt-server/helloworld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/bolt-server/helloworld.sh -------------------------------------------------------------------------------- /ca/delete_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/ca/delete_cert.sh -------------------------------------------------------------------------------- /ca/revoke_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/ca/revoke_cert.sh -------------------------------------------------------------------------------- /classifier/check_last_refresh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/check_last_refresh.sh -------------------------------------------------------------------------------- /classifier/create_group.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/create_group.sh -------------------------------------------------------------------------------- /classifier/explain-201911.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/explain-201911.sh -------------------------------------------------------------------------------- /classifier/explain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/explain.sh -------------------------------------------------------------------------------- /classifier/external_node_script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/external_node_script.rb -------------------------------------------------------------------------------- /classifier/get_all_services_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/get_all_services_status.sh -------------------------------------------------------------------------------- /classifier/get_classes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/get_classes.sh -------------------------------------------------------------------------------- /classifier/get_console_groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/get_console_groups.sh -------------------------------------------------------------------------------- /classifier/get_console_groups_master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/get_console_groups_master.sh -------------------------------------------------------------------------------- /classifier/get_node_group.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/get_node_group.sh -------------------------------------------------------------------------------- /classifier/get_node_group_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/get_node_group_id.sh -------------------------------------------------------------------------------- /classifier/get_node_group_parent_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/get_node_group_parent_id.sh -------------------------------------------------------------------------------- /classifier/get_node_record.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/get_node_record.sh -------------------------------------------------------------------------------- /classifier/list_groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/list_groups.sh -------------------------------------------------------------------------------- /classifier/node_classification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/node_classification.sh -------------------------------------------------------------------------------- /classifier/nodes_by_node_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/nodes_by_node_group.rb -------------------------------------------------------------------------------- /classifier/pin_to_group.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/pin_to_group.sh -------------------------------------------------------------------------------- /classifier/restore_nc_groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/restore_nc_groups.sh -------------------------------------------------------------------------------- /classifier/search_for_a_class.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/search_for_a_class.sh -------------------------------------------------------------------------------- /classifier/update_classes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/update_classes.sh -------------------------------------------------------------------------------- /classifier/update_group.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/classifier/update_group.sh -------------------------------------------------------------------------------- /codemanager/deploy_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/codemanager/deploy_environment.sh -------------------------------------------------------------------------------- /codemanager/manual_deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/codemanager/manual_deployment.sh -------------------------------------------------------------------------------- /codemanager/manual_gitlab_webhook_hit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/codemanager/manual_gitlab_webhook_hit.sh -------------------------------------------------------------------------------- /codemanager/setup_codedeployer_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/codemanager/setup_codedeployer_user.sh -------------------------------------------------------------------------------- /installer/download_pe_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/installer/download_pe_tarball.sh -------------------------------------------------------------------------------- /orchestrator/deploy_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/orchestrator/deploy_environment.sh -------------------------------------------------------------------------------- /orchestrator/inventory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/orchestrator/inventory.sh -------------------------------------------------------------------------------- /orchestrator/query_jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/orchestrator/query_jobs.sh -------------------------------------------------------------------------------- /puppet/clean_certificate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppet/clean_certificate.sh -------------------------------------------------------------------------------- /puppet/get_ca_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppet/get_ca_cert.sh -------------------------------------------------------------------------------- /puppet/request_a_catalog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppet/request_a_catalog.sh -------------------------------------------------------------------------------- /puppet/sign_certificate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppet/sign_certificate.sh -------------------------------------------------------------------------------- /puppetdb/db_class_query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/db_class_query.sh -------------------------------------------------------------------------------- /puppetdb/db_environment_query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/db_environment_query.sh -------------------------------------------------------------------------------- /puppetdb/exported_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/exported_resources.sh -------------------------------------------------------------------------------- /puppetdb/fact_query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/fact_query.sh -------------------------------------------------------------------------------- /puppetdb/get_all_events_for_time_period.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/get_all_events_for_time_period.sh -------------------------------------------------------------------------------- /puppetdb/get_authenticated_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/get_authenticated_status.sh -------------------------------------------------------------------------------- /puppetdb/get_exported_host_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/get_exported_host_resources.sh -------------------------------------------------------------------------------- /puppetdb/get_exported_resource.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/get_exported_resource.sh -------------------------------------------------------------------------------- /puppetdb/get_facts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/get_facts.sh -------------------------------------------------------------------------------- /puppetdb/get_node_info.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | curl -X GET http://localhost:8080/pdb/query/v4/nodes/$(hostname -f) 3 | -------------------------------------------------------------------------------- /puppetdb/get_node_record.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/get_node_record.sh -------------------------------------------------------------------------------- /puppetdb/get_old_nodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/get_old_nodes.sh -------------------------------------------------------------------------------- /puppetdb/get_packages_for_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/get_packages_for_node.sh -------------------------------------------------------------------------------- /puppetdb/get_reports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/get_reports.sh -------------------------------------------------------------------------------- /puppetdb/get_unauthenticated_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/get_unauthenticated_status.sh -------------------------------------------------------------------------------- /puppetdb/list_nodes_with_class.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/list_nodes_with_class.sh -------------------------------------------------------------------------------- /puppetdb/list_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/list_resources.sh -------------------------------------------------------------------------------- /puppetdb/list_specific_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/list_specific_resources.sh -------------------------------------------------------------------------------- /puppetdb/pql/active_nodes_with_specific_role_assigned.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/pql/active_nodes_with_specific_role_assigned.sh -------------------------------------------------------------------------------- /puppetdb/pql/certname_by_fact_value.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/pql/certname_by_fact_value.sh -------------------------------------------------------------------------------- /puppetdb/pql/exported_resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | puppet query 'resources { exported = true }' 4 | -------------------------------------------------------------------------------- /puppetdb/pql/fact_lookup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/pql/fact_lookup.sh -------------------------------------------------------------------------------- /puppetdb/pql/files_causing_recursive_events.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/pql/files_causing_recursive_events.sh -------------------------------------------------------------------------------- /puppetdb/pql/nested_query_multiple_endpoints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/pql/nested_query_multiple_endpoints.sh -------------------------------------------------------------------------------- /puppetdb/pql/nodes_by_class.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/pql/nodes_by_class.sh -------------------------------------------------------------------------------- /puppetdb/pql/nodes_by_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/pql/nodes_by_environment.sh -------------------------------------------------------------------------------- /puppetdb/pql/nodes_not_respoinding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/pql/nodes_not_respoinding.sh -------------------------------------------------------------------------------- /puppetdb/pql/nodes_with_recursive_events.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/pql/nodes_with_recursive_events.sh -------------------------------------------------------------------------------- /puppetdb/pql/nodes_without_a_fact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/pql/nodes_without_a_fact.sh -------------------------------------------------------------------------------- /puppetdb/pql/reports_per_minute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/pql/reports_per_minute.sh -------------------------------------------------------------------------------- /puppetdb/resource-query-ast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetdb/resource-query-ast.sh -------------------------------------------------------------------------------- /puppetserver/clear_environment_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/clear_environment_cache.sh -------------------------------------------------------------------------------- /puppetserver/clear_jruby_pools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/clear_jruby_pools.sh -------------------------------------------------------------------------------- /puppetserver/file_metadatas/get_file_metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/file_metadatas/get_file_metadata.sh -------------------------------------------------------------------------------- /puppetserver/file_metadatas/get_plugin_metadatas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/file_metadatas/get_plugin_metadatas.sh -------------------------------------------------------------------------------- /puppetserver/flush_jruby_pool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/flush_jruby_pool.sh -------------------------------------------------------------------------------- /puppetserver/rbac/create_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/rbac/create_user.sh -------------------------------------------------------------------------------- /puppetserver/rbac/ds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/rbac/ds.json -------------------------------------------------------------------------------- /puppetserver/rbac/get_directoryservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/rbac/get_directoryservice.sh -------------------------------------------------------------------------------- /puppetserver/rbac/get_dsgroups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/rbac/get_dsgroups.sh -------------------------------------------------------------------------------- /puppetserver/rbac/set_directoryservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/rbac/set_directoryservice.sh -------------------------------------------------------------------------------- /puppetserver/show_known_environments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/show_known_environments.sh -------------------------------------------------------------------------------- /puppetserver/status/get_auth_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/status/get_auth_status.sh -------------------------------------------------------------------------------- /puppetserver/status/get_compilation_master_plaintext_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/status/get_compilation_master_plaintext_status.sh -------------------------------------------------------------------------------- /puppetserver/status/get_environments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/status/get_environments.sh -------------------------------------------------------------------------------- /puppetserver/status/get_plaintext_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/status/get_plaintext_status.sh -------------------------------------------------------------------------------- /puppetserver/status/get_plaintext_status_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/status/get_plaintext_status_debug.sh -------------------------------------------------------------------------------- /puppetserver/status/get_simple_plaintext_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/status/get_simple_plaintext_status.sh -------------------------------------------------------------------------------- /puppetserver/status/get_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/puppetserver/status/get_status.sh -------------------------------------------------------------------------------- /rbac/create_role_cd4pe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/rbac/create_role_cd4pe.sh -------------------------------------------------------------------------------- /rbac/create_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/rbac/create_user.sh -------------------------------------------------------------------------------- /rbac/disable_nested_group_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/rbac/disable_nested_group_search.md -------------------------------------------------------------------------------- /rbac/ds_read.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/rbac/ds_read.sh -------------------------------------------------------------------------------- /rbac/ds_write.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/rbac/ds_write.sh -------------------------------------------------------------------------------- /rbac/get_users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/rbac/get_users.sh -------------------------------------------------------------------------------- /rbac/ldapsearch_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/rbac/ldapsearch_commands.sh -------------------------------------------------------------------------------- /rbac/list_tokens.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/rbac/list_tokens.sh -------------------------------------------------------------------------------- /rbac/roles_view.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/rbac/roles_view.sh -------------------------------------------------------------------------------- /ssl/ssl_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abottchen/pe_curl_requests/HEAD/ssl/ssl_client.sh --------------------------------------------------------------------------------