I hereby claim:
- I am lukeab on github.
- I am lukeab (https://keybase.io/lukeab) on keybase.
- I have a public key whose fingerprint is 1E9E 6322 8D1D 238F C7DC 937F DAB5 B383 2155 EDA7
To claim this, I am signing this object:
| loop0 7:0 0 100G 0 loop | |
| └─docker-202:1-8734395-pool 253:1 0 100G 0 dm | |
| loop1 7:1 0 2G 0 loop | |
| └─docker-202:1-8734395-pool 253:1 0 100G 0 dm |
| version: '2' | |
| services: | |
| phpserver: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile-phpserver | |
| command: php -S 0.0.0.0:9292 | |
| volumes: | |
| - ./:/phpapp | |
| ports: |
| -- common.yaml file -- | |
| phpoptions: | |
| addepel: true | |
| phpscl: false | |
| phppkgprefix: php | |
| phpversion: 56u | |
| -- phpfpm_profile.pp file -- | |
| $phpoptions = hiera_hash('phpoptions') |
| define repomanage::create_repo( | |
| $baseurl=false, | |
| $description=false, | |
| $mirrorlist=false, | |
| $proxy = false, | |
| $priority = 1, | |
| $enabled = 1 | |
| ){ | |
| #notice("adding",$baseurl,"with proxy",$proxy,"and options: enabled=",$enabled," description:",$description," priority:",$priority) |
| $packages= [ | |
| $phpmysql, | |
| "${phpprefix}-pdo", | |
| "${phpprefix}-gd", | |
| "${phpprefix}-soap", | |
| "${phpprefix}-mbstring", | |
| "${phpprefix}-xml", | |
| "${phpprefix}-opcache", | |
| ] |
| module OS | |
| def OS.windows? | |
| (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil | |
| end | |
| def OS.mac? | |
| (/darwin/ =~ RUBY_PLATFORM) != nil | |
| end | |
| def OS.unix? | |
| !OS.windows? |
| elasticsearch_plugins: | |
| 'elasticsearch/elasticsearch-cloud-aws': | |
| module_dir : 'cloud-aws' | |
| url : 'http://download.elasticsearch.org/elasticsearch/elasticsearch-cloud-aws/elasticsearch-cloud-aws-2.5.1.zip' | |
| instances : 'es-logstash' | |
| 'royrusso/elasticsearch-HQ': | |
| module_dir: HQ | |
| instances: 'es-logstash' | |
| 'mobz/elasticsearch-head': | |
| module_dir: head |
| [luke@labxps13 puppet]$ rake -t | |
| rake aborted! | |
| LoadError: cannot load such file -- puppet-maint/tasks/puppet-maint | |
| /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require' | |
| /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require' | |
| /home/luke/dev/app/puppet/Rakefile:4:in `<top (required)>' | |
| /usr/lib/ruby/2.2.0/rake/rake_module.rb:28:in `load' | |
| /usr/lib/ruby/2.2.0/rake/rake_module.rb:28:in `load_rakefile' | |
| /usr/lib/ruby/2.2.0/rake/application.rb:689:in `raw_load_rakefile' | |
| /usr/lib/ruby/2.2.0/rake/application.rb:94:in `block in load_rakefile' |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| require(dirname(__FILE__).'/AbstractController.php'); | |
| class Shortener_RedirectorController extends Shortener_AbstractController{ | |
| public function redirectAction(){ | |
| var_dump( $this->_getParam('args'));die(); | |
| } | |
| } |