aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/templates/youri/host.conf
diff options
context:
space:
mode:
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 -%>