├── .gitignore ├── .pmtignore ├── LICENSE ├── README.md ├── files ├── configs │ └── repository │ │ └── components │ │ ├── dropins │ │ └── .gitkeep │ │ └── lib │ │ └── .gitkeep ├── patches │ └── 4.4.0 │ │ └── .gitkeep └── system │ └── .gitkeep ├── hieradata └── dev │ └── wso2 │ └── wso2as │ ├── pattern-1 │ └── default.yaml │ └── pattern-2 │ ├── common.yaml │ ├── manager.yaml │ └── worker.yaml ├── issue_template.md ├── manifests ├── init.pp └── params.pp ├── metadata.json ├── package.xml ├── pom.xml ├── 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 ├── identity.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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/.gitignore -------------------------------------------------------------------------------- /.pmtignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/.pmtignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/README.md -------------------------------------------------------------------------------- /files/configs/repository/components/dropins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/configs/repository/components/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/patches/4.4.0/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/system/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hieradata/dev/wso2/wso2as/pattern-1/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/hieradata/dev/wso2/wso2as/pattern-1/default.yaml -------------------------------------------------------------------------------- /hieradata/dev/wso2/wso2as/pattern-2/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/hieradata/dev/wso2/wso2as/pattern-2/common.yaml -------------------------------------------------------------------------------- /hieradata/dev/wso2/wso2as/pattern-2/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/hieradata/dev/wso2/wso2as/pattern-2/manager.yaml -------------------------------------------------------------------------------- /hieradata/dev/wso2/wso2as/pattern-2/worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/hieradata/dev/wso2/wso2as/pattern-2/worker.yaml -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/issue_template.md -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/manifests/params.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/metadata.json -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/package.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/pom.xml -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /templates/bin/ciphertool.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/templates/bin/ciphertool.sh.erb -------------------------------------------------------------------------------- /templates/bin/wso2server.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/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-as/HEAD/templates/repository/conf/axis2/axis2.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/carbon.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/templates/repository/conf/carbon.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/datasources/master-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/templates/repository/conf/datasources/master-datasources.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/identity.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/templates/repository/conf/identity.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/registry.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/templates/repository/conf/registry.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/security/authenticators.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/templates/repository/conf/security/authenticators.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/security/cipher-text.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/templates/repository/conf/security/cipher-text.properties.erb -------------------------------------------------------------------------------- /templates/repository/conf/security/cipher-tool.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/templates/repository/conf/security/cipher-tool.properties.erb -------------------------------------------------------------------------------- /templates/repository/conf/tomcat/catalina-server.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/templates/repository/conf/tomcat/catalina-server.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/user-mgt.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-as/HEAD/templates/repository/conf/user-mgt.xml.erb --------------------------------------------------------------------------------