ssh 111.111.111.111 -l root
sudo /usr/sbin/groupadd wheel
| [defaults] | |
| diff = -p -U 8 | |
| qdiff = -p -U 8 | |
| qnew = -U | |
| qseries = -s | |
| [paths] | |
| fx-team = ssh://hg.mozilla.org/integration/fx-team/ | |
| mozilla-central = ssh://hg.mozilla.org/mozilla-central/ | |
| m-c = ssh://hg.mozilla.org/mozilla-central/ |
| upstream gunicorn_frontends { | |
| # We define the binding of the gunicorn web server | |
| server 127.0.0.1:8000; | |
| } | |
| # we need to redirect www since browserid thinks www and non-www are different | |
| server { | |
| listen 80; | |
| server_name www.yourdomain.com; | |
| rewrite ^ http://yourdomain.com$uri permanent; |
| 'use strict'; | |
| var f = void 0, | |
| k = null; | |
| function aa() { | |
| return function() {} | |
| } | |
| function ca(a) { | |
| return function(b) { | |
| this[a] = b | |
| } |
| diff --git a/toolkit/components/telemetry/TelemetryPing.js b/toolkit/components/telemetry/TelemetryPing.js | |
| --- a/toolkit/components/telemetry/TelemetryPing.js | |
| +++ b/toolkit/components/telemetry/TelemetryPing.js | |
| @@ -138,16 +138,17 @@ function getMetadata(reason) { | |
| let ret = { | |
| reason: reason, | |
| OS: ai.OS, | |
| appID: ai.ID, | |
| appVersion: ai.version, | |
| appName: ai.name, |
| #!/bin/bash | |
| # $Author: Mihai Sucan <mihai.sucan@gmail.com>$ | |
| # $Date: 2011-05-02 21:10:35 $ | |
| # usage: | |
| # moztests -hud | |
| # runs the HUDService tests | |
| # moztests -ws | |
| # runs the Workspace tests |
| # This file specifies the build flags for Firefox. You can use it by adding: | |
| # . $topsrcdir/browser/config/mozconfig | |
| # to the top of your mozconfig file. | |
| # export MOZ_DEBUG_SYMBOLS=1 | |
| export CFLAGS="-gdwarf-2" | |
| export CXXFLAGS="-gdwarf-2" | |
| ac_add_options --enable-application=browser | |
| ac_add_options --enable-optimize |