Merge "Symlink yaml2ical calendar folder to apache dir"

This commit is contained in:
Jenkins 2015-07-16 23:29:18 +00:00 committed by Gerrit Code Review
commit 5956ad58d9

View File

@ -149,6 +149,13 @@ class openstack_project::eavesdrop (
require => User['jenkins'],
}
file { '/srv/yaml2ical/calendars':
ensure => directory,
owner => 'jenkins',
group => 'jenkins',
require => File['/srv/yaml2ical'],
}
file { '/srv/meetbot-openstack/index.html':
ensure => link,
target => '/srv/yaml2ical/index.html',
@ -160,4 +167,10 @@ class openstack_project::eavesdrop (
target => '/srv/yaml2ical/irc-meetings.ical',
require => File['/srv/yaml2ical'],
}
file { '/srv/meetbot-openstack/calendars/':
ensure => link,
target => '/srv/yaml2ical/calendars/',
require => File['/srv/yaml2ical'],
}
}