Created
October 19, 2012 14:53
-
-
Save Yggdrasil/3918632 to your computer and use it in GitHub Desktop.
Puppet class to manage a swapfile on a node
This file contains 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::swap | |
# | |
# This class manages swapspace on a node. | |
# | |
# Parameters: | |
# - $ensure Allows creation or removal of swapspace and the corresponding file. | |
# - $swapfile Defaults to /mnt which is a fast ephemeral filesystem on EC2 instances. | |
# This keeps performance reasonable while avoiding I/O charges on EBS. | |
# - $swapfilesize Size of the swapfile in MB. Defaults to memory size, but see Requires. | |
# | |
# Todo: | |
# Manage /etc/fstab | |
# | |
# Actions: | |
# Creates and mounts a swapfile. | |
# Umounts and removes a swapfile. | |
# | |
# Requires: | |
# memorysizeinbytes fact - See: | |
# https://blog.kumina.nl/2011/03/facter-facts-for-memory-in-bytes/ | |
# | |
# Sample Usage: | |
# class { 'base::swap': | |
# ensure => present, | |
# } | |
# | |
# class { 'base::swap': | |
# ensure => absent, | |
# } | |
# | |
# If you have the swapsizeinbytes fact (see Requires), you could also do: | |
# if $::swapsizeinbytes == 0 { | |
# include base::swap | |
# } | |
# | |
class base::swap( | |
$ensure = 'present', | |
$swapfile = '/mnt/swap.1', # Where to create the swapfile. | |
$swapfilesize = $::memorysizeinbytes/1000000 # Size in MB. Defaults to memory size. | |
) { | |
if $ensure == 'present' { | |
exec { 'Create swap file': | |
command => "/bin/dd if=/dev/zero of=${swapfile} bs=1M count=${swapfilesize}", | |
creates => $swapfile, | |
} | |
exec { 'Attach swap file': | |
command => "/sbin/mkswap ${swapfile} && /sbin/swapon ${swapfile}", | |
require => Exec['Create swap file'], | |
unless => "/sbin/swapon -s | grep ${swapfile}", | |
} | |
} | |
elsif $ensure == 'absent' { | |
exec { 'Detach swap file': | |
command => "/sbin/swapoff ${swapfile}", | |
onlyif => "/sbin/swapon -s | grep ${swapfile}", | |
} | |
file { $swapfile: | |
ensure => absent, | |
require => Exec['Detach swap file'], | |
} | |
} | |
} |
@gotpredictions thanks... but can you click 'Fork' here and then paste your updated version so it has better formatting?
I cleaned it up and posted it here: https://gist.github.com/philfreo/6576492
This is still a super-high google result for "puppet swap" so I thought I'd link that I made gist into a module:
https://forge.puppetlabs.com/petems/swap_file 😄
This creates a world-readable swapfile, which would allow any local user to read swapped-out memory.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I made a few changes to this to convert it from class to type, which allows to manage multiple swap file and also manage fstab:
$swapsize = $ ::memorysize_mb
$swapsizes = split("$ {swapsize}",'[.]')
``
define gnana::swap (
$ensure = 'present',
$swapfile = $name,
) {
$swapfilesize = $swapsizes[0]
file_line { "swap_fstab_line_${swapfile}":
ensure => $ensure,
line => "${swapfile} swap swap defaults 0 0",
path => "/etc/fstab",
match => "${swapfile}",
}
if $ensure == 'present' {
exec { 'Create swap file':
command => "/bin/dd if=/dev/zero of=${swapfile} bs=1M count=${swapfilesize}",
creates => $swapfile,
}
} elsif $ensure == 'absent' {
exec { 'Detach swap file':
command => "/sbin/swapoff ${swapfile}",
onlyif => "/sbin/swapon -s | grep ${swapfile}",
}
}
}
``