aboutsummaryrefslogtreecommitdiffstats
path: root/modules/gitmirror/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gitmirror/manifests')
-rw-r--r--modules/gitmirror/manifests/init.pp48
1 files changed, 48 insertions, 0 deletions
diff --git a/modules/gitmirror/manifests/init.pp b/modules/gitmirror/manifests/init.pp
new file mode 100644
index 00000000..c1dcd894
--- /dev/null
+++ b/modules/gitmirror/manifests/init.pp
@@ -0,0 +1,48 @@
+class gitmirror {
+
+ $git_dir = '/git'
+ $git_login = 'git'
+ $git_homedir = "/var/lib/${git_login}"
+ $git_rundir = '/var/run/on-the-pull'
+
+ group { $git_login:
+ ensure => present,
+ }
+
+ user { $git_login:
+ ensure => present,
+ home => $git_homedir,
+ }
+
+ file { $git_dir:
+ ensure => directory,
+ owner => $git_login,
+ group => $git_login,
+ mode => '0755',
+ }
+
+ file { $git_rundir:
+ ensure => directory,
+ mode => '0755',
+ }
+
+ mga_common::local_script { 'on-the-pull':
+ source => 'puppet:///modules/gitmirror/on-the-pull',
+ }
+
+ file { '/etc/init.d/on-the-pull':
+ source => 'puppet:///modules/gitmirror/on-the-pull.init',
+ mode => '0755',
+ }
+
+ service { 'on-the-pull':
+ require => [
+ Mga_common::Local_script["on-the-pull"],
+ File['/etc/init.d/on-the-pull'],
+ ],
+ }
+
+ mga_common::local_script { 'gitmirror-sync-metadata':
+ source => 'puppet:///modules/gitmirror/rsync-metadata.sh',
+ }
+}