diff options
author | Renato Botelho <garga@FreeBSD.org> | 2015-01-16 17:42:30 -0200 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2015-01-16 17:42:30 -0200 |
commit | b1fef27fcf43570532212200babd504ac78d9d9c (patch) | |
tree | 47b874da19992d94fd6d7daa58ca0a119e43c1f8 /etc/inc | |
parent | 6aac31ef7657063ae36caf131ae4275388a7c158 (diff) | |
download | pfsense-b1fef27fcf43570532212200babd504ac78d9d9c.zip pfsense-b1fef27fcf43570532212200babd504ac78d9d9c.tar.gz |
Set $arch accordingly to release
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/globals.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/globals.inc b/etc/inc/globals.inc index ad15013..d14eb53 100644 --- a/etc/inc/globals.inc +++ b/etc/inc/globals.inc @@ -99,7 +99,7 @@ $tcpflags = array("syn", "ack", "fin", "rst", "psh", "urg", "ece", "cwr"); if(file_exists("/etc/platform")) { $arch = php_uname("m"); /* Do not remove this, it is not needed for the snapshots URL but is needed later for the -RELEASE/stable URLs */ - //$arch = ($arch == "i386") ? "" : '/' . $arch; + $arch = ($arch == "i386") ? "" : '/' . $arch; /* Full installs and NanoBSD use the same update directory and manifest in 2.x */ $g['update_url']="https://updates.pfsense.org/_updaters{$arch}"; |