Commit 99822d34 authored by Luca Falavigna's avatar Luca Falavigna

Drop support for mips, mipsel and powerpc

parent a492fd83
......@@ -11,7 +11,8 @@ Some **debomatic-webui** instances are already running over:
* http://debomatic-arm64.debian.net
* http://debomatic-armel.debian.net
* http://debomatic-armhf.debian.net
* http://debomatic-powerpc.debian.net
* http://debomatic-mips64el.debian.net
* http://debomatic-ppc64el.debian.net
* http://debomatic-s390x.debian.net
## Requirements
......
###
debomatic-webui mips configuration
###
architecture = "mips"
port = 8005
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
###
debomatic-webui mipsel configuration
###
architecture = "mipsel"
port = 8006
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
###
debomatic-webui powerpc configuration
###
architecture = "powerpc"
port = 8007
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
......@@ -24,7 +24,7 @@
<a style="color: #eee; font-size: 15px; padding: 15px 10px;" href="#" class="dropdown-toggle" data-toggle="dropdown"><%= web.debomatic.architecture %> <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<script>
var all_services = ['amd64', 'i386', 'arm64', 'armel', 'armhf', 'mips64el', 'mips', 'mipsel', 'powerpc', 'ppc64el', 's390x', 'staging'];
var all_services = ['amd64', 'i386', 'arm64', 'armel', 'armhf', 'mips64el', 'ppc64el', 's390x', 'staging'];
for (var i = 0; i < all_services.length; i++) {
var arch = all_services[i];
var host = "debomatic-" + arch + '.debian.net';
......
......@@ -45,27 +45,6 @@ subdomains["debomatic-mips64el.debian.net"] = new httpProxy.createProxyServer({
}
})
subdomains["debomatic-mips.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8005
}
})
subdomains["debomatic-mipsel.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8006
}
})
subdomains["debomatic-powerpc.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8007
}
})
subdomains["debomatic-ppc64el.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment