├── .gitignore ├── LICENSE ├── README.md ├── files ├── configs │ └── repository │ │ └── components │ │ ├── dropins │ │ └── .gitkeep │ │ └── lib │ │ └── .gitkeep ├── patches │ └── repository │ │ └── components │ │ └── patches │ │ └── .gitkeep └── system │ └── .gitkeep ├── issue_template.md ├── manifests └── init.pp ├── metadata.json ├── pull_request_template.md └── templates ├── bin ├── ciphertool.sh.erb └── wso2server.sh.erb ├── password-tmp.erb └── repository ├── conf ├── axis2 │ └── axis2.xml.erb ├── carbon.xml.erb ├── datasources │ ├── master-datasources.xml.erb │ └── social-datasources.xml.erb ├── identity.xml.erb ├── identity │ ├── application-authentication.xml.erb │ └── sso-idp-config.xml.erb ├── registry.xml.erb ├── security │ ├── authenticators.xml.erb │ ├── cipher-text.properties.erb │ └── cipher-tool.properties.erb ├── tomcat │ └── catalina-server.xml.erb └── user-mgt.xml.erb └── deployment └── server └── jaggeryapps ├── publisher └── config │ └── publisher.json.erb └── store └── config ├── store-tenant.json.erb └── store.json.erb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/README.md -------------------------------------------------------------------------------- /files/configs/repository/components/dropins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/configs/repository/components/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/patches/repository/components/patches/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/system/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/issue_template.md -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/metadata.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /templates/bin/ciphertool.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/bin/ciphertool.sh.erb -------------------------------------------------------------------------------- /templates/bin/wso2server.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/bin/wso2server.sh.erb -------------------------------------------------------------------------------- /templates/password-tmp.erb: -------------------------------------------------------------------------------- 1 | <%= @key_store_password %> -------------------------------------------------------------------------------- /templates/repository/conf/axis2/axis2.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/axis2/axis2.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/carbon.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/carbon.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/datasources/master-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/datasources/master-datasources.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/datasources/social-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/datasources/social-datasources.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/identity.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/identity.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/identity/application-authentication.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/identity/application-authentication.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/identity/sso-idp-config.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/identity/sso-idp-config.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/registry.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/registry.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/security/authenticators.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/security/authenticators.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/security/cipher-text.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/security/cipher-text.properties.erb -------------------------------------------------------------------------------- /templates/repository/conf/security/cipher-tool.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/security/cipher-tool.properties.erb -------------------------------------------------------------------------------- /templates/repository/conf/tomcat/catalina-server.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/tomcat/catalina-server.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/user-mgt.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/conf/user-mgt.xml.erb -------------------------------------------------------------------------------- /templates/repository/deployment/server/jaggeryapps/publisher/config/publisher.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/deployment/server/jaggeryapps/publisher/config/publisher.json.erb -------------------------------------------------------------------------------- /templates/repository/deployment/server/jaggeryapps/store/config/store-tenant.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/deployment/server/jaggeryapps/store/config/store-tenant.json.erb -------------------------------------------------------------------------------- /templates/repository/deployment/server/jaggeryapps/store/config/store.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-es/HEAD/templates/repository/deployment/server/jaggeryapps/store/config/store.json.erb --------------------------------------------------------------------------------