Sophie

Sophie

distrib > Mandriva > current > i586 > media > contrib-release > by-pkgid > 6f257ce0fd9f602a316d49a4a7370002 > files > 653

puppet-0.25.4-1mdv2010.1.noarch.rpm

# $Id$

#service.setpath("../examples/root/etc/init.d")
#puppet.statefile("/tmp/puppetstate")
$path = "../examples/root/etc/configfile"
    path => "../examples/root/etc/init.d"


define files {
    file { "/tmp/yaytest":
        ensure => file,
        mode => 755
    }
    file { "/tmp/exists":
        checksum => md5
    }
}

define sleeper {
    file { $path:
        mode => 755
    }
    service { sleeper:
        path => "../examples/root/etc/init.d",
        running => 1
    }
}

files { }

sleeper {
    require => files["yay"],
    schedule => true
}