Based on original scheme by colinvh/aws.md
The intent is to define terse, standards-supported names for AWS regions.
| Code | Description |
|---|
| # Manual opt parsing example | |
| # | |
| # Features: | |
| # - supports short and long flags (ie: -v|--verbose) | |
| # - supports short and long key/value options (ie: -f <file> | --filename <file>) | |
| # - supports short and long key/value options with equals assignment (ie: -f=<file> | --filename=<file>) | |
| # - does NOT support short option chaining (ie: -vh) | |
| # - everything after -- is positional even if it looks like an option (ie: -f) | |
| # - once we hit an arg that isn't an option flag, everything after that is considered positional | |
| function optparsing_demo() { |
Based on original scheme by colinvh/aws.md
The intent is to define terse, standards-supported names for AWS regions.
| Code | Description |
|---|
| INSTALLATION | |
| Copy jenkins-slave.init to /etc/init.d/jenkins-slave and copy jenkins-slave to /etc/sysconfig/jenkins-slave. | |
| cp jenkins-slave.init /etc/init.d/jenkins-slave | |
| cp jenkins-slave /etc/sysconfig/jenkins-slave | |
| chkconfig jenkins-slave on | |
| service jenkins-slave start | |
| Change the values of /etc/sysconfig/jenkins-slave to match your environment needs. |