blob: 8861d1fe055389fb5946b8074631bb0495f7b000 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class gitmirror {
mga_common::local_script { 'on-the-pull':
content => template('gitmirror/on-the-pull'),
}
file { '/etc/init.d/on-the-pull':
content => template('gitmirror/on-the-pull.init'),
mode => '0755',
}
mga_common::local_script { 'gitmirror-sync-metadata':
content => template('gitmirror/rsync-metadata.sh'),
}
}
|