Skip to content

Instantly share code, notes, and snippets.

---
- name: Install Gitlab runner repository
copy:
src: etc/yum.repos.d/gitlab-runner.repo
dest: /etc/yum.repos.d/gitlab-runner.repo
tags: [ 'gitlab-runner' ]
- name: Install Gitlab repository GPG key
rpm_key:
state: present
[root@NY11IBUILD01 ANSIBLE]# ansible-playbook playbook.yml --tags gitlab-runner --limit wrapweb
PLAY [webserver] **************************************************************
GATHERING FACTS ***************************************************************
ok: [wrapweb2]
ok: [wrapweb3]
ok: [wrapweb1]
TASK: [gitlab-runner | Install Gitlab runner repository] **********************

Keybase proof

I hereby claim:

  • I am zamoose on github.
  • I am zamoose (https://keybase.io/zamoose) on keybase.
  • I have a public key whose fingerprint is 11CB D1D6 8323 1C5B 1BD1 3809 81A8 AEA1 CD1B 3B5A

To claim this, I am signing this object:

map $uri $blogname{
~^(?P<blogpath>/[^/]+/)files/(.*) $blogpath ;
}
map $blogname $blogid{
default -999;
#Ref: http://wordpress.org/extend/plugins/nginx-helper/
#include /var/www/wordpress/wp-content/plugins/nginx-helper/map.conf ;
}
@zamoose
zamoose / domains.yml
Last active August 29, 2015 14:14
Proposed HGV YAML format
---
# Root-level array members should roughly line up with
# Ansible host groups
# Top level Ansible group containing HGV info.
# Should probably only ever contain one host.
vagrant_hosts:
# These map to the "hosts:" portion of the inventory
hgv.dev:
# Everything per-host maps to the "vars:" portion of the inventory
@zamoose
zamoose / inventory.php
Last active August 29, 2015 14:14
Dynamic inventory
#!/usr/bin/php
<?php
$cli_opts = "h";
$cli_long_opts = array(
"list",
"host:"
);
$options = getopt( $cli_opts, $cli_long_opts );
print_r($options);
- name: Register host keys
shell: "ssh-keyscan {{ hostvars[item]['ansible_ssh_host'] }}"
with_flattened:
- "{{ groups['elasticpress'] }}"
- "{{ groups['logstash'] }}"
- "{{ groups['webserver'] }}"
- "{{ groups['mariadb'] }}"
- "{{ groups['nfs-server'] }}"
register: inventory_host_keys
tags: [ 'monitmonit' ]
@zamoose
zamoose / config_definitions.pp
Created August 25, 2011 20:00
Useful Puppet user definitions
# Hopefully someone else will find these snippets useful. I've found them VERY
# helpful in defining local users that hew to the generally-accepted RedHat-ism
# of [local username] having an equivalent [local user primary group] with uid = gid.
# Improvements welcomed.
#
# ROCKS Cluster users generally need access to scratch directories on local storage,
# hence their more expansive definitions.
#
# This file should probably go in your [Puppet config dir]/manifests/definitions/
#
<?php
// Set up arrays to hold the post objects
$rotator_items = $testimonial_items = array();
// Loop through rotator items
$rotator_args = array( 'post_type' => 'rotator' );
$rotator = new WP_Query( $rotator_args );
$c1 = 0;