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
| http://musicbrainz.org/edit/17714635 | |
| <edit id="17714635" type="edit-release"> | |
| <release id="aa0d20be-397f-486c-a520-fa0a7e31be1e"> | |
| <old> | |
| <packaging/> | |
| </old> | |
| <new> | |
| <packaging>Slim Jewel Case</packaging> | |
| </new> |
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
| auto lo | |
| iface lo inet loopback | |
| auto eth0 | |
| iface eth0 inet dhcp | |
| auto br100 | |
| iface br100 inet static | |
| bridge_ports eth1 | |
| bridge_stp off |
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
| # source.pp | |
| # add an apt source | |
| define apt::source( | |
| $ensure = present, | |
| $location = '', | |
| $release = $lsbdistcodename, | |
| $repos = 'main', | |
| $include_src = true, | |
| $required_packages = false, |
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
| define nginx_server::site($ensure = 'enabled', $content = '') { | |
| if $content { | |
| file { "/etc/nginx/sites-available/$name": | |
| ensure => $ensure ? { | |
| 'enabled' => 'file', | |
| 'disabled' => 'file', | |
| 'present' => 'file', | |
| 'absent' => 'absent', | |
| }, | |
| content => $content, |
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
| class nginx_server { | |
| package { 'nginx': } | |
| service { 'nginx': | |
| provider => debian, | |
| enable => true, | |
| ensure => running, | |
| } | |
| Package['nginx'] -> Service['nginx'] | |
| file { '/etc/nginx/sites-available': |
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
| Jun 8 18:45:58 puppet puppet-master[14022]: Could not resolve 192.168.0.102: no name for 192.168.0.102 | |
| Jun 8 18:45:58 puppet puppet-master[14022]: Denying access: Forbidden request: 192.168.0.102(192.168.0.102) access to /catalog/puppet-test [find] at line 98 | |
| Jun 8 18:45:58 puppet puppet-master[14022]: Forbidden request: 192.168.0.102(192.168.0.102) access to /catalog/puppet-test [find] at line 98 |
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
| |\__/| | |
| ( ^_^).. |
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 $osfamily { | |
| } else { | |
| case $operatingsystem { | |
| 'Ubuntu': { | |
| $osfamily = 'Debian' | |
| } | |
| 'Scientific': { | |
| $osfamily = 'RedHat' | |
| } | |
| default: { |
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
| class base_server(...) { | |
| anchor { 'base_server::start': } | |
| class { 'base_server::volumes': | |
| require => Anchor['base_server::start'], | |
| before => Anchor['base_server::end'], | |
| } | |
| class { 'base_server::sshd': | |
| require => Anchor['base_server::start'], | |
| before => Anchor['base_server::end'], |
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: Calvin Walton <calvin.walton@kepstin.ca> | |
| Date: Mon, 23 Jul 2012 11:07:40 +0000 | |
| Subject: [PATCH] mdadm: Bump to latest upstream 3.2.5, fix udev rule path | |
| Both 3.2.4 and 3.2.5 are bugfix-only releases. | |
| Also make sure the udev rule is installed to /usr/$LIBDIR/udev. | |
| --- | |
| .../sys-fs/mdadm/{mdadm-3.2.3.exheres-0 => mdadm-3.2.5.exheres-0} | 2 ++ | |
| 1 file changed, 2 insertions(+) | |
| rename packages/sys-fs/mdadm/{mdadm-3.2.3.exheres-0 => mdadm-3.2.5.exheres-0} (93%) |