Title: Manual Examples Date: 2014-01-19 06:00 Author: admin Category: Foo Tags: foo Slug: manual-examples
These are some manual examples...
A fenced code block of Python:
Title: Manual Examples Date: 2014-01-19 06:00 Author: admin Category: Foo Tags: foo Slug: manual-examples
These are some manual examples...
A fenced code block of Python:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Manual Examples</title> | |
| <link rel="stylesheet" href="../../../theme/css/main.css" /> | |
| <!--[if IE]> | |
| <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> |
| $config_dir = '/etc/nagios' | |
| Nagios_host <<||>> { | |
| target => "${config_dir}/nagios_host.cfg", | |
| before => File["${config_dir}/nagios_host.cfg"], | |
| } | |
| file { "${config_dir}/nagios_host.cfg": | |
| ensure => file, | |
| owner => $nagios_user, |
| <?xml version="1.0" encoding="ISO-8859-1"?> | |
| <linkd-configuration threads="5" initial_sleep_time="3600000" | |
| snmp_poll_interval="18000000" discovery_link_interval="1800000" | |
| enable-discovery-download="true"> | |
| <iproutes> | |
| <vendor vendor_name="netscreen" sysoidRootMask=".1.3.6.1.4.1.3224" | |
| class-name="org.opennms.netmgt.linkd.snmp.IpRouteTable"> | |
| <specific>1.51</specific> |
| /home/jantman/personal/git/puppetlabs-rabbitmq/vendor/ruby/1.9.1/gems/beaker-1.16.0/lib/beaker/dsl/helpers.rb:438:in `confine': undefined method `hosts=' for #<Class:0x000000035b2360> (NoMethodError) | |
| from /home/jantman/personal/git/puppetlabs-rabbitmq/spec/acceptance/rabbitmqadmin_spec.rb:51:in `block (2 levels) in <top (required)>' | |
| from /home/jantman/personal/git/puppetlabs-rabbitmq/vendor/ruby/1.9.1/gems/rspec-core-2.99.1/lib/rspec/core/example_group.rb:368:in `module_eval' | |
| from /home/jantman/personal/git/puppetlabs-rabbitmq/vendor/ruby/1.9.1/gems/rspec-core-2.99.1/lib/rspec/core/example_group.rb:368:in `subclass' | |
| from /home/jantman/personal/git/puppetlabs-rabbitmq/vendor/ruby/1.9.1/gems/rspec-core-2.99.1/lib/rspec/core/example_group.rb:342:in `describe' | |
| from /home/jantman/personal/git/puppetlabs-rabbitmq/spec/acceptance/rabbitmqadmin_spec.rb:47:in `block in <top (required)>' | |
| from /home/jantman/personal/git/puppetlabs-rabbitmq/vendor/ruby/1.9.1/gems/rspec-core |
I feel like I must be missing something here.
| # This is a COMPLETELY UNTESTED code sample, written off the top of my head. Consider it pseudocode. | |
| # It also needs more error checking; BigSuds *should* raise exceptions for any problem. | |
| import re | |
| import bigsuds as pc | |
| # INPUTS | |
| vip_name = 'myvip' | |
| new_pool_name = 'bluepool' # the pool to send traffic to |
| #!/usr/bin/env python | |
| """ | |
| Process URL for intersphinx targets and emit html or text | |
| originally retrieved from: | |
| https://gist.github.com/gmr/11359058 | |
| fixed for python3 and pep8 compliance by jantman | |
| """ |
| #!/usr/bin/env groovy | |
| // internal/private shared library; not terribly important to the functionality | |
| @Library('re-pipeline-library@master') _ | |
| node { | |
| deleteDir() | |
| checkout scm | |
| stash name: 'configs', includes: '*.yml, templates/*.html.j2' |
| #!/usr/bin/perl -T | |
| # | |
| # ========================================================================== | |
| # | |
| # HEAVILY HACKED-UP VERSION OF zmeventnotification.pl from | |
| # https://github.com/pliablepixels/zmeventserver/blob/master/zmeventnotification.pl | |
| # as of b31b08f | |
| # | |
| # Modified to just execute a system() shell command and pass it the EventId, MonitorId and Cause. | |
| # The command is run with "&" appended to background it and return control to Perl so we don't |