aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/init.pp
blob: 65b38b62e7c25ba8ca84873a6edc856ab8f15986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class buildsystem {
    # A script to copy on valstar the 2010.1 rpms built on jonund
    class sync20101 inherits base {
        $build_login = $buildsystem::iurt::user::login
        # TODO user iurt::user::homedir too
        mga-common::local_script { 'sync2010.1':
	        content => template('buildsystem/sync2010.1'),
        }
    }

    # a script to build 2010.1 packages. used on jonund
    class iurt20101 inherits base {
        $build_login = $buildsystem::iurt::user::login
        mga-common::local_script { 'iurt2010.1':
	        content => template('buildsystem/iurt2010.1'),
        }
    }
}