├── .openshift ├── action_hooks │ ├── build │ ├── deploy │ ├── post_deploy │ ├── post_start_nodejs │ ├── post_start_nodejs-0.6 │ ├── post_stop_nodejs │ ├── post_stop_nodejs-0.6 │ ├── pre_build │ ├── pre_start_nodejs │ ├── pre_start_nodejs-0.6 │ ├── pre_stop_nodejs │ └── pre_stop_nodejs-0.6 ├── cron │ ├── README.cron │ ├── daily │ │ └── .gitignore │ ├── hourly │ │ └── .gitignore │ ├── minutely │ │ └── .gitignore │ ├── monthly │ │ └── .gitignore │ └── weekly │ │ ├── README │ │ ├── chrono.dat │ │ ├── chronograph │ │ ├── jobs.allow │ │ └── jobs.deny ├── lib │ ├── setup_custom_nodejs_env │ └── utils └── markers │ ├── NODEJS_VERSION │ └── README ├── LICENSE ├── README ├── README.md ├── deplist.txt ├── index.html ├── npm_global_module_list ├── package.json └── server.js /.openshift/action_hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/action_hooks/build -------------------------------------------------------------------------------- /.openshift/action_hooks/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/action_hooks/deploy -------------------------------------------------------------------------------- /.openshift/action_hooks/post_deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/action_hooks/post_deploy -------------------------------------------------------------------------------- /.openshift/action_hooks/post_start_nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/action_hooks/post_start_nodejs -------------------------------------------------------------------------------- /.openshift/action_hooks/post_start_nodejs-0.6: -------------------------------------------------------------------------------- 1 | post_start_nodejs -------------------------------------------------------------------------------- /.openshift/action_hooks/post_stop_nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/action_hooks/post_stop_nodejs -------------------------------------------------------------------------------- /.openshift/action_hooks/post_stop_nodejs-0.6: -------------------------------------------------------------------------------- 1 | post_stop_nodejs -------------------------------------------------------------------------------- /.openshift/action_hooks/pre_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/action_hooks/pre_build -------------------------------------------------------------------------------- /.openshift/action_hooks/pre_start_nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/action_hooks/pre_start_nodejs -------------------------------------------------------------------------------- /.openshift/action_hooks/pre_start_nodejs-0.6: -------------------------------------------------------------------------------- 1 | pre_start_nodejs -------------------------------------------------------------------------------- /.openshift/action_hooks/pre_stop_nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/action_hooks/pre_stop_nodejs -------------------------------------------------------------------------------- /.openshift/action_hooks/pre_stop_nodejs-0.6: -------------------------------------------------------------------------------- 1 | pre_stop_nodejs -------------------------------------------------------------------------------- /.openshift/cron/README.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/cron/README.cron -------------------------------------------------------------------------------- /.openshift/cron/daily/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/hourly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/minutely/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/monthly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/cron/weekly/README -------------------------------------------------------------------------------- /.openshift/cron/weekly/chrono.dat: -------------------------------------------------------------------------------- 1 | Time And Relative D...n In Execution (Open)Shift! 2 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/chronograph: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "`date`: `cat $(dirname \"$0\")/chrono.dat`" 4 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/jobs.allow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/cron/weekly/jobs.allow -------------------------------------------------------------------------------- /.openshift/cron/weekly/jobs.deny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/cron/weekly/jobs.deny -------------------------------------------------------------------------------- /.openshift/lib/setup_custom_nodejs_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/lib/setup_custom_nodejs_env -------------------------------------------------------------------------------- /.openshift/lib/utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/lib/utils -------------------------------------------------------------------------------- /.openshift/markers/NODEJS_VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/markers/NODEJS_VERSION -------------------------------------------------------------------------------- /.openshift/markers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/.openshift/markers/README -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/README.md -------------------------------------------------------------------------------- /deplist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/deplist.txt -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/index.html -------------------------------------------------------------------------------- /npm_global_module_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/npm_global_module_list -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramr/nodejs-custom-version-openshift/HEAD/server.js --------------------------------------------------------------------------------