diff options
author | Pietro Ferrari <pietro@riseup.net> | 2009-02-12 17:16:11 -0800 |
---|---|---|
committer | Pietro Ferrari <pietro@riseup.net> | 2009-02-12 17:16:11 -0800 |
commit | 04cc0e2b588f05292a09883dc8f129f6da1bb207 (patch) | |
tree | d750ad5f8eab4bf1280aa762a6d0a5713dc30fdb | |
parent | 21252b017007f43e21060cdd0a501d65752eea2a (diff) | |
download | puppet-virtual-04cc0e2b588f05292a09883dc8f129f6da1bb207.tar.gz puppet-virtual-04cc0e2b588f05292a09883dc8f129f6da1bb207.tar.bz2 |
the debian xen packages already have the fix.
-rw-r--r-- | manifests/xen.pp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/manifests/xen.pp b/manifests/xen.pp index 1507d94..88b8ef8 100644 --- a/manifests/xen.pp +++ b/manifests/xen.pp @@ -96,20 +96,6 @@ class xen::domain::debian inherits xen::domain::base { ensure => present, alias => "xen-linux-system"; } - - # fix '4gb seg fixup' - # http://wiki.xensource.com/xenwiki/XenFaq#head-e05786f1e0d6a833bc146a6096cab2d96f2b30ae - config_file { - "/etc/ld.so.conf.d/libc6-xen.conf": - content => "hwcap 0 nosegneg\n", - require => Package["xen-linux-system"], - notify => Exec["/sbin/ldconfig"]; - } - - exec { - "/sbin/ldconfig": - refreshonly => true; - } } |