=== dendro-afk is now known as dendrobates === n0ts is now known as n0ts_off === ping is now known as Guest94438 === cpg|away is now known as cpg === Aaton is now known as Aaton_off === n0ts_off is now known as n0ts === n0ts is now known as n0ts_off === n0ts_off is now known as n0ts === ping is now known as Guest92748 === n0ts is now known as n0ts_off === n0ts_off is now known as n0ts === hilarie_ is now known as hilarie === ping is now known as Guest40523 === n0ts is now known as n0ts_off === guampa_ is now known as guampa [04:09] Hi, I am trying to set up a cluster of nodes using MAAS and juju, and I'm at the point of doing "juju bootstrap", which seems to work. However, "juju status" complains about an invalid SSH key. I have researched all I can on the net, there doesn't seem to be much out there. I guess the first question is: how can I log into a freshly installed MAAS node? SSH or local, I don't mind. [04:11] (I have also set a password for the 'ubuntu' user in /var/lib/cobbler/kickstarts/maas.preseed but I don't know if this is working, as I am unclear on the order of when things run) === cpg is now known as cpg|away === n0ts_off is now known as n0ts === almaisan-away is now known as al-maisan [05:24] How can I modify kittenwar (/sbin/iptables -A PREROUTING -s 192.168.0.0/255.255.255.0 -p tcp -j DNAT --to-destination 64.111.96.38) to only effect IPs above 192.168.1.15? [05:32] HI guys [05:33] could someone please help with a apache2 problem. I think for starters I need to know what file to modify for document root? [05:34] and httpd.conf doesnt seem to be the right file? [05:34] you mean to set document root or to edit current document root file [05:35] to edit document root. I need to point it to a diff dir [05:36] I have got : http://pastebin.com/xWBNGq4C [05:37] Or even more info : http://pastebin.com/p7ShTPwW [05:41] httpd.conf should still be valid in 12.04, although it is empty by default [05:42] al_nz1: https://help.ubuntu.com/12.04/serverguide/httpd.html may help [05:43] I think I am a bit confused, there seems to be httpd.conf and also /sites-available/default [05:45] al_nz1: yes. [05:45] by default, nothing is in httpd.conf === cpg|away is now known as cpg [05:46] greppy: yes, but as you can see from my pastebin (the second one at least) I have added some info to httpd.conf and tried to restart apache but get an error [05:47] the current best practice is to specify each vhost/domain in it's own configuration file in sites-available/ and then create a symlink to the file in sites-available in sites-enabled [05:47] ...see bottom of pastebin [05:47] greppy: hmm, ok. Tho there will only ever be one site on this PC [05:48] ummm [05:48] it complains that Action doesn't make any sense. [05:48] greppy: which could be because I shouldnt have edited httpd.conf but apache2.conf instead? [05:49] The instructions are located at www.mobotix.com/eng_GB/file/2431175/readme_en.txt [05:49] but they relate to Apache on windows :- [05:49] :-( [05:49] it looks like you need to enable a module for action to make sense in the config [05:49] greppy cgi is enabled by default [05:51] al_nz1: in that link there is a line loading mod_actions.o [05:52] greppy: which link? [05:52] the link at www.mobotix.com? or the pastebin? [05:55] greppy: here is a list of mods enabled [05:55] http://pastebin.com/stqKYTiF [05:55] I have an question which is orthogonal to my last: what is the best solution in ubuntu for imaging a cluster of machines? i.e. set up a golden image, then farm that off to a bunch of blades (with the relevant sections modified, such as NIC information, etc.) [05:55] al_nz1: the mobotix [05:55] an = a [05:56] greppy: is that the line Action mxremotepreview /cgi-bin/MxRemotePreview.cgi.exe [05:56] al_nz1: based on the error message, you need to find the module that provides action. [05:57] al_nz1: yes, that is the line that it is complaining about. [05:57] The error message "Syntax error on line 4 of /etc/apache2/httpd.conf" is a pretty obvious clue :) [05:59] greppy: for sure, though I was wondering if it was generating a error due to something on the previous line [06:00] I have some account at Ubuntu server, how do I check my rights to File System ? [06:01] so, by the look of google apache2 modules are loaded with sudo apt-get, but how do I work out the module name? [06:03] al_nz1: the module you need, according to the documentation that you are working from is mod_action.o [06:04] sure, but the sudo apt-get install mod_action.o doesnt auto complete or work [06:05] al_nz1: right. apt-cache search mod_action may find what you need. I have never used mod_action or tried to install it. [06:06] parser3-cgi - Parser 3, HTML-embedded scripting language (CGI binary) [06:06] php5-cgi - server-side, HTML-embedded scripting language (CGI binary) [06:06] are the two results? [06:07] al_nz1: looks like it. [06:07] greppy: ok, idiot alert here. how do those results help me install mod_action.o ? [06:08] al_nz1: I won't be able to give you step by step instructions on how to get this working, I'm just pointing you in the direction that may find your answers. [06:08] greppy: definitly appreciated! [06:08] al_nz1: if you install one of those packages, it may provide that module. [06:08] right! [06:09] al_nz1: apt-cache show parser3-cgi [06:10] read what it tells you about the module. [06:10] errr, not module, package :) [06:11] For what it's worth: [06:11] mgi@queeg:~$ ls /etc/apache2/mods-available/actions.* [06:11] /etc/apache2/mods-available/actions.conf /etc/apache2/mods-available/actions.load [06:11] You should just need to enable it, assuming that's the same module you need. [06:11] mgi: seen those, how do I enable them? [06:12] sudo ln -s /etc/apache2/mods-available/actions.load /etc/apache2/mods-enabled/ [06:12] sudo ln -s /etc/apache2/mods-available/actions.conf /etc/apache2/mods-enabled/ [06:12] or use sudo a2enmod [06:12] Then reload apache. [06:12] Or that :) [06:12] Sorry, I'm used to doing it that way. [06:12] mgi: ln -s - that creates a sym link right? [06:13] Correct, but do it greppy's way instead. [06:13] the nice thing about just using 'sudo a2enmod' is it will list what mods are available on the system. [06:15] Any ideas what can be the command for export Mssql from Ubuntu Server ? [06:15] I mean there is running mssql in ubuntu server, I want to export some db of it [06:15] glosoli: mssql? Or MySQL? [06:15] "unixODBC 2.2.11" [06:15] mssql [06:17] well, I think it got it going....http://pastebin.com/2FSxWyze [06:17] brb.... [06:20] back === n0ts is now known as n0ts_off [06:57] glosoli: use freetds to connect to mssql [06:58] how to dump a db from there, I really don't know [06:58] RoyK: There is a problem, I have access to server, but I don't know addresses and ports or name of that mssql database [06:59] glosoli: then ask the mssql sysadmin ;) [07:00] Would be hard to get the contacts of one, but still worth trying then [07:02] * RoyK has no idea whatsoever how to find that info from sqsh === ubuntu is now known as Guest77360 [07:26] this is making me crazy... [07:26] and thats not good [07:27] so i got this script i wrote in php and it works great..so great that, well we wound u using the hell out of it. thing is we trigger it with cron. and...we need it to run more frequently then every min === Guest77360 is now known as Nathan_S === n0ts_off is now known as n0ts === n0ts is now known as n0ts_off === zyga is now known as zyga-afk === mrmist is now known as groupcat === ubuntu is now known as Guest37409 === Guest37409 is now known as Nathan_s === cpg is now known as cpg|away === ping is now known as Guest53642 === zyga-afk is now known as zyga === al-maisan is now known as almaisan-away [11:08] jamespage: I've just checked openmpi status for quantal. Debian have merged our changes and uploaded an openmpi1.6, which we have autosynced (awesome and lots of thanks to Sylvestre!). So I presume I should file a removal request for openmpi1.5, now that it is superceded? Do we need a transitional package to upgrade people more smoothly? [11:08] jamespage: second, I have a request to put openmpi1.6 in precise-updates. I take it that this is a no-no and I should point to backports? [11:14] hi there, i hope someone can help me, i need a init script to start two processes at startup with stop start restart funtkions. Here my first attempt, i have not tried the script yet and i am a noob. http://pastebin.com/c112RR5M === AntORG_ is now known as AntORG === Pupeno_W_ is now known as Pupeno_W [11:49] Hi there, maybe someone can help me with a shellscript i am trying to modify, it should run two processes as daemons on system init, http://pastebin.com/xwkSF1pa would this work? Also i should mention i am a absolute newbie with shellscripts.. [12:25] good morning === almaisan-away is now known as al-maisan [12:48] rbasak, yes - you should raise a bug for the AA team to get it removed (q 1) [12:49] q2 as its a new package its not appropriate for -updates - and I think backports does not do new packages either - but I would defer as I've never done one [12:58] i seem to have a huge issue with landscape-related scripts on 10.04.4 [12:58] whenever i try to login, update-motd scripts are run [12:58] which end up being zombies [12:58] and block my login [12:59] i can't figure out why they would block [12:59] because i can run these scripts interactively [13:00] here is my login attempt (which on the client hangs at 'entering interactive session'): [13:00] https://gist.github.com/3097944 [13:00] this is on the server in question === ubuntu is now known as Nathan_S [13:03] when i kill the python script running my login completes [13:04] Hi, is ubuntu-alternate together with Debian Installer and Preseed the most efficient way to do unattended installations? An installation takes a lot longer than a normal installation. Wouldnt it be smarter to do a template that one distribute out by a simple ncat and dd? [13:05] nandersson: you can do that if you wish, but you do need more inside knowledge of what you need to change to make each machine unique (eg. hostname, but there is more). [13:06] rbasak, I only know about /etc/hostname, /etc/hosts and /etc/udev/rules.d/70-persistent-net.rules [13:06] nandersson: the maas project will probably switch to this, and should be the easiest way to manage this stuff in future [13:07] nandersson: off the top of my head, that should be sufficient. But I might be missing something, and depending on what other packages you install, more may be required. [13:07] nandersson: if you just want a base image to then install more packages later, look at ubuntu core [13:07] rbasak, cool! Where can I find information about this maas-project? [13:08] nandersson: https://wiki.ubuntu.com/ServerTeam/MAAS/ [13:08] (first hit on google, which is nice!) [13:08] I think they're still using d-i though, but also believe they may be switching to a more dd-style approach soon. Not sure what the roadmap is though. [13:08] rbasak, Ubuntu Core as in "Ubuntu Mini Remix"? [13:09] nandersson: https://wiki.ubuntu.com/Core [13:09] nandersson: but again, you need more inside knowledge to know what to do. Eg. add a user, create /etc/hosts, /etc/network/interfaces, generate locales, etc. [13:09] basically everything the installer normally does [13:09] hello. I have prepared a local repository for off-line installation of MariaDB 5.5.25 on ubuntu-server 12.04 - http://rsync.it-infrastrukturen.org/public-mariadb/ubuntu/mariadb-5.5.25-ubuntu-12.04-repo.tgz and wrote some description how to use it - http://rsync.it-infrastrukturen.org/public-mariadb/ubuntu/mariadb-ubuntu-local-repo.pdf [13:09] further I have prepared a script and some config file examples for running mysqld_multi on ubuntu-server 12.04 and box with multiply ethernet interfaces - http://rsync.it-infrastrukturen.org/public-mariadb/ubuntu/mysqld_multi_install_db_files.tgz. It would be great if I could get some feedback. Thank you in advance ;) [13:10] rbasak, Yeah, but those are basically the same if you have ldap-auth [13:11] Current mood: Blow torch + MAAS = Raving lunitic with a smile =DD =/ [13:11] Morning :) [13:16] Anyone here try MAAS yet? [13:26] smoser: around? 12.04.1 meeting in 35 mins and we have not looked at that list yet [13:30] i'm tryign to add a serial number to my harddrive with libvirt/kvm and i'm running ubuntu 10.04 w/ libvirt 0.7.5 - i'm adding the WD-WMAP9A966149 tag in the .xml file and redefining the vm, but i cannot see the serial with either "ls -l /dev/disk/by-id/virtio-WD-WMAP9A966149" or "hdparm -i /dev/vda" [13:30] does anyone have any suggestions? [13:31] jamespage, sure. [13:31] smoser, do you have the official link === ninjak_ is now known as ninjak [13:32] https://wiki.ubuntu.com/PrecisePangolin/12.04.1 [13:33] (see bug lists there) [13:33] http://status.qa.ubuntu.com/reports/kernel-bugs/reports/rls-p-tracking-bugs.html is what was mostly going by [13:33] smoser, yep - thats the one [13:35] jamespage, ok. so how do you want to do this. [13:35] smoser, I was just thinking [13:36] smoser, the biggest lists are juju and maas [13:36] * jamespage puts them to one side for the moment [13:37] yeah. on that list, there are only like 2 that are not juju/maas. [13:37] smoser, I think the couchdb stuff is done [13:38] smoser, couchdb is in universe and kombu only suggests it now [13:38] * jamespage marks as fix released [13:38] does anyone have any thoughts on my issue? [13:38] it seems like update-motd is ran each time i log into a server [13:38] and even though i purged the package [13:38] it still happens [13:38] and i can't figure out where this is triggered [13:39] smoser, actually no its not -looking at the wrong packages [13:39] smoser: are we really likely to make such a wide impacting change in 12.04 now? [13:40] jamespage, that is strange. [13:40] smoser, I think those are a 'Won't Fix' [13:41] I don't believe they are suitable for SRU [13:41] well, it would be a funny definition of "5 years support" if that included "5 years of support unless we move the package to universe" [13:42] agreed - marking 'Won't Fix' then [13:43] alright. then we're down to maas, juju, openstack (python-eventlet, keystone) [13:43] so i think we need to somehow address the growing urgency of 12.04.1 with maas and juju teams. [13:43] smoser, agreed [13:44] at least press a decision has to be made to get them off the list one way or another. [13:44] other bug list? [13:44] I guess SpamapS is the go-to for juju; is roaksoax the right person for maas? [13:44] at least as the rep in the team who's most likely to work on them.... [13:45] arosales has already tasked SpamapS, m_3 and jimbaker with reviewing the juju ones [13:46] yes, roaksoax is best contact ther. and i can agree to help him address the list. [13:46] smoser: OK - so if you pickup with roaksoax on the maas one's I'll hassle SpamapS et al to review the rest [13:47] smoser, I also see some stuff on http://people.canonical.com/~jamespage/server-sru/precise-sru.html [13:47] specially anything assigned to ubuntu-server or canonical-server [13:50] what criteria makes the make the james page list? [13:50] is there a better place to ask about landscape and update-motd? [13:50] targetted to precise. [13:50] smoser, server-team subscribed to the package for bug reports, targetted and accepted to precise [13:51] till__, you can ask. there are some landscape people here. [13:51] i asked a couple of times, no one seems to reply ;) [13:54] till__, id love to help but i'm unsure =/ [13:54] yeah, me too [13:54] it took me a few hours to get this far [13:55] I've been working on MAAS for about 5 1/2 hours, i'm about to give up myself. [13:56] I think im going to give up o.0 lol [13:57] smoser, OK - I had a quick scan [13:57] the cobbler one worries me [13:58] bug 858867 [13:58] Launchpad bug 858867 in cobbler "XMLRPC allows unauthed users access to various methods (which it shouldn't) " [Medium,Confirmed] https://launchpad.net/bugs/858867 [13:58] as I don't know how much we can really do about it [13:59] hm, what's happened to python-software-properties->add-apt-repository ? [13:59] rbasak, could you take a look at the comments on bug 988819 please [13:59] Launchpad bug 988819 in mod-proxy-html "[SRU] wrong path to libxml2.so.2 in mod_security - broken by multiarch enabled libraries" [Undecided,Confirmed] https://launchpad.net/bugs/988819 [13:59] hallyn, try python3-software-properties [14:00] oh ffs [14:00] lol [14:00] hallyn, I think that might be a bug but I'm no expert.... [14:01] i wish i could figure out how to hook into run-parts [14:01] to get a log of some kind [14:01] jamespage: thanks, it'll get me off and running, then i can look into whether there's a bug :) [14:02] (first i gotta get a set of tests rolling for zul) [14:02] excelente [14:03] would anyone know which 'event' triggers 'run-parts' to run when a user logs in? === dendrobates is now known as dendro-afk [14:18] jamespage: no, actually python3-software-properties still doesn't have it. (done by hand for now, will look into it) [14:18] hallyn, software-properties-common maybe [14:20] jamespage: looks like, as I see [14:20] debian/software-properties-common.install:usr/bin/add-apt-repository [14:20] so i guess it's really a bug in command-not-found [14:20] for anyone interested, here is my journey and a solution: http://askubuntu.com/a/162373/11244 [14:20] (can't confirm until my other apt-get finishes) [14:21] now trying to figure out how to get rid off this when i bootstrap an instance on ec2 =) [14:21] hallyn, that gets updated periodically so may be out-of-date for quantal [14:29] jamespage: oh is that done automatically? I see it sits in a 'scan.data' file :) [14:29] nm i guess === zyga is now known as zyga-food === al-maisan is now known as almaisan-away === Lcawte|Away is now known as Lcawte === almaisan-away is now known as al-maisan [14:41] jamespage: I lost connection, not sure if you got this [14:41] jamespage: I've added a comment [14:41] I'm not sure if I need to do anything more? === Ursinha` is now known as Ursinha [14:46] rbasak, I think the approach to the SRU needs to be re-considered [14:46] but lets see what response your comment provokes === dendro-afk is now known as dendrobates === zyga-food is now known as zyga === dendrobates is now known as dendro-afk [15:45] hallyn: how is it looking? [15:46] zul: tests are running... [15:46] should be awhiel yet [15:46] hallyn: ok...i have to wire up the cpu_arm stuff in our libvirt as well [15:53] zul: qa-regression-tests test-libvirt.py passed [15:54] hallyn: cool...ill just wire this up and ill upload [15:54] sweet [15:54] no shutdown support yet :( [15:54] for lxc? [15:55] yeah [15:55] http://libvirt.org/git/?p=libvirt.git;a=commit;h=97d7f02dcc4848f5f7a64ecd5b32c9beffb7f359 [15:56] but i think it might be apart of the lxc-reworking [15:57] zul: it still unconditionally (even in git head) drops CAP_SYS_BOOT [15:57] yep [15:58] so no way can shutdown work in the container [15:58] or reboot [15:58] *sigh* :) [15:58] zul: when you see a WIFSIGNALED(status) check under that waitpid, then they're trying reboot support === al-maisan is now known as almaisan-away === almaisan-away is now known as al-maisan [16:15] SpamapS: do you have any experience with backports? Would openmpi1.6 be a suitable candidate for precise-backports? precise has openmpi1.5 (source package); in quantal we're dropping that and openmpi1.6 from Debian has already synced. [16:16] rbasak: Would it be a new package in precise then? [16:16] ScottK: technically, yes. [16:16] What do you mean by technically? [16:16] ScottK: it would supercede openmpi1.5 in precise [16:16] (but we don't need to remove openmpi1.5 from precise) [16:17] How would it supersede it? Does it provide the same binary packages? [16:17] No, it provides a separate set of binary packages. [16:17] But it's based on the same upstream (just different upstream releases) === al-maisan is now known as almaisan-away [16:18] It's a library, hence the version number in the package name [16:18] No reverse depends. In Precise, all openmpi depending packages depend on openmpi (no version in name) which is 1.4 [16:19] Reason for 1.6 is improved ARM support [16:19] Does that make sense? [16:26] ScottK: is a new package a problem? [16:26] No. New package is totally easy. [16:26] As long as it's tested, it's a great candidate for backport. [16:27] hy [16:27] Great, thanks. [16:29] jamespage: re juju bugs, I'm going to comb through them today [16:30] SpamapS, that would be fantastic! [16:33] SpamapS, be harsh - if we are not ever going todo something please mark won't fix :-) [16:34] and feel free to bump anything that def won't make 12.04.1 to 12.04.2 or later [16:35] jamespage: indeed, I think there are maybe 2 or 3 things we'll fix in the next upload to precise-propsoed and the rest will get bumped [16:35] SpamapS, ack - please re-target as appropriate... [16:41] SpamapS: Does this bug exist? http://askubuntu.com/a/162373 if not, what package should it be reported against? [16:41] basically pretty motd makes things slow [16:46] jcastro: I think thats a bug in landscape that may be resolved in 12.04 [16:46] ok, /me investigates [16:46] thanks [16:51] adam_g, I assigned you the SRU for openvswitch - hope that was OK - looked like you already had it in hand [16:52] jamespage: yes, cool [16:52] adam_g, nice one === LglssSpdr is now known as bdunbarsr [16:56] jamespage: i actually pinged dan out of band about getting the bug updated with the proper SRU template, and i would prepare the package for -proposed. im sure he and his tema know more about the issue and regression potential than me [17:03] SpamapS: found it: https://bugs.launchpad.net/ubuntu/+source/pam/+bug/805423 [17:03] thanks [17:03] Launchpad bug 805423 in pam "pam_motd needs a module option to disable in-line dynamic updates" [Medium,Fix released] [17:03] not a decent tradeoff imo, === remix_auei is now known as remix_tj === remix_tj is now known as Guest52380 === Guest52380 is now known as remix_tj === cpg|away is now known as cpg [17:36] should i enable any automatic updates during install? and if so, why? [17:36] all, just security, or none? [17:41] blitzkrieg766: Usually security is good [17:41] danke === zyga is now known as zyga-afk [18:10] hallyn: 0.9.13 uploaded [18:20] zul: rockin' [18:28] http://paste.ubuntu.com/1088463/ <-- I thought the RAID had died, five drives died after a VERY BAD PSU, but the ones that mattered, survived \o/ [18:41] stgraber: ok, at this point lp:~serge-hallyn/ubuntu/quantal/lxc/lxc-api-getconfig is working with c->get_item and c->clear_item. [18:41] stgraber: get_item(lxc.cgroup) is not yet implemented (will return -1) [18:42] stgraber: that is one remaining to-do, the other is to have c->load_config() clear out any already-loaded configuration. (unless you think we shouldn't?) [18:43] stgraber: if lxc-api-getconfig works for you, either let me know and i'll push it into the main api branch, or you can just grab my 0094 patch which includes everything [18:45] hallyn: I can see some benefits of not clearing the config on load_config(), mostly if you want to stack a bunch of configs, though I suppose clearing by default makes sense [18:45] hallyn: would adding a parameter for that work for you? [18:46] hallyn: or alternatively make load_config() never clear the config and support clear_config() to flush everything [18:50] stgraber: hm, let's leave it as is then. [18:50] stgraber: a clear_config(0 will be good, [18:50] i just need to check what else i need to clear besides what i already support with clear_config_item() [18:51] but so you don't need that right now? (i was getting doubled-up configurations in my test case, which made my test case counting nics returned by get_item("lxc.network") fail :) [18:52] and, separately, do you need get_item(lxc.cgroup.whatever) right now? If not i'd like to wait on that [18:52] in other words, i'd like to be done and let you use it for a while :) [18:54] hallyn: I'll have to look at the branch. I need a way to access the value of a lxc.cgroup... entry, though not its live value (from /sys/fs/cgroup) yet [18:55] so far I've been lucky enough not to get in a case where multiple load_config would break the world for me, but I can certainly see this happening so it's certainly going to be on the list of things we need to have before pushing upstream (or in Ubuntu) [18:55] stgraber: hm, ok. then maybe a 'get_item("lxc.cgroup.devices.allow")' will suffice, and be easy enough to do [18:56] hallyn: that's why I made the distinction between (get/set/clear)_config_item and (get/set)_cgroup_item in my mail ;) the former only deals with the lxc config without doing any live change, the later only deals with the live values without touching the config [18:57] stgraber: ok, lemme whip that up then [18:57] then i'll check it into your branch [18:57] cool, thanks [18:58] * stgraber gets back to reviewing the 120 bugs targeted for 12.04.1... [18:58] chao [18:58] that doesn't look right :) [18:59] i guess i'm hungry. more chow. === dendro-afk is now known as dendrobates [19:46] jamespage: looking at bug 944546 shouldn't that be moved to precise-updates? [19:46] Launchpad bug 944546 in libcommons-cli-java "StringIndexOutOfBoundsException in HelpFormatter.findWrapPos" [High,Fix released] https://launchpad.net/bugs/944546 [19:46] jamespage: it's currently targeted to 12.04.1 but you marked it incomplete as it's not clear it's actually a problem with anything in the archive [19:46] (in such case, the priority should probably be changed to something lower than high) [19:49] when I try to add a windows xp box to a domain i just created, it says "user not found" what am i doing wrong? [19:49] ubuntu server 12.04 [20:00] blitzkrieg766: samba domain? [20:05] yes ROYK, samba domain [20:06] i think somehow i've screwed up the permissions, [20:06] never tried samba domains, sorry [20:06] bummer [20:06] lo [20:06] lol [20:06] * RoyK uses windoze machines for that sort of stuff [20:06] AD et al [20:06] yep === dendrobates is now known as dendro-afk [20:07] thats what i WAS doing.. but i've found this lovely company who stays away from the MS stack if possible [20:07] and... i.... LOVES it [20:08] freebsd as a host, most of the vm's are either freebsd or ubuntu server, it rocks [20:11] ok, another question.... [20:11] is there by default a group called "sysadmin" in ubuntu server? [20:11] 12.04 [20:13] blitzkrieg766: why, what exactly are you trying to do? [20:14] well, i've setup samba as a DC for windows machines, [20:14] and when I try to add an xp station to the domain, i get a "user not found" error [20:14] i think the group for the user's credentials i'm using is wrong, [20:15] the instructions said I had to also add that user to the "admin" group but there isn't one [20:15] and the page says admin should be there by default, [20:15] $ sudo cat /etc/group | grep sys [20:15] sys:x:3: [20:15] syslog:x:103: [20:16] blitzkrieg766: admin -> sudo now, iirc [20:17] the mediawiki package for "precise" is version 1:1.15.5-7. Anyway to get more updated package (1:1.19.x) for 12.04 server? [20:18] sw, ? [20:18] your syntax confuse me a little... i entered that command, [20:18] blitzkrieg766: what command? [20:19] sudo cat etc etc etc [20:19] souliaq: build it? https://launchpad.net/ubuntu/+source/mediawiki/ [20:19] i guess what i'm saying is I didn't understand the last part of your instructions [20:19] blitzkrieg766: you mentioned a 'sysadmin' group, so I listed all default groups and searched for ones containing sys showing that there isn't a 'sysadmin' group [20:19] ahhh [20:19] ok [20:19] blitzkrieg766: there used to be an 'admin' group, but that is now 'sudo' if I remember correctly. someone else will confirm [20:20] I remember something along those lines, anyway ... === bastidra1or is now known as bastidrazor [20:31] stgraber, I think you are right - as I got no response from the original reporter.... [20:32] I'm going to 'Won't Fix' it [20:32] thanks [20:35] stgraber: pushed to your tree [20:35] stgraber: for get_cgroup_item (live values), it might be best to use libcgroup. hope you're in no hurry, if you are shout. [20:36] i also assume you're happy with your python clone for now. again shout if not === sw is now known as ws === ws is now known as sw [20:38] hallyn: yeah, get_cgroup_item isn't high priority, neither is clone() as these should be fairly easy to implement in python (well, clone was at least) [20:39] stgraber: wonder how bad it woudl taste to have liblxc link against libcgroup to reuse cgget/cgset. [20:39] but, worry about that later. [20:41] hallyn: AFAICT libcgroup1 doesn't depend on anything other than libc so it should be a cheap dependency to add to lxc === nxvl_ is now known as nxvl [20:43] stgraber: now that libcgroup doesn't introduce its upstart jobs and daemons, yes [20:44] byoby-enable enables stuff in my homedirectory, which isn't so nice, because my homedir is on NFS... [20:45] hallyn: daemons and upstart jobs that's libcgroup-bin right? we just want libcgroup1, we don't need libcgroup-bin in lxc [20:46] hallyn: testing on 12.04, libcgroup1 installs fine and doesn't pull libcgroup-bin, it only contains the library (/lib/libcgroup.so.1.0.37) [21:03] stgraber: oh yeah. i was first thinking of the 'cgget' and 'cgset' binaries, for use by python. but yeah for the c lib i wouldn't need that. [21:04] hallyn: oh right, yeah, for python I'd probably just parse the cgroupfs, I don't like the idea of depending on libcgroup-bin (especially as most of my test machines are 12.04 ;)) [21:06] jamespage: should bug 920197 be assigned to zul? (for the swift task) [21:06] Launchpad bug 920197 in swift "[SRU] webob last stable version 1.1.1 response header bug" [Undecided,Confirmed] https://launchpad.net/bugs/920197 [21:14] jdstrand: hey. looking at bug 1015154. it looks to me like 'fixing' that requires basically giving up on restricting libvirt-qemu at all? [21:14] Launchpad bug 1015154 in libvirt "virt-aa-helper refuses to create unix socket for a serial port" [Undecided,New] https://launchpad.net/bugs/1015154 [21:17] hallyn: why do you say that? virt-aa-helper 'just' needs to be made aware of the xml and add the path to /etc/apparmor.d/libvirt/libvirt-*.files [21:18] just like we do with the others [21:18] jdstrand: oh. yeah. [21:19] it shouldn't be hard to do (thought it isn't something I can do anytime soon (vacation coming up)) [21:19] s/thought/though/ [21:20] jdstrand: great, thanks. No I was just thinking wrongly. Will mark it confirmed/med [21:20] cool [21:21] stgraber: for bug 1013549, we really should get the one-line patch from the description into quantal next time we update [21:21] Launchpad bug 1013549 in lxc "lxc-clone fails for xfs fs on lvm" [Medium,Triaged] https://launchpad.net/bugs/1013549 [21:21] hm, well i guess we can't take it as is, but... === cpg is now known as cpg|away [21:21] lemme just send a patch upstream for now [21:39] hallyn: bug 974584 is targeted for 12.04.1 but not assigned to someone, are you the one working on it? [21:39] Launchpad bug 974584 in lxc "Semaphores cannot be created in lxc container" [High,Fix released] https://launchpad.net/bugs/974584 [21:40] stgraber: no. it's fixed in debian. nothing for me to do [21:40] stgraber: (see my last commen tin the bug) [21:41] hallyn: who's taking care of merging the package from Debian, cherry pick the fix and push the SRU to proposed? [21:42] stgraber: no idea, i was hoping slangasek would respond [21:43] stgraber: i can give them a shot but dont' have upload rights to that one [21:43] also there is a pretty wide ubuntu delta, which is intimitading [21:45] hallyn: ok, I'll assign to canonical-foundations and bring it up at our next meeting [21:45] stgraber, if you don't get a response on bug 993249 this week I'm going to steal it - its a ridiculously easy and low impact fix [21:45] Launchpad bug 993249 in activemq "[SRU] activemq fails to start on Ubuntu 12.04" [Wishlist,Fix released] https://launchpad.net/bugs/993249 [21:46] stgraber: thanks. if you *prefer* to assign it to me i'll try it on monday. [21:46] jamespage: steal all the bugs you want, I certainly won't complain :) [21:52] i've got 'up route add -net 10.0.0.0/8 gw 10.0.0.1' in /etc/network/interfaces under the static config for the interface that has that gateway, but when i restart networking (or reboot the server) the route doesn't appear. Where did i go wrong? [21:52] pretty vanilla install of 12.04 server [21:59] hallyn, around ? [22:05] smoser: partly (only to d/l sles 10 for a qemu bug reproduce - so laggy network) what's up? [22:05] i boot an instance [22:05] put eth0 on a bridge [22:05] then try to run a kvm with tap attached to that bridge. [22:06] using http://smoser.brickies.net/git/?p=tildabin.git;a=blob;f=xkvm;hb=HEAD [22:06] i'm trying to network boot off of a tftpd that is running in the host [22:06] where host here means instance [22:06] :) [22:07] and immediately it locks up [22:07] ie, networking dies. reboot brings it back. [22:07] smoser: are you on q? [22:07] that was on q, yes [22:07] but i assume i'm just doing something stupid [22:08] smoser: yeah, come to think of it, maybe [22:08] smoser: i'm pretty sure the dhcp request goes to your 'host' dhcp server, which messes you up [22:08] smoser: how about creating a br1, starting a dhcp server in a container on there, [22:08] and then net-booting the kvm instance from that bridge? [22:09] thats actually a good solution i think [22:09] basically, what i was *trying* to do was: [22:09] * boot instance [22:09] * apt-get install maas [22:09] * kvm .... [22:09] such that the kvm would pxe boot from the maas server on that system [22:10] (and generally look like a new system to maas) [22:10] so i think your suggestion of doing the 'apt-get install maas' inside a lxc container is quite reasonable. [22:11] smoser: yeah so i think something like http://paste.ubuntu.com/1088856/ [22:11] (you can just 'lxc-console -n maasserv' to install maas and get the ip address) [22:12] does traffic get out of that network? [22:12] smoser: no [22:12] hm.. [22:12] i would kind of need it to (nat would be fine) [22:12] smoser: you can add a second nic on br0 in the container [22:12] ie, to get to the archive. [22:12] (or lxcbr0) [22:13] zul: 'round? [22:13] smoser: come to think of it, nat won't forward dhcp right? (i could be wrong) if so, then you could just use lxcbr0 as usual and hook kvm into that [22:13] hallyn, right. [22:13] smoser: do you only need the open net in the maas container, not on the nodes? [22:13] but who answers the dhcp on the lxcbr0 ? [22:13] your container [22:13] but who for the first? [22:14] clearly my container doesn't answer for itself, does it? [22:14] oh. [22:14] yeah, we have a dnsmasq running for it [22:15] hm.. [22:15] i have to play with this. [22:15] smoser: coudl try http://paste.ubuntu.com/1088862/ [22:15] what does the nat? [22:15] iptables [22:15] /etc/init/lxc-net.conf [22:16] smoser: but using http://paste.ubuntu.com/1088862/ you'd have lxcbr0 available to the container, while kvm insances would only have br1 to the container for dhcp [22:16] so the maas container would have to be set up to use eth1 for guests [22:16] hallyn, ok. i'll have to play with this. thanks though. [22:17] smoser: np. i may have to try it myself, sounds useful. [22:19] hallyn, so i could just set up a bridge, put the maas lxc container in it. [22:19] and have it serv dhcp, telling stuff the default route is the "host" [22:19] or whatever. [22:19] basically get nat that way [22:19] right? [22:22] hm.. hallyn ^ [22:24] looks like the answer was to move it above the "dns-nameservers" and "dns-search" parameters [22:54] I just did a ufw default deny incoming, and then ufw allow from MYIPADDRESS [22:54] and everybody remote can still ping/reach the server [22:55] smoser: sorry, my irc window ssh session apparently locked up and it just looked like noone was talking [22:55] smoser: but no, i don't think what you're saying is quite wha ti'ms aying [22:55] i'm saying, have the maas container have two nics: one on either br0 bridged with eth0, or on lxcbr0 (which is nat'ed to eth0) [22:55] the other nic on br1, which is private [22:56] then run your kvm VMs with tap on br1 only [22:58] * hallyn out [22:58] smoser: (ping if that wasn't clear) === Lcawte is now known as Lcawte|Away [23:02] hallyn, hm.. [23:02] but why do i need the complexity === cpg|away is now known as cpg === pdtpatrick_ is now known as pdtpatrick [23:22] hallyn, well, if you return, this seems like it should work for what i was wanting. [23:22] i create a bridge (using libvirt for simplicity... yes, i think that sounds funny too) [23:22] but anyway: http://paste.ubuntu.com/1088955/ [23:23] then i would boot a lxc container for my maas server on that bridge. [23:25] it woudl have to statically configure its networking including dns. the default route and gateway would be 10.0.5.1. [23:26] then, it can provide the dhcp server on that network and tell others to use 10.0.5.1 as the default route and even as dns. (libvirt runs a caching only dnsmasq for me there).