This file has been truncated, but you can view the full file.
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
28868 EMUL "native" | |
28868 ktrace RET ktrace 0 | |
28868 ktrace CALL execve(0x7f7ffffdbbe5,0x7f7ffffdbae0,0x7f7ffffdbaf0) | |
28868 ktrace NAMI "/usr/local/sbin/metronome" | |
28868 ktrace NAMI "/usr/local/bin/lua51" | |
28868 lua51 NAMI "/usr/libexec/ld.so" | |
28868 EMUL "native" | |
28868 lua51 RET execve 0 | |
28868 lua51 CALL issetugid() | |
28868 lua51 RET issetugid 0 |
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
{% from "base/syslog/syslog.jinja" import syslog with context %} | |
include: | |
- base.example-ca | |
syslog-ng: | |
service: | |
- dead | |
- enable: False | |
rsyslog: |
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
mysql: | |
{% if salt['pillar.get']('mysql:install_method', 'package') == 'package' %} | |
pkg.installed | |
{% else %} | |
git: | |
- latest | |
- name: git://path | |
cmd: | |
- wait | |
- name: ./install_mysql |
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
es-requirements: | |
pkg.installed: | |
- pkgs: | |
- {{ salt['pillar.get']('packages:jre7') }} | |
elasticsearch: | |
pkgrepo.managed: | |
- humanname: ElasticSearch repository for {{ salt['pillar.get']('logstash:es_ver') }}.x packages | |
{% if grains['os_family'] == 'RedHat' %} | |
- name: elasticsearch-{{ salt['pillar.get']('logstash:es_ver') }} |
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: | |
- redis | |
- base.example-ca | |
logstash-reqs: | |
pkg.installed: | |
- pkgs: | |
- {{ salt['pillar.get']('packages:jre7') }} | |
user.present: | |
- name: logstash |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.define :i386 do |i386| | |
RELEASE="current" | |
i386.vm.box = "obsd-current-i386" | |
i386.vm.network :private_network, ip: "192.168.50.4", type: "static" | |
i386.vm.synced_folder "~/Work/OpenBSD/packages/#{RELEASE}", "/usr/ports/packages", :nfs => true |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.define :i386 do |i386| | |
i386.vm.box = "obsd-current-i386" | |
i386.vm.network :private_network, ip: "192.168.50.4", type: "static" | |
end |