1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
class drupal::makefiles {
# Drupal 6 makefile
file { "/usr/local/share/drupal/drupal6.make":
ensure => absent,
owner => root,
group => root,
mode => 644,
source => "puppet:///modules/drupal/drupal6.make",
require => File['/usr/local/share/drupal'],
}
# Drupal 7 makefile
file { "/usr/local/share/drupal/drupal7.make":
ensure => present,
owner => root,
group => root,
mode => 644,
source => "puppet:///modules/drupal/drupal7.make",
require => File['/usr/local/share/drupal'],
}
# Drupal 6 theme makefile
file { "/usr/local/share/drupal/themes6.make":
ensure => absent,
owner => root,
group => root,
mode => 644,
source => "puppet:///modules/drupal/themes6.make",
require => File['/usr/local/share/drupal'],
}
# Drupal 7 theme makefile
file { "/usr/local/share/drupal/themes7.make":
ensure => present,
owner => root,
group => root,
mode => 644,
source => "puppet:///modules/drupal/themes7.make",
require => File['/usr/local/share/drupal'],
}
cron { "drupal-make-6":
command => "/usr/local/bin/drupal make 6",
user => root,
# Run once a week to ensure the server has all dependencies
weekday => 4,
hour => "02",
minute => "30",
ensure => absent,
require => File['/usr/local/sbin/drupal',
'/usr/local/share/drupal/drupal6.make',
'/usr/local/share/drupal/themes6.make'],
}
cron { "drupal-make-7":
command => "/usr/local/bin/drupal make 7",
user => root,
# Run once a week to ensure the server has all dependencies
weekday => 4,
hour => "02",
minute => "30",
ensure => absent,
require => File['/usr/local/sbin/drupal',
'/usr/local/share/drupal/drupal7.make',
'/usr/local/share/drupal/themes7.make'],
}
}
|