openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365openssl rsa -outform der -in key.pem -out server.key| FROM debian:jessie | |
| RUN apt-get update && apt-get install -y wget curl | |
| RUN echo "deb http://nginx.org/packages/debian/ jessie nginx" >> /etc/apt/sources.list | |
| RUN echo "deb-src http://nginx.org/packages/debian/ jessie nginx" >> /etc/apt/sources.list | |
| RUN wget http://nginx.org/packages/keys/nginx_signing.key | |
| RUN cat nginx_signing.key | apt-key add - | |
| RUN apt-get update | |
| RUN apt-get install -y nginx |
| { | |
| "info": { | |
| "_postman_id": "767f8402-3259-1c5a-5597-fb9a62a77193", | |
| "name": "Camunda OC Demo", | |
| "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
| }, | |
| "item": [ | |
| { | |
| "name": "Task List", | |
| "request": { |
| #!/bin/bash | |
| echo "Please provide the directory having the original modules" | |
| read modulesdir | |
| cd $modulesdir | |
| echo "Please provide the module directory that has the hacked modules eg. /User/username/sites/test/all/modules" | |
| read repo_module_dir | |
| echo "Please provide the path where the patches should be placed" | |
| read patchpath |
| #!/bin/bash | |
| FILES=config/default/sync/* | |
| for f in $FILES | |
| do | |
| echo "Processing $f file..." | |
| sed -i '' '/^uuid:/d' $f | |
| done |
| #!/bin/bash | |
| # | |
| # Delete files older than some time | |
| # | |
| usage() | |
| { | |
| cat << EOF | |
| usage $0 options |