This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include: | |
- gitlab.gitlab-shell | |
- gitlab.gitlab | |
gitlab-backup: | |
cmd.wait: | |
- user: git | |
- pwd: /home/git/gitlab | |
- shell: /bin/bash | |
- name: bundle exec rake gitlab:backup:create RAILS_ENV=production |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
postgresql-server: | |
pkg.installed: | |
- name: {{ salt['pillar.get']('packages:postgres') }} | |
service: | |
- name: {{ salt['pillar.get']('services:postgres') }} | |
- running | |
- enable: True | |
- require: | |
- pkg: postgresql-server | |
- file: postgresql-server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Adopted | |
# Contributor: Michael Hiller <glako-at-sojasau.de> | |
pkgname=spambayes | |
pkgver=1.1a6 | |
pkgrel=3 | |
pkgdesc="Bayesian anti-spam classifier written in Python" | |
arch=('i686' 'x86_64') | |
url="http://spambayes.sourceforge.net/" | |
license=('PSF') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SDCARD=/dev/sdcard | |
DEF_UID=$(grep "^UID_MIN" /etc/login.defs | tr -s " " | cut -d " " -f2) | |
DEF_GID=$(grep "^GID_MIN" /etc/login.defs | tr -s " " | cut -d " " -f2) | |
DEVICEUSER=$(getent passwd $DEF_UID | sed 's/:.*//') | |
MNT=/run/user/$DEF_UID/media/sdcard | |
if [ "$ACTION" = "add" ]; then | |
if [ -b /dev/mmcblk1p1 ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ go build | |
# _/home/vagrant/logstash-forwarder | |
./filecompare.go:10: undefined: FileState | |
./prospector.go:42: undefined: FileState | |
./registrar.go:9: undefined: FileState | |
./registrar.go:20: undefined: file_ids | |
./registrar.go:21: undefined: FileState | |
./registrar_other.go:10: undefined: FileState |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INFO global: Vagrant version: 1.4.0 | |
INFO global: Ruby version: 2.0.0 | |
INFO global: RubyGems version: 2.0.14 | |
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/synced_folders/nfs/plugin.rb | |
INFO manager: Registered plugin: NFS synced folders | |
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/freebsd/plugin.rb | |
INFO manager: Registered plugin: FreeBSD host | |
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/slackware/plugin.rb | |
INFO manager: Registered plugin: Slackware host | |
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/redhat/plugin.rb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
zeromq { | |
type => "zeromq-type" | |
mode => "server" | |
topology => "pubsub" | |
address => "tcp://0.0.0.0:2021" | |
format => "json_event" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sentry-reqs: | |
pkg.installed: | |
- pkgs: | |
- python-virtualenv | |
- supervisor | |
- python-pip | |
- virtualenvwrapper | |
- postgresql-server-dev-all | |
- python-dev | |
- require_in: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sentry-reqs: | |
pkg.installed: | |
- pkgs: | |
- python-virtualenv | |
- supervisor | |
- python-pip | |
- virtualenvwrapper | |
- postgresql-server-dev-all | |
- python-dev | |
- require_in: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/tmp/packer.tar.gz: | |
file.managed: | |
- source: https://aur.archlinux.org/packages/pa/packer/packer.tar.gz | |
- source_hash: sha256=4d48ddc5270afdd9358055b040b478581887c0f6aa2120cb3cde619c6e711fdb | |
prepare-packer: | |
cmd.wait: | |
- name: tar zxf packer.tar.gz | |
- cwd: /tmp | |
- user: vagrant | |
- watch: |