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
<html> | |
<head> | |
</head> | |
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> | |
<table width="550" border="0" cellpadding="25" cellspacing="0" bgcolor="#b4b4b4"> | |
<tbody> | |
<tr> | |
<td> | |
<div style="background-color:#b4b4b4; width:471px; margin:20px auto; padding:10px 30px"> | |
<table id="shell" width="471" border="0" cellpadding="0" cellspacing="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
[makerpm@localhost ~]$ rpmbuild-md5 -bs ~/rpmbuild/SPECS/zabbix.spec | |
error: Failed build dependencies: | |
mysql-devel is needed by zabbix-1.8.12-1.x86_64 | |
postgresql-devel is needed by zabbix-1.8.12-1.x86_64 | |
net-snmp-devel is needed by zabbix-1.8.12-1.x86_64 | |
openldap-devel is needed by zabbix-1.8.12-1.x86_64 | |
gnutls-devel is needed by zabbix-1.8.12-1.x86_64 | |
iksemel-devel is needed by zabbix-1.8.12-1.x86_64 | |
unixODBC-devel is needed by zabbix-1.8.12-1.x86_64 | |
curl-devel >= 7.13.1 is needed by zabbix-1.8.12-1.x86_64 |
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 { | |
stdin { | |
debug => true | |
type => default | |
add_field => [ "xml", "%{@message}" ] | |
} | |
} | |
filter { | |
xml { |
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 | |
cookbook="$1" | |
if [ -z "$cookbook" ]; | |
then | |
echo "ERROR: script needs a cookbook as an arg" | |
exit 1 | |
fi | |
SVN_REPO='https://svn-host/svn-repo' |
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
user = ENV['OPSCODE_USER'] || ENV['USER'] | |
base_box = ENV['VAGRANT_BOX'] || 'centos-5.5-x86_64' | |
Vagrant::Config.run do |config| | |
config.vm.define :web do |web_config| | |
web_config.vm.box = base_box | |
web_config.vm.forward_port("http", 80, 8080) | |
web_config.vm.provision :chef_client do |chef| |
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
user = ENV['OPSCODE_USER'] || ENV['USER'] | |
base_box = ENV['VAGRANT_BOX'] || 'centos-5.5-x86_64' | |
Vagrant::Config.run do |config| | |
config.vm.box = base_box | |
config.ssh.timeout = 600 | |
config.vm.provision :chef_client do |chef| | |
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
<% if @banner -%><%= @banner -%><% end -%> | |
+---------------------------------------- | |
| | |
| Host name: <%= node[:hostname] %> | |
| FQDN: <%= node[:fqdn] %> | |
| Distro / Arch: <%= node[:platform] %> <%= node[:platform_version] %> <%= node.kernel.machine %> | |
<% if node.attribute?('applogic') -%> | |
| App name: <%= node[:applogic][:APP_NAME] %> | |
| Comp name: <%= node[:applogic][:COMP_NAME] %> | |
<% end -%> |
NewerOlder