From gerv at mozilla.org Mon May 2 14:10:51 2016 From: gerv at mozilla.org (Gervase Markham) Date: Mon, 2 May 2016 15:10:51 +0100 Subject: Meeting notes for April In-Reply-To: References: <1bKdnThYpNCFrL_KnZ2dnUU7-I3NnZ2d@mozilla.org> Message-ID: On 30/04/16 22:18, David Lawrence wrote: > The issue is that, as I understand it, Mozilla is downsizing on the > amount of VCS systems it has to maintain. So IT is trying to > decommission the internal git server and is not really interested in > putting another one in its place and maintain that instead (gitlab). > So if we move to github, we have a stable place to host the upstream > Bugzilla as well as BMO itself. >From my perspective (others may disagree) it's not impossible that we host it another Git-hosting site and do a read-only mirror on Github (for visibility), if sufficient contributing developers object on principle to Github and can agree on an alternative site with a reasonable feature set. However, given our limited resources, I don't believe self-hosting would be a good use of them. Gerv _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From emmanuel at seyman.fr Mon May 2 15:36:32 2016 From: emmanuel at seyman.fr (Emmanuel Seyman) Date: Mon, 2 May 2016 17:36:32 +0200 Subject: Meeting notes for April In-Reply-To: References: <1bKdnThYpNCFrL_KnZ2dnUU7-I3NnZ2d@mozilla.org> Message-ID: <20160502153632.GA2335@orient> * Gervase Markham [02/05/2016 15:10] : > > From my perspective (others may disagree) it's not impossible that we > host it another Git-hosting site and do a read-only mirror on Github > (for visibility), if sufficient contributing developers object on > principle to Github and can agree on an alternative site with a > reasonable feature set. FYI, the terms of service you have to agree to in order to create an account in github are here: https://help.github.com/articles/github-terms-of-service/ And the privacy policy is here: https://help.github.com/articles/github-privacy-policy/ > However, given our limited resources, I don't > believe self-hosting would be a good use of them. A while back, there was talk of being hosted by the Eclipse Foundation. Would they be willing to maintain a git system (assuming they don't already do that)? Emmanuel _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From dylan at mozilla.com Fri May 13 02:28:54 2016 From: dylan at mozilla.com (Dylan Hardison) Date: Thu, 12 May 2016 22:28:54 -0400 Subject: Early Draft of Bugzilla Dev Setup Message-ID: This post has been rattling around in my head for a bit. Eventually it needs to end up in docs. http://dylanwh.tumblr.com/post/144277013247/developing-bugzilla-with-plackup-and-cpanminus From jochen.wiedmann at gmail.com Fri May 13 11:02:50 2016 From: jochen.wiedmann at gmail.com (Jochen Wiedmann) Date: Fri, 13 May 2016 13:02:50 +0200 Subject: Early Draft of Bugzilla Dev Setup In-Reply-To: References: Message-ID: On Fri, May 13, 2016 at 4:28 AM, Dylan Hardison wrote: > This post has been rattling around in my head for a bit. > Eventually it needs to end up in docs. > > http://dylanwh.tumblr.com/post/144277013247/developing-bugzilla-with-plackup-and-cpanminus > - > To view or change your list settings, click here: > I might be able to fill the CentOS section. -- The next time you hear: "Don't reinvent the wheel!" http://www.keystonedevelopment.co.uk/wp-content/uploads/2014/10/evolution-of-the-wheel-300x85.jpg From gerv at mozilla.org Fri May 13 13:30:27 2016 From: gerv at mozilla.org (Gervase Markham) Date: Fri, 13 May 2016 14:30:27 +0100 Subject: Early Draft of Bugzilla Dev Setup In-Reply-To: References: Message-ID: On 13/05/16 03:28, Dylan Hardison wrote: > This post has been rattling around in my head for a bit. > Eventually it needs to end up in docs. > > http://dylanwh.tumblr.com/post/144277013247/developing-bugzilla-with-plackup-and-cpanminus Awesome! How can we make it even simpler? Ideas: * Add a "--dev" flag to checksetup.pl which does the following: ** Implies "--cpanm" ** implies SQlite, and so requires checksetup to be run only once ** Defaults login name to unix username ** defaults password to login name ** Gets realname and email from Git identity, if set, otherwise realname from /etc/passwd ** Tells you all this * Add a ./bugzilla script to the root dir which does perl -Ilocal/lib/perl5 bin/plackup -R . app.psgi and, if not already true, auto-edits the params to have the right urlbase. It might even auto-start a browser on the URL. So then to install and run Bugzilla, you do: $ sudo apt-get install git perl-modules build-essential cpanminus $ git clone https://github.com/bugzilla/bugzilla $ cd bugzilla $ ./checksetup.pl --dev $ ./bugzilla Gerv _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From dlawrence at mozilla.com Fri May 13 13:42:10 2016 From: dlawrence at mozilla.com (David Lawrence) Date: Fri, 13 May 2016 09:42:10 -0400 Subject: Early Draft of Bugzilla Dev Setup In-Reply-To: References: Message-ID: <8958a7e0-faa2-3a76-41b3-d344086be03b@mozilla.com> Using Ubuntu 16.04 LTS (Docker) > Firstly, we need some system dependencies: > > Ubuntu users: sudo apt-get install git perl-modules > build-essential cpanminus Ubuntu users: $ sudo apt-get update $ sudo apt-get install git perl-modules build-essential cpanminus \ libssl-dev libexpat1-dev > CentOS/RPM users: TODO > > A checkout of bugzilla is required, and everything we do will be from > that directory. > > git clone https://github.com/bugzilla/bugzilla > cd bugzilla > > Next, we can run checksetup.pl with its fancy new ?cpanm flag to > install all our dependencies into local directory. Note that we > do not need to be root for any of these commands, and nothing > (from this point on) needs to be installed to the system. > > perl checksetup.pl --cpanm ! Installing the dependencies failed: Module 'Net::SMTP::SSL' is not installed, Module 'SOAP::Lite' is not installed, Module 'XMLRPC::Lite' is not installed, Module 'XML::Twig' is not installed ! Bailing out the installation for Bugzilla-5.1. Added libssl-dev above to fix Net::SMTP::SSL build issue. Added libexpat1-dev above to fix SOAP::Lite, XMLRPC::Lite, and XML::Twig build issues. > If all goes well, that should complete with a message saying you > need to edit localconfig and re-run checksetup. If you?re fine just > using SQLite, you do not need to edit localconfig. Just re-run > checksetup.pl, as below: > > perl checksetup.pl > > The above will prompt you for an email, username, realname and > password. After you provide those details, it will configure the > database. > > Now we can run a development server, with the following perl command > below: > > perl -Ilocal/lib/perl5 bin/plackup -R . app.psgi Change to: perl -Ilocal/lib/perl5 local/bin/plackup -R . app.psgi > This will start an http on http://localhost:5000. > > Navigate to it, and login using the email/password you used above. > > Bugzilla will direct you to set the urlbase ? which you can set > to the same ?http://localhost:5000? above. The site seems to work fine. But the plack output says it kills the server and restarts after each page load. Is this normal? Killing the existing server (pid:688) Successfully killed! Restarting the new server process. HTTP::Server::PSGI: Accepting connections at http://0:5000/ 10.211.55.2 - - [13/May/2016:13:40:35 +0000] "POST /process_bug.cgi HTTP/1.1" 200 7688 "http://docker:5000/show_bug.cgi?id=1" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:49.0) Gecko/20100101 Firefox/49.0" 10.211.55.2 - - [13/May/2016:13:40:35 +0000] "GET /data/assets/51af664f3910b417cf7544987d29336d.css HTTP/1.1" 200 80589 "http://docker:5000/process_bug.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:49.0) Gecko/20100101 Firefox/49.0" 10.211.55.2 - - [13/May/2016:13:40:35 +0000] "GET /data/assets/aae018547291cb399f8ae4d70aa29abc.js HTTP/1.1" 200 488706 "http://docker:5000/process_bug.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:49.0) Gecko/20100101 Firefox/49.0" 10.211.55.2 - - [13/May/2016:13:40:35 +0000] "GET /data/assets/bea14174a90e472c2f5105b100c45963.js HTTP/1.1" 200 48008 "http://docker:5000/process_bug.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:49.0) Gecko/20100101 Firefox/49.0" -- /bugzilla/data/db/bugs updated. Killing the existing server (pid:689) Successfully killed! Restarting the new server process. HTTP::Server::PSGI: Accepting connections at http://0:5000/ dkl On 5/12/16 10:28 PM, Dylan Hardison wrote: > This post has been rattling around in my head for a bit. > Eventually it needs to end up in docs. > > http://dylanwh.tumblr.com/post/144277013247/developing-bugzilla-with-plackup-and-cpanminus > - > To view or change your list settings, click here: > > -- David Lawrence dkl at mozilla.com bugzilla.mozilla.org From dylan at mozilla.com Fri May 13 14:27:55 2016 From: dylan at mozilla.com (Dylan Hardison) Date: Fri, 13 May 2016 10:27:55 -0400 Subject: Early Draft of Bugzilla Dev Setup In-Reply-To: <8958a7e0-faa2-3a76-41b3-d344086be03b@mozilla.com> References: <8958a7e0-faa2-3a76-41b3-d344086be03b@mozilla.com> Message-ID: I've included those fixes in the current post. Thanks dkl! In particular the restarting is because of the -R ., which means it starts when any files change in the root. Obviously that is wrong, so I've updated the list. To work 100% of the time I'd need to make it watch each .cgi.. and this is turning into magic incantation land, so I've filed https://bugzilla.mozilla.org/show_bug.cgi?id=1272673 to make this simple. On Fri, May 13, 2016 at 9:42 AM, David Lawrence wrote: > Using Ubuntu 16.04 LTS (Docker) > >> Firstly, we need some system dependencies: >> >> Ubuntu users: sudo apt-get install git perl-modules >> build-essential cpanminus > > Ubuntu users: > $ sudo apt-get update > $ sudo apt-get install git perl-modules build-essential cpanminus \ > libssl-dev libexpat1-dev > >> CentOS/RPM users: TODO >> >> A checkout of bugzilla is required, and everything we do will be from >> that directory. >> >> git clone https://github.com/bugzilla/bugzilla >> cd bugzilla >> >> Next, we can run checksetup.pl with its fancy new ?cpanm flag to >> install all our dependencies into local directory. Note that we >> do not need to be root for any of these commands, and nothing >> (from this point on) needs to be installed to the system. >> >> perl checksetup.pl --cpanm > > ! Installing the dependencies failed: Module 'Net::SMTP::SSL' is not > installed, Module 'SOAP::Lite' is not installed, Module 'XMLRPC::Lite' > is not installed, Module 'XML::Twig' is not installed > ! Bailing out the installation for Bugzilla-5.1. > > Added libssl-dev above to fix Net::SMTP::SSL build issue. > Added libexpat1-dev above to fix SOAP::Lite, XMLRPC::Lite, and XML::Twig > build issues. > >> If all goes well, that should complete with a message saying you >> need to edit localconfig and re-run checksetup. If you?re fine just >> using SQLite, you do not need to edit localconfig. Just re-run >> checksetup.pl, as below: >> >> perl checksetup.pl >> >> The above will prompt you for an email, username, realname and >> password. After you provide those details, it will configure the >> database. >> >> Now we can run a development server, with the following perl command >> below: >> >> perl -Ilocal/lib/perl5 bin/plackup -R . app.psgi > > Change to: > perl -Ilocal/lib/perl5 local/bin/plackup -R . app.psgi > >> This will start an http on http://localhost:5000. >> >> Navigate to it, and login using the email/password you used above. >> >> Bugzilla will direct you to set the urlbase ? which you can set >> to the same ?http://localhost:5000? above. > > The site seems to work fine. But the plack output says it kills the > server and restarts after each page load. Is this normal? > > Killing the existing server (pid:688) > Successfully killed! Restarting the new server process. > HTTP::Server::PSGI: Accepting connections at http://0:5000/ > 10.211.55.2 - - [13/May/2016:13:40:35 +0000] "POST /process_bug.cgi > HTTP/1.1" 200 7688 "http://docker:5000/show_bug.cgi?id=1" "Mozilla/5.0 > (Macintosh; Intel Mac OS X 10.11; rv:49.0) Gecko/20100101 Firefox/49.0" > 10.211.55.2 - - [13/May/2016:13:40:35 +0000] "GET > /data/assets/51af664f3910b417cf7544987d29336d.css HTTP/1.1" 200 80589 > "http://docker:5000/process_bug.cgi" "Mozilla/5.0 (Macintosh; Intel Mac > OS X 10.11; rv:49.0) Gecko/20100101 Firefox/49.0" > 10.211.55.2 - - [13/May/2016:13:40:35 +0000] "GET > /data/assets/aae018547291cb399f8ae4d70aa29abc.js HTTP/1.1" 200 488706 > "http://docker:5000/process_bug.cgi" "Mozilla/5.0 (Macintosh; Intel Mac > OS X 10.11; rv:49.0) Gecko/20100101 Firefox/49.0" > 10.211.55.2 - - [13/May/2016:13:40:35 +0000] "GET > /data/assets/bea14174a90e472c2f5105b100c45963.js HTTP/1.1" 200 48008 > "http://docker:5000/process_bug.cgi" "Mozilla/5.0 (Macintosh; Intel Mac > OS X 10.11; rv:49.0) Gecko/20100101 Firefox/49.0" > -- /bugzilla/data/db/bugs updated. > Killing the existing server (pid:689) > Successfully killed! Restarting the new server process. > HTTP::Server::PSGI: Accepting connections at http://0:5000/ > > dkl > > On 5/12/16 10:28 PM, Dylan Hardison wrote: >> This post has been rattling around in my head for a bit. >> Eventually it needs to end up in docs. >> >> http://dylanwh.tumblr.com/post/144277013247/developing-bugzilla-with-plackup-and-cpanminus >> - >> To view or change your list settings, click here: >> >> > > -- > David Lawrence > dkl at mozilla.com > bugzilla.mozilla.org > - > To view or change your list settings, click here: > From dylan at mozilla.com Fri May 13 14:33:24 2016 From: dylan at mozilla.com (Dylan Hardison) Date: Fri, 13 May 2016 10:33:24 -0400 Subject: Early Draft of Bugzilla Dev Setup In-Reply-To: References: Message-ID: On Fri, May 13, 2016 at 9:30 AM, Gervase Markham wrote: > On 13/05/16 03:28, Dylan Hardison wrote: >> This post has been rattling around in my head for a bit. >> Eventually it needs to end up in docs. >> >> http://dylanwh.tumblr.com/post/144277013247/developing-bugzilla-with-plackup-and-cpanminus > > Awesome! How can we make it even simpler? Ideas: In general I'm about avoiding magic incantations. Adding an automagical --dev flag might be too much. What we can definitely do is include a reasonable answers.txt file and have the instructions for running checksetup include that. perl checksetup.pl --cpanm contrib/devmode.txt a command to run the plackup with dev settings is good though, and I've filed a bug about that. The name will be something that implies "this is for development, you probably want something else in production". Meanwhile, making more defaults work -- when should we have a discussion about moving the perl modules under 'lib' as is common practice? :) If we did that "plackup -r" would find all the module changes for us. :) From gerv at mozilla.org Fri May 13 14:38:54 2016 From: gerv at mozilla.org (Gervase Markham) Date: Fri, 13 May 2016 15:38:54 +0100 Subject: Early Draft of Bugzilla Dev Setup In-Reply-To: References: Message-ID: On 13/05/16 15:33, Dylan Hardison wrote: > In general I'm about avoiding magic incantations. Adding an > automagical --dev flag might be too much. > What we can definitely do is include a reasonable answers.txt file and > have the instructions for running checksetup include that. > > perl checksetup.pl --cpanm contrib/devmode.txt The thing about that is that it can't be dynamic, and generate stuff from the environment. If it were less magical, what about the --dev flag causing checksetup.pl to _default_ the login/email/password etc. to the things I said, but still require a confirmation (Enter key) or for the value to be edited? Gerv From jefffearn at gmail.com Sun May 15 03:29:25 2016 From: jefffearn at gmail.com (Jeff Fearn) Date: Sun, 15 May 2016 13:29:25 +1000 Subject: Early Draft of Bugzilla Dev Setup In-Reply-To: References: Message-ID: <5737ED15.2000801@gmail.com> On 14/05/2016 12:33 AM, Dylan Hardison wrote: > On Fri, May 13, 2016 at 9:30 AM, Gervase Markham wrote: >> On 13/05/16 03:28, Dylan Hardison wrote: >>> This post has been rattling around in my head for a bit. >>> Eventually it needs to end up in docs. >>> >>> http://dylanwh.tumblr.com/post/144277013247/developing-bugzilla-with-plackup-and-cpanminus >> >> Awesome! How can we make it even simpler? Ideas: > > In general I'm about avoiding magic incantations. Adding an > automagical --dev flag might be too much. > What we can definitely do is include a reasonable answers.txt file and > have the instructions for running checksetup include that. > > perl checksetup.pl --cpanm contrib/devmode.txt > > a command to run the plackup with dev settings is good though, and > I've filed a bug about that. The name will be something that implies > "this is for development, you probably want something else in > production". > > Meanwhile, making more defaults work -- when should we have a > discussion about moving the perl modules under 'lib' as is common > practice? :) 10 years ago :) Would extensions move to lib/Extension/? > If we did that "plackup -r" would find all the module changes for us. :) Cheers, Jeff. From dylan at mozilla.com Sun May 15 20:19:11 2016 From: dylan at mozilla.com (Dylan Hardison) Date: Sun, 15 May 2016 16:19:11 -0400 Subject: Early Draft of Bugzilla Dev Setup In-Reply-To: <5737ED15.2000801@gmail.com> References: <5737ED15.2000801@gmail.com> Message-ID: On Sat, May 14, 2016 at 11:29 PM, Jeff Fearn wrote: > On 14/05/2016 12:33 AM, Dylan Hardison wrote: >> >> On Fri, May 13, 2016 at 9:30 AM, Gervase Markham wrote: >>> >>> On 13/05/16 03:28, Dylan Hardison wrote: >>>> >>>> This post has been rattling around in my head for a bit. >>>> Eventually it needs to end up in docs. >>>> >>>> >>>> http://dylanwh.tumblr.com/post/144277013247/developing-bugzilla-with-plackup-and-cpanminus >>> >>> >>> Awesome! How can we make it even simpler? Ideas: >> >> >> In general I'm about avoiding magic incantations. Adding an >> automagical --dev flag might be too much. >> What we can definitely do is include a reasonable answers.txt file and >> have the instructions for running checksetup include that. >> >> perl checksetup.pl --cpanm contrib/devmode.txt >> >> a command to run the plackup with dev settings is good though, and >> I've filed a bug about that. The name will be something that implies >> "this is for development, you probably want something else in >> production". >> >> Meanwhile, making more defaults work -- when should we have a >> discussion about moving the perl modules under 'lib' as is common >> practice? :) > > > 10 years ago :) Would extensions move to lib/Extension/? Maybe. If we wanted the namespaces to make sense we'd put them under Bugzilla/Extension/*... There are a few problems with extensions (look at Extension.pm) there are unneeded closures being created. Each extension gets its own hook in @INC, for instance. From gerv at mozilla.org Wed May 25 14:33:05 2016 From: gerv at mozilla.org (Gervase Markham) Date: Wed, 25 May 2016 15:33:05 +0100 Subject: Bugzilla Meeting for May Message-ID: Hi everyone, The next Bugzilla meeting will be today, Wednesday, at 21:00 UK time: http://arewemeetingyet.com/London/2016-05-25/21:00/Bugzilla%20Meeting https://wiki.mozilla.org/Bugzilla:Meetings has the agenda; feel free to add items. See you there :-) Gerv _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From gerv at mozilla.org Thu May 26 15:05:11 2016 From: gerv at mozilla.org (Gervase Markham) Date: Thu, 26 May 2016 16:05:11 +0100 Subject: Bugzilla Meeting for May In-Reply-To: References: Message-ID: On 25/05/16 15:33, Gervase Markham wrote: > The next Bugzilla meeting will be today, Wednesday, at 21:00 UK time: > > http://arewemeetingyet.com/London/2016-05-25/21:00/Bugzilla%20Meeting > > https://wiki.mozilla.org/Bugzilla:Meetings has the agenda; feel free to > add items. So how did it go? I don't see any notes in the Etherpad... :-( Gerv _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From dylan at mozilla.com Thu May 26 15:16:52 2016 From: dylan at mozilla.com (Dylan Hardison) Date: Thu, 26 May 2016 11:16:52 -0400 Subject: Bugzilla Meeting for May In-Reply-To: References: Message-ID: dkl put them on the wiki -- I need to add notes for my points. On Thu, May 26, 2016 at 11:05 AM, Gervase Markham wrote: > On 25/05/16 15:33, Gervase Markham wrote: >> The next Bugzilla meeting will be today, Wednesday, at 21:00 UK time: >> >> http://arewemeetingyet.com/London/2016-05-25/21:00/Bugzilla%20Meeting >> >> https://wiki.mozilla.org/Bugzilla:Meetings has the agenda; feel free to >> add items. > > So how did it go? I don't see any notes in the Etherpad... :-( > > Gerv > > > _______________________________________________ > dev-apps-bugzilla mailing list > dev-apps-bugzilla at lists.mozilla.org > https://lists.mozilla.org/listinfo/dev-apps-bugzilla > - > To view or change your list settings, click here: > From denis.roy at eclipse.org Thu May 26 15:25:37 2016 From: denis.roy at eclipse.org (Denis Roy) Date: Thu, 26 May 2016 11:25:37 -0400 Subject: Bugzilla Meeting for May In-Reply-To: References: Message-ID: <57471571.1050000@eclipse.org> My apologies for going silent and missing the meetings. $DAY_JOB is a full-time one. A while ago I committed a vserver for bugs.bugzilla.org on our infrastructure. We've been moving most of our project vservers onto Google Cloud (GCP) so it makes no sense for us to maintain such infrastructure for a non-Eclipse project. But the Eclipse Foundation is willing to spin up and support a vserver on the GCP. If the Bugzilla project wants a Google Linux VM, please let me know which OS you'd prefer, and I'll set that up right away. https://cloud.google.com/compute/docs/images#os-compute-support Denis On 05/26/2016 11:16 AM, Dylan Hardison wrote: > dkl put them on the wiki -- I need to add notes for my points. > > On Thu, May 26, 2016 at 11:05 AM, Gervase Markham wrote: >> On 25/05/16 15:33, Gervase Markham wrote: >>> The next Bugzilla meeting will be today, Wednesday, at 21:00 UK time: >>> >>> http://arewemeetingyet.com/London/2016-05-25/21:00/Bugzilla%20Meeting >>> >>> https://wiki.mozilla.org/Bugzilla:Meetings has the agenda; feel free to >>> add items. >> >> So how did it go? I don't see any notes in the Etherpad... :-( >> >> Gerv >> >> >> _______________________________________________ >> dev-apps-bugzilla mailing list >> dev-apps-bugzilla at lists.mozilla.org >> https://lists.mozilla.org/listinfo/dev-apps-bugzilla >> - >> To view or change your list settings, click here: >> > - > To view or change your list settings, click here: > > From gerv at mozilla.org Thu May 26 15:46:55 2016 From: gerv at mozilla.org (Gervase Markham) Date: Thu, 26 May 2016 16:46:55 +0100 Subject: Bugzilla Meeting for May In-Reply-To: References: Message-ID: <16614e1b-5e49-14b2-3d67-56a29f87f622@mozilla.org> On 26/05/16 16:16, Dylan Hardison wrote: > dkl put them on the wiki -- I need to add notes for my points. Well, https://wiki.mozilla.org/Bugzilla:Meetings:2016-05-25 is blank, so wherever he put them, he needs to move them there :-) Gerv From gerv at mozilla.org Thu May 26 15:47:43 2016 From: gerv at mozilla.org (Gervase Markham) Date: Thu, 26 May 2016 16:47:43 +0100 Subject: Bugzilla Meeting for May In-Reply-To: <57471571.1050000@eclipse.org> References: <57471571.1050000@eclipse.org> Message-ID: On 26/05/16 16:25, Denis Roy wrote: > If the Bugzilla project wants a Google Linux VM, please let me know > which OS you'd prefer, and I'll set that up right away. > > https://cloud.google.com/compute/docs/images#os-compute-support I think we do, but I suspect we were also hoping that the kind offer of a server also came with a kind offer of maintaining it. Can you clarify the situation on that point? :-) Gerv From denis.roy at eclipse.org Thu May 26 19:47:07 2016 From: denis.roy at eclipse.org (Denis Roy) Date: Thu, 26 May 2016 15:47:07 -0400 Subject: Bugzilla Meeting for May In-Reply-To: References: <57471571.1050000@eclipse.org> Message-ID: <574752BB.7080005@eclipse.org> On 05/26/2016 11:47 AM, Gervase Markham wrote: > On 26/05/16 16:25, Denis Roy wrote: >> If the Bugzilla project wants a Google Linux VM, please let me know >> which OS you'd prefer, and I'll set that up right away. >> >> https://cloud.google.com/compute/docs/images#os-compute-support > > I think we do, but I suspect we were also hoping that the kind offer of > a server also came with a kind offer of maintaining it. Can you clarify > the situation on that point? :-) I'm not sure what you're expecting in terms of maintenance. Perhaps the biggest aspect is backups (especially of the app data and MySQL). I'm not sure what our options are and what Bugzilla's policy is for storing bugzilla.org data on remote servers. We can certainly host the backups on our infra if that's OK with you. Denis