aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/templates/youri/host.conf
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-10-20 00:03:40 +0300
committerThomas Backlund <tmb@mageia.org>2015-10-20 00:03:40 +0300
commit537a14a19d232672f15a41aa8b4e0423b2fb216e (patch)
tree01cdccef44da06300fbe57911966b78ee777afb3 /modules/buildsystem/templates/youri/host.conf
parenta0621b95e1cdd3c87ff7eb8e25884d27f3938e4b (diff)
downloadpuppet-537a14a19d232672f15a41aa8b4e0423b2fb216e.tar
puppet-537a14a19d232672f15a41aa8b4e0423b2fb216e.tar.gz
puppet-537a14a19d232672f15a41aa8b4e0423b2fb216e.tar.bz2
puppet-537a14a19d232672f15a41aa8b4e0423b2fb216e.tar.xz
puppet-537a14a19d232672f15a41aa8b4e0423b2fb216e.zip
lint fixes for buildsystem
Diffstat (limited to 'modules/buildsystem/templates/youri/host.conf')
-rw-r--r--modules/buildsystem/templates/youri/host.conf24
1 files changed, 12 insertions, 12 deletions
diff --git a/modules/buildsystem/templates/youri/host.conf b/modules/buildsystem/templates/youri/host.conf
index 35f4043b..559417e0 100644
--- a/modules/buildsystem/templates/youri/host.conf
+++ b/modules/buildsystem/templates/youri/host.conf
@@ -3,21 +3,21 @@
nodes = {}
nodes['src'] = scope.lookupvar('buildsystem::var::scheduler::build_src_node')
scope.lookupvar('buildsystem::var::scheduler::build_nodes').each{|arch,n|
- a = arch + '|noarch|src'
- nodes[a] = []
- n.each{|node|
- if aliases[node] != nil
- nodes[a] += [ aliases[node] ]
- else
- nodes[a] += [ node ]
- end
- }
+ a = arch + '|noarch|src'
+ nodes[a] = []
+ n.each{|node|
+ if aliases[node] != nil
+ nodes[a] += [ aliases[node] ]
+ else
+ nodes[a] += [ node ]
+ end
+ }
}
str = ''
nodes.keys.sort.each{|arch|
- nodes[arch].sort.uniq.each{|node|
- str += node + ' ' + arch + "\n"
- }
+ nodes[arch].sort.uniq.each{|node|
+ str += node + ' ' + arch + "\n"
+ }
}
-%>
<%= str -%>