/srv/irclogs.ubuntu.com/2013/05/21/#ubuntu-server.txt

energizerThis is my first server. I just ran "sudo apt-get install apache2". Now when I navigate to localhost, I get "it works!" When I go to my host's IP from a different computer, I get nothing ("taking too long to respond".) What do I need to do?03:50
qman__apache listens on all addresses out of the box, and the firewall is accept-all out of the box too03:53
qman__so either you configured something to block it, or you're going through a router that's not set up right, etc03:53
energizerOh i didnt even think about the firewall. I had ufw enabled. Thanks!03:54
energizerI set up an apache server, put an episode in /var/www and now I'm downloading it from another computer.  Downloaded 39% in a few seconds, and hasnt made any progress for a long time. Its a 180MB file. Any suggestions.04:30
airtonixenergizer: use nginx instead?05:20
=== pug is now known as Guest90499
adam_gjamespage, https://code.launchpad.net/~gandelman-a/charms/precise/nova-compute/early_keystone/+merge/164836  one last bug fix to the bash charms before they get merged. hit this when i changed up ordering of relations in deployer config05:26
energizerHow do i get my index.html to list all of the files in /var/www ?05:49
rustxenergizer: you really want do that in html ?05:50
andolenergizer: If you want a directory listing the easiest is generally to not have any index.html, and make sure that your web server has its indexing option enabled.05:50
energizerSo if I jsut delete index.html, that will automatically happen?05:51
andolenergizer: That all depends on how your web server is configured.05:51
energizerI guess so! Thanks. Is there any reason not to do that? (Just making sure I understood rustx's comment correctly)05:54
greppyenergizer: it may expose files or directory structure that you don't want others to see.05:56
energizerok thanks05:57
rustxenergizer: well: You could use DirectoryIndex, but i advise you to configure your Allow from rules to be sure not to expose file directory structure to the whole world (as greppy said)06:01
energizerIs it correct that I'm only exposing /var/www and subfolders?06:04
energizerrustx if i want to make files available to friends, is this a reasonable and secure way to do it?06:06
rustxyep, could be06:08
rustxenergizer: you have 2 choices : either use Allow From rules, and match the exact IP your friend have at home (or any IP they use)06:08
rustxenergizer: this will make directory list avaiable only from the IPs you configure06:09
rustxenergizer: or, the second choice, more simple, would be to use a .htaccess and htpasswd to provide them a password without restriction on IPs to use ..06:09
rustxenergizer: the second choice can be simple if your friends don't have a static ip06:10
rustxenergizer: most of IPs provided by ISP can be dynamic, and in that case, the first choice is more complex06:10
energizerWhats the difference between these two methods? (http://bit.ly/13DFYdk)06:14
energizerrustx: That looks helpful-- thanks. In the Ubuntu community page (https://help.ubuntu.com/community/EnablingUseOfApacheHtaccessFiles), it recommends using the main server configuration file instead of htaccess files. If I want to try the 'recommended' way, is it the same procedure as .htaccess? Any ideas?06:26
rustxenergizer: let me check your links06:29
rustxenergizer: 2 sec06:29
energizerrustx thanks06:29
rustxenergizer: ok06:30
rustxenergizer: when using apache, you can create several virtualhosts06:30
rustxenergizer: if you only have one, you can password protect the default virtualhost (which is in /etc/apache2/sites-avaible/default) by using the following directives06:31
rustx.htaccess can be also used, but the simplier for you is the following06:31
rustxenergizer: http://pastebin.com/xMCyLg6r06:33
rustxon that way, each time apache will look to serve your default virtualhost, it will check the password file in /var/www/.htpasswd06:33
rustxthen, to create your user/pass in that file, you have to use the following command : htpasswd -cm youruser06:33
rustxthe shell  will ask for your password twice, and when it's ok, your directory will be protected06:34
rustxenergizer: if you need to add another account to that password file, just remove the 'c' option from htpasswd command (as c option is to create the file ...)06:34
rustxenergizer: to add friends, the command to use will be htpasswd -m myfrienduser06:34
rustxenergizer: is that clear enough to you ?06:34
energizerthanks. lemme give it a look-over06:35
rustxenergizer: in my pastebin, i just forgot the Option +DirectoryIndex06:35
rustxOptions +ExecCGI -MultiViews +SymLinksIfOwnerMatch +DirectoryIndex06:35
rustxit will work fine, trust me ;)06:35
rustxenergizer: of course, when you change your directory cofniguration, you need at least to reload apache06:37
rustxor restart ^ ^06:37
energizerrustx so by default i have this stuff (http://pastebin.com/4n4J4psw) in my sites-available/default. I'm supposed to replace it with your pastebin?06:38
rustxenergizer: exactly06:43
rustxenergizer: just the <Directory /var/ww> part to ... </Directory>06:44
energizerI'll give it a shot. Thank you!06:47
rustxenergizer: you're welcome06:50
energizerrustx you still here?07:18
rustxenergizer: yep07:20
rustxstill at work, so still there :)07:20
energizerrustx cool. When I restart apache, i get 'illegal option DirectoryIndex'07:22
rustxenergizer: yep, my bad/ Replace 'DirectoryIndex' by 'Index' and it will be fine07:23
rustxOptions Indexes is enough for what you want to do07:24
rustxwhich means directory listing, ..07:24
energizerrustx ok I restart apache successfully with '+Indexes'. Now when i try to access localhost, i get '500 local server error'07:27
rustxok07:28
rustxenergizer: do 'a2enmod rewrite '07:29
rustxhtpasswd needs rewrite mod to be enabled07:29
rustxyou can have all enabled mods thanks to : apache2ctl -M07:29
rustxi guess you missed the rewrite module activation to use htpasswd|htaccess07:29
rustxthen restart apache .. and it should work :)07:30
rustx3 time i say you this .. jejeje ..07:30
rustxbut i am also working on puppet stuff at the same time07:30
rustxsorry for the mistakes i forgot to fix before answering07:31
rustxenergizer: but this is making you having a good starting knowledge about apache2 :)07:31
rustxwhich is also great : the one that don't do mistake ... don't learn nothing :)07:32
energizerso i ran 'a2enmod rewrite' and restarted apache. same 500 error.07:33
rustxpaste me errors logs please ?07:36
rustxhooo .. dit you make the password file ?07:36
rustxhtppasswd -cm /var/www/.htpasswd energizer07:36
rustxsorry, htpasswd -cm /var/www/.htpasswd energizer07:36
rustxthis is the reason why : no .htpasswd file to read :)07:36
rustx500 errors sounds like no file to read for password ...07:37
rustxwe wil get it07:37
rustxyou make me reminds my apache knowledge. That makes long time I switched to nginx ..07:38
energizerrustx It works beautifully. I had put my password in the wrong folder.07:40
energizerrustx wait not so fast07:40
=== Guest97906 is now known as smokie
energizerrustx ya it works wonderfully.07:44
rustxenergizer: good then07:45
rustxenergizer: happy you could learn how to set htpasswd protection on apache ;)07:45
energizerrustx Thanks very much! I suppose I should ask-- what is the difference between your pastebin and the code in here: https://help.ubuntu.com/community/EnablingUseOfApacheHtaccessFiles07:47
rustxenergizer : the difference between your setup and ubuntu web page concerns particular directory into a main directory. In your case, your password protection was done on the main root document /var/www07:48
rustxenergizer: in apache, you can set different rules for each directory inside /var/www by putting a .htaccess file inside07:49
rustxeach time apache browse a directory inside /var/www, it will check if .htaccess rules exists, so that to apply those into the directory - or not ...07:49
rustxwe did a 'default conf', but if you need different rules for different directory, then you should use .htaccess file07:50
rustxenergizer: at the end, the .htaccess file overrides your default rule inside an apache directory .. :)07:50
rustxenergizer: this is the way apache works. But, having a file read inside each directory is not so good for performances. According to me, it is better to set all particular rules into your vhost configuration07:51
rustxenergizer: only depends what you need to do at the end07:51
rustxenergizer: is that clear enough ? for that explanation about .htaccess ?07:51
energizerThat is very good. Thank you very much!07:55
energizerrustx ^^07:55
rustxenergizer: you're welcome dude07:56
energizerrustx Last thing. I think that i could stream video from the server before i put up the password. It doesnt seem to work now. Did these settings disable that?08:08
rustxnope08:08
rustxhum, maybe because of the directory index08:09
rustxyou maybe can't list file, and read them in the server08:09
rustxthe server certainly ask you to download those ..08:09
rustxyou have to choose, or set a DirectoryMatch rules, so that not to index the directory that serves the files on the which one you want to go with streaming08:10
energizerrustx i want to double-check that i can do it without the index08:11
energizerrustx so now even without +Indexes streaming doesnt work08:18
rustxenergizer: brb08:29
energizerrustx np08:29
rustxenergizer: what are the options you are using at the end ?08:31
energizerrustx                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch +Indexes08:31
rustxenergizer: try with remove -Multiviews option ..08:34
rustxreload apache .. and streaming should work08:34
energizerrustx didnt work08:37
rustx:(08:37
energizermp3, mp4, avi -- none work08:37
energizerrustx i found this thread. bottom comment seems to solve it for him, but im not sure how to apply it here08:40
energizerrustx http://ubuntuforums.org/showthread.php?t=214291108:40
caribouDaviey: regarding the rsyslog SRU (bug: LP#1169740), I added a comment09:53
caribouDaviey: I'm not able to reproduce the race condition with the modified script09:53
Davieycaribou: It sounds like the test script never worked to identify the issue :)09:55
Davieycaribou: But, it also looks like it doesn't make the situation worse.09:55
caribouDaviey: that's my assumptio09:55
caribouDaviey: yeah, that's what I discussed with Adam, hence marking it verification-done09:56
SirTHi there, i have just set up ubunut server on a virtual machine, but when i boot into it i get to the command line instead of the GUI. I have tried to use apt-get install ubutnu desktop, but get a 403 Forbiddon error10:33
SirTcan anyone help?10:33
=== Solarra is now known as katsy
edenistby default, ubuntu server is CLI only10:38
edenistyou can install a desktop10:38
simosxSirT, Ubuntu Server comes by default with the command line.10:38
edenistwhat version of ubuntu server?10:38
edenistyou may be better off installing a desktop version of ubuntu if that is what you require. Every package that runs on server can be installed on Desktop version as well10:38
simosxedenist, do we recommend to use Zentyal for those who require an easier management experience?10:39
* RoyK recommends learning the commandline10:39
edenistSirT, if you are getting a 403 forbidden error, it sounds like your network hasn't been configured correctly during install. In which case, you wont be able to install any packages.10:41
SirTThank you for you help10:43
SirTi think it seems to be a firebox firewall issue10:43
SirTi will add an exception and let you know10:43
SirTIT was a firewall problem - :)10:52
edenistglad thats working now10:53
resnoits always the firewall11:10
Solarrastupid question: do you folks know a linux piece of software that provides a similar functionality to TVersity Media server?11:18
resnowhat do you want it to do?11:19
resnowhat is the "similar functionality" you want11:19
NafalloSolarra: something like minidlna?11:19
edenistthere's quite a few. google "linux DLNA server". Some I have used are fuppes, ps3mediaserver.....11:22
Solarrado those also support on the fly encoding?11:24
edenistthey do, but not all of them support it natively themselves. I believe most just use FFMPEG11:25
edenistor MPLAYER11:25
edenistmediatomb as well is another I have used, was a few years ago now though so I dont know if it is still maintained. I've never used on the fly encoding though.11:26
germanstudentI'm having problem mounting sshfs on Ubuntu 12.04 at startup. Does someone know a good tutorial or something?11:40
Madkisscheers11:54
Madkisshow do I set the DefaultTime2Retain global value for TGT storage volumes?11:54
SirTim tryin gto edit the interfaces file to make my ubuntu server static ip. i have opened and edited in nano - how can i save this? i have tried to change it in editor, but it says i do not have permissions.11:54
hXmSirT: press ctrl+o12:07
hXmif you dont have permissions you need open it with root privileges12:08
=== gary_poster is now known as gary_poster|away
ak5hi, how do I add repositories? according to google there is something called apt-add-repository but not for my 12.04 system12:14
zulyolanda:  https://code.launchpad.net/~zulcss/nova/noava-ftbfs-refresh/+merge/16465012:15
yolandahi zul12:15
yolandaok12:15
rbasakak5: http://stackoverflow.com/questions/13018626/add-apt-repository-not-found12:15
=== gary_poster|away is now known as gary_poster
=== Solarra is now known as Solarra_
ak5ty12:18
ak5although thats weird that one fix works for some another for others12:18
ak5the accepted answer didn't work for me12:18
ballockHello, guys :)12:39
ballockas advised I posted this authentication stuff to ubuntu-devel-discuss12:39
ballockhttps://lists.ubuntu.com/archives/ubuntu-devel-discuss/2013-May/014518.html12:39
ballockPerhaps I can get some of your attention?12:39
jcastroI skipped to the bottom. :)12:41
jcastroI've deployed a bunch of machines with auth too and remember doing a similar analysis12:41
jcastroballock: hey so I think the first step is to shove this all into a blueprint12:42
jcastroand then submit it for discussion at the next virtual UDS.12:43
ballockjcastro: you mentioned some of your analyses, were those published?12:44
jcastroyeah but it was around ubuntu 7.10ish12:44
jcastrolet me dig it up12:45
ballocksssd wasn't pretty much there yet12:45
jcastrooh this is way before12:45
ballockbut the rest should pretty match12:45
qman__samba 4 wasn't around either, and it's a real game changer12:45
ballockqman__: I wouldn't necessarily agree12:46
qman__for a pure linux environment I can see why you would not want to use it12:46
qman__but for cross-platform compatibility it's the obvious choice12:46
jcastroat the time I just used AD12:46
ballockIf you think that Microsoft is supposed to be the Directory server then perhaps so.12:47
qman__you don't need any microsoft servers to use it12:47
qman__it's just microsoft compatible12:47
ballockBut I wouldn't base my decision on something from that stable.12:47
ballockI know you can have a Samba4 DC now12:48
qman__it's not from that stable, it's a completely open source software12:48
jcastroplus remember you have like a year until the next LTS12:48
ballockI am aware of it.12:48
jcastroso, now's probably the time to talk about it12:48
ballockBut still Samba4 will need to follow Microsoft's footsteps12:49
ballockbecause that's their primary goal12:49
ballock- to create a Microsoft-compatible domain controller12:49
ballockand client support12:49
qman__yes, which will ensure continued cross compatibility in the future12:49
ballockIf Microsoft decides to change the protocol, Samba will again behind it.12:50
ballockOf course Microsoft12:50
ballock"fearing" the monopoly problems with EC or the US something12:50
qman__Microsoft isn't going to do anything to purposely break samba; they helped the samba guys get it working12:50
jcastroLast I checked all their specs were open and they were working with the Samba guys12:50
qman__at this point, microsoft is all for it12:51
qman__and they really don't stand to gain anything by doing a 18012:51
ballockwill "support" samba to dismiss the accusation of monopoly in this market.12:51
qman__it isn't about trust, it's about simple business sense12:51
qman__and even if they do, the current product will continue to work with all existing products12:51
ballockI do not think the Samba team managed to port all the AD management products like the Group Policy Editor12:52
ballockI mean, the mechanisms with RPC are there12:52
ballockbut you are supposed to manage it with Microsoft's products anyway12:53
ballockthere comes a licensing problem12:53
ballockaside from the patenting stuff12:53
ballocki.e. that Android tax you might have heard of12:53
ballockI wouldn't be shocked to hear Microsoft has a patent for CIFS or for its subset.12:54
ballockI admit I haven't checked how Samba4 client behaves in my environment.12:55
ballockI wish them the best.12:55
ballockBut as Microsoft is providing an LDAP and Kerberos interface to its directory, why not use that instead?12:55
ballockIt's an open standard and fits for a more generic case -12:56
ballocknot only for AD.12:56
rbasakballock: thanks for sending that email, and for doing all the work and research behind it.13:03
jamespagehallyn, does this commit for qemu have SRU potential?  http://lists.nongnu.org/archive/html/qemu-stable/2013-05/msg00066.html13:04
rbasakballock: it's great to see somebody driving this, especially somebody who is managing production deployments.13:05
hallynjamespage: hm, i'm not sure.  it's a perf improvement, not a fix for any sort of crash13:06
hallynjamespage: are you talkign about to precise, or to raring (which has 1.4.0) ?13:06
jamespagehallyn, I think precise is probably not realistic - but raring might be OK?13:07
ballockrbasak: thanks for appreciation, I hope to have some progress on it13:07
hallynjamespage: i assume you're asking bc you or someone else reported impressive gains with it?13:07
hallynif so, i can give it a whirl.  though this week, starting today, i was goign to first merge 1.5.0 into saucy13:08
jamespagehallyn, someone asked me in #ceph on OFTC13:08
rbasakballock: I used to work in this area in a former job. But now I'm a full time developer, and so I can't be as up-to-date with this stuff as you are.13:08
jamespagehallyn, work on 1.5.0 first13:08
ballockI have no access to change the actual packages nor have the contacts to ask who is able to fix stuff13:08
ballockbesides it is supposed to be discussed first, that's what I am trying to achieve13:09
hallynjamespage: oooh, i see.  it mainly affects rbd.  i missed that from the description :)13:09
ballockIs the post in the right list to get attention or should I post links to some other lists or channels?13:10
ballockPerhaps I should inform some individuals?13:10
ballockThe vUDS idea is good, but I think there are things to check before getting there.13:10
rbasakballock: right. If you get it agreed in a blueprint after discussion at the next vUDS, and you then provide patches to packages that are acceptable to Ubuntu developers, then you should be able to get your patches sponsored. It does take longer to get things reviewed that way, but we are all keen to make sure that this route is available to you.13:11
hallynjamespage: applies cleanly (2 line offset) to 1.4.0, queued this up for next monday13:12
rbasakballock: and in time you can become an Ubuntu developer yourself.13:12
jamespagehallyn, thanks muchly13:13
jamespagedo you need a bug report to go with that?13:13
SirTim trying to run sudo /etc/init.d/networking restart command, however i get an error saying couldnt read interfaces file13:17
SirTanyone have any ideas?13:17
rbasakSirT: the installer creates /etc/network/interfaces for you. Perhaps you've lost or renamed this file? Try restoring it from backup.13:19
rbasakOr see the interfaces man page to recreate one from scratch. It's not very complicated.13:19
ballockrbasak: thanks, I'll copy the stuff to a blueprint... there's some naming convention for that, right?13:20
ballockAnd again, should this be the server, foundations or... community?13:21
rbasakballock: there is. But I'm not sure what to do here, especially as we've just had UDS.13:22
hallynjamespage: I'll need it for SRU of course.  I can submit one myself, but having it come from someoen else should be helpful13:22
rbasakballock: perhaps start with a wiki page proposal? The blueprint is really for when it's ready for UDS - you can start the discussion and specification first.13:23
psivaahallyn: lxc smoke test for saucy appears to have some hanging issue, http://pastebin.ubuntu.com/5686913/13:23
ballockrbasak: well, I can create a blueprint and get other things done13:23
hallynsmb: bug 1180281 sounds like your cup of tea13:23
uvirtbotLaunchpad bug 1180281 in libvirt "“Unable to connect to libvirt” when using xl toolstack with Xen 4.2.1" [Medium,Confirmed] https://launchpad.net/bugs/118028113:23
psivaahallyn: the vm is in aldebaran now if you'd like to investigate13:24
hallynpsivaa: virbr0 is not related to lxc0...  it sounds like your host is a bit hosed13:25
rbasakballock: I don't think there's any need for a formal process until you're ready to get the details agreed on in a session. It's fine just to use wiki.ubuntu.com and mailing list discussions until then.13:25
hallynpsivaa: is the 'lxc-list' output from the host, or the utah vm guest?13:25
psivaahallyn: it's from the utah vm host13:26
rbasakballock: until then, the main thing to do is to work towards a solid proposal, and then provided that there aren't any objections you should be set to go at the next UDS.13:26
hallynpsivaa: none of the test code actually runs on the vm host right?13:28
hallynpsivaa: it sounds like /bin/init's rootfs was deleted...13:28
hallyn(not necessarily /, but /proc/1/root)13:28
psivaahallyn: the lxc test code is only run in the vm host installed by utah13:28
SirTrabsak: Thanks for the reply13:29
hallynpsivaa: oh.  ok, i call that the vm guest13:30
psivaahallyn: ok :), so the test code actually runs in the vm guest which is saucy and not in vm host which is a precise installation13:32
hallynpsivaa: phew :)13:32
psivaahallyn: :)13:33
jamespagehallyn, I asked the reported to raise a bug13:40
jamespagereporter that is13:41
hallynjamespage: thanks13:42
hallynpsivaa: that vm really seems hung13:43
hallyni'm goign to try simple testcases on fresh saucy box13:44
psivaahallyn: ack, thanks13:48
=== wedgwood_away is now known as wedgwood
hallynpsivaa: oooh.  i see.  the messages you saw in dmesg are innocuous14:00
hallynpsivaa: upstart on the host is getting net-device-up messages for the network interfaces in the containers.  Tries to deal with them, but /sys/class/net/$nic does not exist on the host.  so it logs and ignores14:00
hallynpsivaa: As I said the utah guest seems to have completely hung for me - I'm not sure if that's a connection issue, an issue on aldebaran itself, a qemu issue, or what.14:01
psivaahallyn: ohh ok, i was able to ssh to it though, i have the lxc test output now14:02
hallynoh, the vm went away.14:02
hallynok14:02
hallynpsivaa: and did the tests fail?14:02
psivaahallyn: yea the jenkins job collected the jobs destroyed the vm and one of the tests fail14:02
hallynpsivaa: one of the tests failed bc i killed it i think14:03
SirTtrrying to run active directory membership, it keeps telling my password is incorect - do i need to set this somewhere?14:04
psivaahallyn: http://pastebin.ubuntu.com/5687029/ is the failure , not sure if that's related to the killing14:04
SirTthis is for domainjoin-gui14:04
hallynpsivaa:     /usr/share/lxc/templates/lxc-ubuntu: line 257: 23822 Terminated              flock -x 20014:05
hallynpsivaa: ^ yeah that was me :)14:05
psivaahallyn: ack :)14:05
TheLordOfTimeDaviey:  server team meeting still on for today?14:05
DavieyTheLordOfTime: sure is!14:06
TheLordOfTimewhat time is it at again?14:06
* TheLordOfTime needs to balance his time before the meeting so he can go vote :/14:06
DavieyTheLordOfTime: in 1hr50 mins14:10
TheLordOfTimeeesh that means i need to get to the voting place now... o.O14:10
TheLordOfTimeDaviey:  any action items or points of interest I should read up on before the meeting?14:16
DavieyTheLordOfTime: we are quite early in the dev cycle, so nothing too juciy14:20
DavieyTheLordOfTime: but, https://wiki.ubuntu.com/ServerTeam/Meeting14:20
TheLordOfTimeDaviey:  mind if i steal some time during open discussion RE including nginx as an option on either tasksel or some screen within the installer, or would that be better suited for another team's meeting?  (per https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1177919/comments/3)14:21
uvirtbotLaunchpad bug 1177919 in nginx "Merge nginx 1.4.1-1 (universe) from Debian unstable (main)" [Wishlist,Fix released]14:21
TheLordOfTime(btw thanks for handling that merge!)14:21
TheLordOfTime(assuming it was you)14:21
TheLordOfTimes/handling/sponsoring/14:22
DavieyTheLordOfTime: yes, it was me.  And sure, that is a good spot.14:25
TheLordOfTimeokay, i've got a mental list of pros and cons14:25
TheLordOfTimea few big cons too14:25
TheLordOfTimeDaviey:  it's in #ubuntu-meeting, right?14:28
DavieyTheLordOfTime: yes14:29
zulyolanda:  https://code.launchpad.net/~zulcss/ceilometer/ceilometer-pbr/+merge/16490714:30
samba35 Sub-process /usr/bin/dpkg returned an error code (1) how do i fix this problem when i try to download package14:30
TheLordOfTimesamba35:  we need more than just the "subprocess returned an error" output, it's likely explained a little earlier in the output...14:33
yolandazul, i see python-testtools is added as depends but not listed in changelog?14:34
zulyolanda:  doh ill add that14:34
samba35dpkg: error processing openvas-server (--configure):14:35
samba35 subprocess installed post-installation script returned error exit status 1014:35
samba35Errors were encountered while processing:14:35
samba35 openvas-server14:35
samba35E: Sub-process /usr/bin/dpkg returned an error code (1)14:35
zulyolanda:  fixed14:45
samba35i think there is temp files with openvas server how do i clean up dpkg temp14:48
zuljamespage:  ping around?14:52
jamespagezul, ping yes14:52
zuljamespage:  https://code.launchpad.net/~zulcss/horizon/horizon-pbr/+merge/16491414:53
=== koolhead17|afk is now known as koolhead17
zuljamespage:  crap15:14
Davieyzul: horizon would really benefit from a dep-8 test IMO :)15:17
zulim sure it would15:18
DavieyOne that shows that GET / returns 200 :)15:18
Daviey(under apache / mod_wsgi, not just djanog dev server)15:18
zulDaviey:  that ould be my next commit i just want to get the builds going again15:18
Davieyyeah15:20
SirTcan anyone here help me with likewise AD settings?15:36
RalliasIs there any way I can force br1 to wait until lxc container vpn is booted and running?15:45
zulyolanda/jamespage: https://code.launchpad.net/~zulcss/python-swiftclient/fbtfs-testr/+merge/16492715:48
Davieyyolanda: zul wants to add dep8 tests to swiftclient, and i suspect is asking for some assistance.  Specifically a --help test.15:50
DavieyRight zul ? :)15:50
TheLordOfTimeDaviey:  i might be late to the meeting, since now is the first chance I can get to vote...15:50
TheLordOfTime:/15:50
zulDaviey:  actually i just want to get them building again15:50
DavieyTheLordOfTime: don't worry, AOB happens right at the end15:50
Davieyadam_g: Are you chairing ?15:51
yolandazul, i have some tests to use as sample that use a "--help" to test the client, do you want to see them?15:51
zulTheLordOfTime:  well which is more important voting or the ubuntu server meeting ;)15:51
zulyolanda: yes please15:51
Davieyzul: turn your pep8 upside down into a dep8.15:51
zulDaviey:  that really messes with my dyslexia15:52
Davieyyolanda: ooo, something generic ?  Can i see?15:52
yolandaDaviey, i just wrote some for tgtadmin: https://code.launchpad.net/~yolanda.robla/ubuntu/saucy/tgt/dep-8-tests15:52
TheLordOfTimezul:  voting, my dad's in the election for judge :P15:53
Davieyyolanda: is the exit code not safe enough?15:53
yolandaDaviey, what do you mean? maybe i add an exit 0?15:54
Davieyyolanda: sorry, I mean.. something like, http://pb.daviey.com/Wwew/som15:58
yolandaInternal Server Error!15:58
Davieyerk15:59
Davieyyolanda: try again?15:59
Davieyoh15:59
Davieybad paste15:59
yolandai've tried lots of times15:59
Davieyhttp://pb.daviey.com/Wwew/15:59
yolanda:)15:59
DavieyWho needs 404, when 500 will do.16:00
Nafallo41816:00
yolandathis  looks better than my solution :)16:00
Davieyyolanda: I don't know.. see what smoser thinks16:03
Davieyhe'll probably want to use traps16:03
Daviey:)16:03
smoseri like traps16:04
yolandaDaviey, if the client fails for a failing depends for example,as we had with ceilometer and stevedore, your solution will work?16:04
yolanda(we can try it anyway)16:04
DavieyI'd have thought so..16:05
Davieyyolanda: not saying exit code necessarily is better.. but it certainly feels more generic and chance of false positive is lower.16:05
yolandaDaviey, yes, i agree with you16:06
=== VD is now known as Guest94874
zuljamespage/yolanda: https://code.launchpad.net/~zulcss/quantum/quantum-pbr/+merge/16494116:17
yolandazul, what are these <<TREE and >>MERGE-SOURCE in changelog diff?16:24
zulyolanda:  bad merges...quantum?16:25
yolandazul, yes, in quantum merge :https://code.launchpad.net/~zulcss/quantum/quantum-pbr/+merge/16494116:26
zulyolanda:  its targeted at the wrong branch *sigh*16:27
zulyolanda:  https://code.launchpad.net/~zulcss/quantum/quantum-pbr/+merge/16494216:27
yolandathat one looks better :)16:29
psivaahallyn: there is another VM in aldebaran that's hung on lxc test16:56
hallynpsivaa: pls mark the bug confirmed, and leave the vm up.  i'll take a look thsi afternoon.16:57
hallynpsivaa: i suspect a kernelbug, but nto sure yet16:57
psivaahallyn: ok, will do. thanks16:58
TheLordOfTimerbasak:  as an FYI, on the nginx issue: http://people.canonical.com/~ubuntu-security/cve/pkg/nginx.html17:11
TheLordOfTimeit's got a few CVEs that are eithier (a) being ignored upstream, or (b) have been idle upstream (debian upstream, or nginx upstream) for a while17:11
TheLordOfTimehttp://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-4968.html  <-- that one's probably being ignored17:12
uvirtbotTheLordOfTime: ** RESERVED ** This candidate has been reserved by an organization or individual that will use it when announcing a new security problem.  When the candidate has been publicized, the details for this candidate will be provided. (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-4968)17:12
TheLordOfTimehttp://people.canonical.com/~ubuntu-security/cve/2013/CVE-2013-2070.html was fixed in saucy, but i have yet to dig for a fix17:12
uvirtbotTheLordOfTime: ** RESERVED ** This candidate has been reserved by an organization or individual that will use it when announcing a new security problem.  When the candidate has been publicized, the details for this candidate will be provided. (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-2070)17:12
sarnoldTheLordOfTime: the patch for CVE-2013-2070 looks to be the 'patch.2013.proxy.txt' here: http://www.openwall.com/lists/oss-security/2013/05/13/317:17
uvirtbotsarnold: ** RESERVED ** This candidate has been reserved by an organization or individual that will use it when announcing a new security problem.  When the candidate has been publicized, the details for this candidate will be provided. (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-2070)17:17
sarnolddear uvirtbot: please rate-limit your lookups. thanks.17:17
TheLordOfTimesarnold:  forgive me if i go digging in upstream instead for the patch17:17
TheLordOfTimesarnold:  i don't know if the patch you listed on that mailing list was an upstream patch or not17:17
sarnoldTheLordOfTime: nginx.org isn't upstream enough? :)17:17
* TheLordOfTime missed that17:17
TheLordOfTimesarnold:  balancing thirty things at once17:17
* sarnold throws in a few chainsaws for fun17:17
sarnoldTheLordOfTime: I'll update our UCT, thanks :)17:18
* TheLordOfTime shoots the chainsaws with phasers17:18
TheLordOfTimesarnold:  remind me what UCT is again?17:18
zulyolanda/jamespage: https://code.launchpad.net/~zulcss/keystone/havana-refresh/+merge/16495417:18
=== gary_poster is now known as gary_poster|away
sarnoldTheLordOfTime: the database used to generate http://people.canonical.com/~ubuntu-security/cve/   -- and of course, mdeslaur beat me to it. hehe. :)17:20
TheLordOfTimesarnold:  yeah i pinged -hardened about it already :p17:21
TheLordOfTimebut that one "being ignored" bug I don't have upstream confirmation on an ignore17:21
TheLordOfTimeso you can't mark it as "ignored"17:21
sarnoldTheLordOfTime: 20 months without movement is close enough.. :)17:21
TheLordOfTime:P17:22
sarnoldTheLordOfTime: we may wish to distro-patch that. have you tested that patch in your ppa?17:22
sarnoldTheLordOfTime: .. or perhaps debian may wish to carry it..?17:22
TheLordOfTimesarnold:  which patch for which?17:22
sarnoldTheLordOfTime: to add ssl certificate validation on proxy17:22
TheLordOfTimesarnold:  i'll check later, in the mean time i'm busy focusing on creating an LP bug for 2013-2070 so i can track fixing as I prep debdiffs for currently supported releases.17:23
* TheLordOfTime doesn't like bzr for some reason17:24
sarnoldTheLordOfTime: thanks17:24
TheLordOfTimesarnold:  and the PPAs are based off of Debian, so unless Debian adopts it the fix is existent in the nginx ppas17:24
TheLordOfTimes/existent/not existent/17:24
jcastroballock: heya, maybe you should start sitting in on our meetings?17:30
jcastroI was thinking we could start bringing your issues to light17:30
rbasakTheLordOfTime: thanks17:31
=== gary_poster|away is now known as gary_poster
schnitzel-hi. i need a raid0 geek....18:04
schnitzel-its about software raids in general (yes i red the stuff in the internetz) and whether they are bootable. performance also interests me.18:04
blkperlschnitzel-: ask your question, and someone may know the answer18:05
schnitzel-i dont have a particular question...i mean....my problem is kinda weird. ;)18:06
schnitzel-i have some asus zenbook. ux51vz if you want to google.18:06
blkperlwhat are you tryin to accomplish?18:07
schnitzel-the raid controler is blocked by asus, you cant access it. but i am fucking sick of wondoze. want back to ubuntu.18:07
schnitzel-is it possible to make a software raid which can dualboot win8 and soem ubuntu18:07
schnitzel-what are the disadvanteages.18:07
schnitzel-does it make sense to break the raid0.18:07
schnitzel-etc..18:07
schnitzel-can i maybe even partition the raid0/format the drives without breaking it?18:08
blkperlso you have 2 disks in a raid0 via asus's hardware raid18:10
schnitzel-2 ssds18:10
schnitzel-yes18:10
schnitzel-raid018:10
blkperldo you want ubuntu on one ssd and win8 on the other?18:10
schnitzel-2x128gb ssd asus hardware raid (raid controller some intel shit - intel mobile express chipset raid controller)18:10
schnitzel-no. that would be easy18:10
schnitzel-i want 1 big ssd - better performance as far as i red18:11
schnitzel-then split it into 3 drives. linux/win8/ntfs files....18:11
schnitzel-+swap ofc18:11
blkperlok. well you can't software raid and expect win8 to be able to understand it18:11
schnitzel-thats what i thought. :(18:11
schnitzel-so a software raid is more a "fake" raid for linux only...18:12
schnitzel-what would you do....i mean...nobody need swrite speed of 2 raid0 ssds. so i am thinking of breaking the raid0. but i am not sure since i cant rebuild it. what is asus thinking by disabling access to the raid controller? stupid.18:13
schnitzel-and 128gb each os would be nice....but i am not fully convinced yet18:13
zuladam_g:  https://code.launchpad.net/~zulcss/keystone/havana-refresh18:14
sarnoldschnitzel-: it might be a rubbish controller..18:14
schnitzel-sarnold what do you want to say?! :p break the raid and use the two ssds as seperate drives?18:15
blkperlschnitzel-: I think I would do each OS on one disk, but that implies having access to make a raid0 of one disk (and it sounds like you don't have access to the hardware controller)18:15
schnitzel-blkperl why do i need a raid0 if i want to make 1 os each disk?18:16
blkperlbecause the hardware raid controller is presenting one "device" with two disks at the moment right?18:16
sarnoldschnitzel-: you could do something a bit .. cumbersome: make three partitions on each drive. sda0 gets win8 boot, sdb0 gets linux boot. sda1 and sdb1 get raided together for windows data. sda2 and sdb2 get raided together for linux data.18:17
schnitzel-blkperl yes.18:17
blkperlschnitzel-: you may be able to dual boot that then, if linux plays nice with the hardware controller18:18
schnitzel-blkperl but i *think* i can kill it with gparted. i would just format every drive..18:18
blkperlyou can't disable a hardware raid with software, you have to do it in the bios/raid controller18:19
schnitzel-sarnold this would be a waste of space :D  i usually have my files on 1 ntfs drive. we are talking about some movies, few mp3s documnts...stuff like this. access from win and linux would be nice...you get the point. ;)18:19
schnitzel-blkperl  now we are talking! :D thats good to know...i have red some forums. problem is that there are very few "geeks". some have managed to install 1 os on each drive. but same person says, that the acess to the raid controller is disabled.18:20
schnitzel-i wonder what he did.... :(18:20
blkperlyou should *backup* all your data to an external device and try to install a dual boot configuration18:21
schnitzel-ahh. befor i forget i can acess in bios: disable the raid. make it ahci18:22
schnitzel-thats all i can do. i think this implies that i *cant* rebuild the raid0. at least everybody says that (who tried it...)18:22
schnitzel-blkperl yes...i am thinking about trying exactly this. but i wanted to discuss the option with the software raid. but as you told me...it wont work with win18:23
schnitzel-which is sad.18:23
blkperlwell raid0 is no redundancy so it doesn't make sense to rebuild one18:23
blkperlif a disk dies in a raid0, all of your data is gone18:23
schnitzel-what you mean with that?18:23
schnitzel-well sure18:23
blkperlso there is no "rebuilding" process18:23
schnitzel-ofc. what i mean with "rebuild" is: make 1 big drive again. ;)18:24
schnitzel-if i dont like 128gb ssd each OS.18:24
blkperlyou should be able to recreate the raid0 as long as you have access to the raid controller, it will destroy your data though18:25
schnitzel-i have never had a raid controller. what exactly does "access" mean. are the options in the bios. where to config it, etc..18:26
schnitzel-can yu give me an idea what i am looking for?18:26
blkperlthere should be a key combination during the boot process, like press "crt-c" to access raid controller18:27
sarnoldschnitzel-: often the raid controller will have its own bootsplash screen for a second after the main bios splash screen18:27
schnitzel-everything is locked down. i just have "asus" then soon the windows logo.18:27
blkperlcan you access the bios?18:28
sarnoldif you hit 'esc' wihle booting can you get psat the pretty graphics screen and return to good old fashioned bios boot screen? :)18:28
schnitzel-i can access the bios.18:28
schnitzel-Sargun no ;P18:29
user01hey. i am schnitzel. gonna restart the other machine.18:30
schnitzel-..18:30
user01well. i hit enter. and enter the setup.18:30
user01i access the tab "advanced"18:31
user01there i can see "sata configuration18:31
user01"sata mode selection" --> RAID. i can change that to AHCI and IDE18:32
schnitzel-back18:34
user01so any ideas what this means?18:38
blkperlnope18:41
adam_groaksoax, https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-openstack-charms18:42
user01k. thanks anyways. ima try some more stuf :)18:52
adam_groaksoax, all but nova-cloud-controller are pretty small charms and low hanging fruit.18:52
resnook, im trying to setup a new server. i was given an ip. and i cant get it to respond.18:52
resnoneither can i ping out18:53
resnoi have edited the interfaces but i'm not sure what is wrong18:53
adam_groaksoax, i'd prefer any new charm work that happens this cycle does so with a dependency on lp:charm-helpers, so we are pulling helper code from there instead of copying it around ourselves like we have been18:54
roaksoaxadam_g: ok cool. I'l;l pick one and start working on it18:54
Guest51469Hey, I'm new to ubuntu and currently downloading the server (12.04.2 LTS) How can I also install the GUI? I want to learn Apache server, MySQL and MySQL workbench...19:01
ShogootAny chmod chown guru taht can help me troubleshoot? I got this /var/html/www location for a simple website, but i cant get it to work proper. And my educated guess is that is a permission issue19:08
ShogootForbidden You don't have permission to access /smn.php on this server. Apache/2.2.22 (Ubuntu) Server at 192.168.1.166 Port 8019:09
resnoyes, permission error19:11
resnodo ls -ll in that folder19:11
Shogoottotal 019:11
Shogootsorry19:12
Shogootlet me se19:12
resnoehm19:12
resnoshould see xrw--- etc19:12
Shogoot-rwxr-xr-x 1 smn  smn         33 Apr  8 19:47 smn.php19:12
resnoah19:12
resnochown www-data:www-data or root19:13
Shogootbut i have to do taht for the whole www directory, dnt i?19:14
ShogootI changed permision to -rwxr-xr-x 1 www-data www-data    33 Apr  8 19:47 smn.php19:16
Shogoot  but i still get same error19:16
sarnoldShogoot: how about the directories that contain smn.php and the directories above it?19:22
Davieyrbasak: seen bug 118261319:24
uvirtbotLaunchpad bug 1182613 in puppet "puppet completely broken on saucy" [Undecided,New] https://launchpad.net/bugs/118261319:24
Shogootsarnold, the parent director  looks lke this drwxr-xr-x  7 www-data www-data 4096 Apr 28 23:01 www19:25
sarnoldShogoot: aha. check /var/log/audit/audit.log or /var/log/syslog to see if you have AppArmor DENIED messages.19:25
Shogootsarnold, http://paste.ubuntu.com/5688065/19:29
Shogoot.19:37
RoyK;19:47
adam_gDaviey, you still around? i've got some rebuilt proposed packages for UCA that need to go in, but there are also security updates that need to get out to -updates.20:03
adam_gjamespage, http://people.canonical.com/~agandelman/ca/folsom/2012.2.4_rebase/  + http://people.canonical.com/~agandelman/ca/grizzly/2013.1.1_rebase/  . these will UCA proposed's with ubuntu proposed20:21
adam_gzul, Daviey ^20:22
zuladam_g: need me to +1?20:22
adam_gzul, at some point but we actually need to push something thru the pockets before those can go in20:22
zuladam_g: *sigh* ok cool20:23
Davieyadam_g: ho20:27
Davieyadam_g: can you outline what needs doing, and i'll take a look in the morning.20:28
Shogootsarnold, http://paste.ubuntu.com/5688065/20:32
=== guntbert_ is now known as guntbert
sarnoldShogoot: ah. that might need fixing, but will be unrelated to your apache problems. :)20:51
Shogootsarnold, im kinda lost anyway20:52
Shogootany clues ? :)*20:53
sarnoldShogoot: do you have any more-specific logs in /var/log/apache* that might indicate why permission was denied?20:55
Shogootfrom apache2/error.log   http://paste.ubuntu.com/5688342/20:57
sarnoldShogoot: nice, that's probably concrete enough to eventually fix it.20:58
Shogootseems chineese20:58
sarnoldShogoot: look through your apache configuration, try to find what might block your hosts from accessing the directory or virtual host or whatever...20:58
jcastroroaksoax: yeah! I see celery is done?21:01
roaksoaxjcastro: yeah so just wait 7 days for it to be accepted in -updates21:01
jcastrois the wait serial?21:01
jcastroso like 7 for celery, then another 7 for maas?21:01
roaksoaxjcastro: nope21:03
roaksoaxjcastro: once something is mark verification-done you just wait 7 days to get accepted into -updates, though that obviously depends on whomever processes the queue21:04
jcastroack21:04
Shogootsarnold, i dont see shit in there :)21:08
sarnoldShogoot: darn :/  the first thing that comes to mind would be something like allow, deny directives.21:09
Shogootseems a perfectly fine apache2.conf21:10
Shogootsarnold, what if www-data:www-data should be root instead, or www-data has not the correct permissions21:15
Shogoot?21:15
sarnoldShogoot: www-data ought to work. (I disklike it, but that's a rant for another day.)21:15
sarnoldShogoot: the webserver is probably running as www-data, right?21:16
Shogootno idea21:16
Shogoothow to check?21:16
sarnoldShogoot: ps auxw | grep -e http -e apache21:16
Shogootsarnold, http://paste.ubuntu.com/5688391/21:17
sarnoldShogoot: first column, www-data21:17
Shogootthis does not say me anything21:18
sarnoldShogoot: the first oclumn in that output is the username of the process; all your apache workers are running as www-data21:19
Shogootsarnold, what about this one then? root      1484  0.0  1.0 399304 22432 ?        Ss   00:11   0:03 /usr/sbin/apache2 -k start21:19
sarnoldShogoot: that process starts and stops the workers as load goes up and down21:20
Shogootand on line 10 theres anotehrone with root21:20
Shogootah ok21:20
sarnoldiirc, line ten was your grep command21:20
Shogootah i se that now21:21
Shogooti just want my little page to display :_/21:21
qhartmanI am trying to get a Cisco ASA to do dynamic DNS updates to bind9 server running on Ubuntu 12.04. Everything seems to be working correctly on the DNS server, but the dynamic updates are failing.21:22
qhartmanWhen I run named with -d 4 I get this output: https://gist.github.com/anonymous/562335621:22
Shogootsarnold, when i use http://www.cthulhuisevil.net/smn.php i get another error thoguh..  "Not Found The requested URL /smn.php was not found on this server."21:22
qhartmanthat's what I see when the ASA requests a DNS update. Any thoughts?21:22
Shogootsarnold, never mind i forgot to omitt the "www."21:23
qhartmanI've set this sort of thing up in the past using ISC DHCP and it's more or less "just worked". It's unclear to me if the problem is with the bind config, or the ASA config21:33
Monotokocan anyone here help with BIND? I've just got a new freelance job and it's confusing me to hell :(21:40
qhartmanMonotoko, I can probably help with some of it, but I'm currently struggling with getting synamic updates to work myself21:41
qhartmans/synamic/dynamic/21:42
qhartmanBut I'll ask for a cut....21:42
qhartman:D21:42
Monotokowe have a script that's putting zone files in automatically: this one goes to the domain (but won't resolve via dig?) http://pastebin.com/wrJ89HDc21:42
Monotokothis one isn't doing anything even though it's the same, it's just failing instantly... http://pastebin.com/nAZqaUji21:43
MonotokoI don't understand what's happening... but I'm guessing they need rewriting21:43
qhartmanI assume you're bouncing the bind process after placing those files?21:44
Monotokoyeah, it's been bounced and I've turned the server off and on again... :)21:45
qhartmanheh21:45
qhartmanwhat about the serial number, is that incrementing correctly?21:45
sarnoldMonotoko: do you get any error messages in the logs?21:45
Monotokosarnold, if I could find the log on this damn server I'd look... two secs21:46
qhartmanyou probably want to look in /var/log/syslog21:47
qhartmanfwiw, I just tried to look up the used guitars one and it worked fine21:48
qhartmanso did copydoodle21:49
Monotokointeresting...21:49
MonotokoMay 21 21:47:54 ip-10-195-98-37 named[9331]: client 75.151.85.53#40660: query (cache) 'copydoodle.co.u/A/IN' denied21:49
qhartmanyeah, that's me21:50
qhartmanbut I got a response21:50
Monotokoso why's the server saying you were denied? Something's not going right here...21:50
Monotokosorry this wasn't part of the original job desc... my client just asked if I'd have a look because his previous programmers were *his words I'm not allowed to say here*21:51
qhartmanhttp://forums.cpanel.net/f5/why-named-logging-query-cache-denied-var-log-messages-170302.html21:52
qhartmanoh wait21:52
qhartmanthat denied was a typo on my part21:52
qhartmannotice the ".co.u" , "not ".co.uk"21:53
Monotokoahhh, so do you get a response through dig too?21:53
sarnoldheh, I figured that was just limiting the length of logging..21:53
qhartmanthat's why you would be getting the denied message21:53
qhartmanyeah21:53
qhartmanonymous/562358121:54
qhartmanhttps://gist.github.com/anonymous/562358121:54
Monotokointeresting, might just be the network I'm behind then... is there anything I can do to improve this setup, or should I just leave it as it is?21:54
qhartmanit seems ok from here21:54
Monotokobrilliant, il report that back to the client - thanks :)21:54
sarnold0 msec? wow.21:54
sarnoldoh, local cache?21:54
qhartmanyes21:55
qhartmanmy first query took 2196 msec21:55
sarnoldthat's more like it :)21:55
sarnoldwell, slow, but still.21:55
qhartmannow, since we've gotten the bind user's attention, anyone manage to get dynmaic DNS updating from a CISCO ASA to talk to bind?21:56
sarnoldfor a moment I wondered if you two happened to share a datacenter with bonkers internal networking :)21:56
qhartmanheh21:56
qhartmanI've gotten the devices to talk to each other, and queries of manual entries work fine, but the dynamic updates from the ASA fail, with no explanation I can find on either side21:57
Monotokoheh, this is on Amazon!21:58
MonotokoAWS - it should be good damnit -.-21:58
qhartmanI'm on the verge of giving up on the ASA DHCP server and spinning up ISC on another box21:59
* Monotoko bangs head against wall22:01
Monotoko"It's not just you! http://usedguitarreviews.com looks down from here."22:01
qhartmanoh22:01
qhartmanI bet it's not a DNS thing22:01
qhartmanI bet it's vhost22:01
qhartmanyou are redirecting usedguitar... to www.usedguitar... and there's no DNS entry for www22:02
qhartmanbut you do have a wildcard in there, so it should catch it22:02
qhartmancheck your webserver, that's probably the probleem22:03
Monotokohmmm22:03
qhartmanyeah, the wildcard isn't catching the www22:03
qhartmanI can get the apex, but not www22:04
Monotoko... why isn't the wildcard catching www? >.<22:04
qhartmanIt is catching it for copydoodle, which seems odd.22:04
Monotokoexactly... it's baffling me22:05
qhartmanIs the wildcard a new entry for guitars?22:05
qhartmanin the interim, I'd put in a www entry and see what happens22:05
qhartmanand/or make the webserver answer on the apex rather than redirecting, if that's an option22:06
qhartmanthat way you can get the site up and fight with this at your leisure22:06
qhartmanand remember to increment the serial, if you're not using a tool that does it automatically22:06
Monotokohmmm alright, could it be propagation? I'm not sure when my bosses client actually moved this one22:06
qhartmanpossible, but if it's a new entry22:07
qhartmanthat shouldn't be an issue, it should be a cache miss, and queries should get directed to the authoritative server22:07
qhartmanyeah, if I query your server directly, I get an answer for www22:08
qhartmanbut my usual server doesn't know who it is22:08
Monotokoahh... so if I add "www IN A 174.129.247.93" to it, it should be fine?22:09
qhartmanso it likely is a propagation issue22:09
Monotokoahh brilliant22:09
Monotokoil check it tomorrow I guess22:09
qhartmanalright, I'm AFK for a bit...22:10
Monotokocheers pal22:10
sarnoldgood luck qhartman :)22:11
adam_groaksoax, where in maas can i configure the apt server to use, or disable ?22:26
roaksoaxadam_g: if you are using raring on the webui under settings22:27
adam_groaksoax, quantal22:27
roaksoaxadam_g: in one of the preseeds: /usr/share/maas/preseeds/generic22:27
adam_groaksoax, thanks22:28
Davieyadam_g: if you find yourself bored.. fancy adding href's to the c-a versions report, under ubuntu column?22:34
Davieyadam_g: https://launchpad.net/ubuntu/+source/${package}/${version}22:34
adam_gDaviey, at some point soon yea. where is this security-proposed pocket you were talking about?22:34
adam_gDaviey, im trying to think of a good way to visualize scenario where: -proposed is > ubuntu but ubuntu's security update really makes it > -proposed22:36
Davieyadam_g: Ah, doesn't look like it's quite ready22:36
adam_gmaybe just split the 'ubuntu' cells into $ubuntu-updates and  $ubuntu-security22:37
Davieyadam_g: We can make the staging PPA always empty, so if ${pacage} is *in* staging it's always higher, irrelevant of version number?22:37
DavieyHmm22:37
Davieythat is a good idea.. you can verify if secuirty.ubuntu.com >= archive.ubuntu.com (-updates), then we need to care.22:38
Davieyadam_g: Separately, we need a Havana report soon.22:39
adam_gDaviey, well currently we use the staging PPA as the definitive list of what is in the rest of the pockets.  are you saying flushing packegs from that PPA or just not including them in report?22:40
Davieyadam_g: if there is a security-staging PPA, that can be flushed to only keep inflight packages22:41
DavieyNot saying that is the best way.. just a suggestion22:41
=== wedgwood is now known as wedgwood_away
adam_gDaviey, as soon as https://launchpad.net/~ubuntu-cloud-archive/+archive/havana-staging gets populated we can start reporting22:42
=== wedgwood_away is now known as wedgwood
sarnoldDaviey: https://launchpad.net/~ubuntu-security/+archive/ubuntu-security-staging22:42
Davieyadam_g: We probably need to seed that with the contents of grizzly?22:42
Davieysarnold: This is the cloud archive, ubuntu-cloud.archive.canonical.com .. not primary archives22:43
sarnoldDaviey: ah :)22:43
Davieysarnold: At the moment, we are trying to see how we can make our reports easier to track22:44
adam_gDaviey, thats how i think we did it last time. synced essex  staging -> folsom staging, tracked against quantal and relevant bits of the report go red. then update accordingly22:44
Davieyadam_g: done22:47
adam_gDaviey, thanks22:50
Davieyadam_g: I'll sync this up to -proposed and -updates aswell?22:57
adam_gDaviey, yeah.. waiting for the PPA to publish those22:57
=== wedgwood is now known as wedgwood_away

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!