system-config/modules/openstack_project/manifests/afsrelease.pp
Ian Wienand 6991905e52 Migrate AFS publishing to mirror-update.opendev.org
This follows-on from I62ae941e70c7d58e00bc663a50d52e79dfa5a684 to
remove the old publishing job from the afs server and enable live
publishing in the cron job on mirror-update.opendev.org.

Change-Id: Ib6cc094e6f02b513c5218264657cec9064fe867c
2020-02-11 16:14:43 +11:00

16 lines
452 B
Puppet

# Release afs volumes
class openstack_project::afsrelease (
) {
# NOTE(ianw) 2020-02 : migrated to mirror-update and deployed via ansible now
# https://review.opendev.org/706176
cron { 'release':
user => 'root',
minute => '*/5',
command => '/usr/local/bin/release-volumes >>/var/log/release/release.log 2>&1',
environment => 'PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin',
ensure => absent,
}
}