├── .gitignore ├── .pmtignore ├── LICENSE ├── README.md ├── files ├── configs │ └── repository │ │ └── components │ │ ├── dropins │ │ └── .gitkeep │ │ └── lib │ │ └── .gitkeep ├── patches │ └── repository │ │ └── components │ │ └── patches │ │ └── .gitkeep └── system │ └── .gitkeep ├── hieradata └── dev │ └── wso2 │ └── wso2bps │ ├── common.yaml │ ├── default.yaml │ ├── manager.yaml │ └── worker.yaml ├── issue_template.md ├── manifests ├── init.pp └── params.pp ├── metadata.json ├── pom.xml ├── pull_request_template.md └── templates ├── bin ├── ciphertool.sh.erb └── wso2server.sh.erb ├── password-tmp.erb └── repository └── conf ├── axis2 └── axis2.xml.erb ├── bps.xml.erb ├── carbon.xml.erb ├── datasources ├── activiti-datasources.xml.erb ├── bps-datasources.xml.erb └── master-datasources.xml.erb ├── etc └── tasks-config.xml.erb ├── humantask.xml.erb ├── jndi.properties.erb ├── process-cleanup.properties.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-bps/HEAD/.gitignore -------------------------------------------------------------------------------- /.pmtignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | hieradata/ 3 | .vagrant 4 | *.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/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 | -------------------------------------------------------------------------------- /hieradata/dev/wso2/wso2bps/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/hieradata/dev/wso2/wso2bps/common.yaml -------------------------------------------------------------------------------- /hieradata/dev/wso2/wso2bps/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/hieradata/dev/wso2/wso2bps/default.yaml -------------------------------------------------------------------------------- /hieradata/dev/wso2/wso2bps/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/hieradata/dev/wso2/wso2bps/manager.yaml -------------------------------------------------------------------------------- /hieradata/dev/wso2/wso2bps/worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/hieradata/dev/wso2/wso2bps/worker.yaml -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/issue_template.md -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/manifests/params.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/metadata.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/pom.xml -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /templates/bin/ciphertool.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/bin/ciphertool.sh.erb -------------------------------------------------------------------------------- /templates/bin/wso2server.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/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-bps/HEAD/templates/repository/conf/axis2/axis2.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/bps.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/bps.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/carbon.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/carbon.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/datasources/activiti-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/datasources/activiti-datasources.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/datasources/bps-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/datasources/bps-datasources.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/datasources/master-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/datasources/master-datasources.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/etc/tasks-config.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/etc/tasks-config.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/humantask.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/humantask.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/jndi.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/jndi.properties.erb -------------------------------------------------------------------------------- /templates/repository/conf/process-cleanup.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/process-cleanup.properties.erb -------------------------------------------------------------------------------- /templates/repository/conf/registry.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/registry.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/security/authenticators.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/security/authenticators.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/security/cipher-text.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/security/cipher-text.properties.erb -------------------------------------------------------------------------------- /templates/repository/conf/security/cipher-tool.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/security/cipher-tool.properties.erb -------------------------------------------------------------------------------- /templates/repository/conf/tomcat/catalina-server.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/tomcat/catalina-server.xml.erb -------------------------------------------------------------------------------- /templates/repository/conf/user-mgt.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-bps/HEAD/templates/repository/conf/user-mgt.xml.erb --------------------------------------------------------------------------------