blob: 1c7a3bc147f11b966b1e8c27822db884eb21c6fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class buildsystem::scheduler {
# until ulri is splitted from main iurt rpm
include ssh::auth
include buildsystem::iurt::packages
include buildsystem::iurt::upload
include buildsystem::scheduler::var
$login = $buildsystem::scheduler::var::login
$homedir = $buildsystem::scheduler::var::homedir
buildsystem::sshuser { $login:
homedir => $homedir,
comment => 'System user used to schedule builds',
}
}
|