/srv/irclogs.ubuntu.com/2012/10/15/#ubuntu-server.txt

benbrodo I need to distribute a large number of files over several folders or can I put all of them in a single folder?00:12
benbrofor example, when handling user avatars or forum attachements00:12
TheLordOfTimethat's dependent on the forum software benbro00:13
TheLordOfTimephpBB for example stores uploads in one place, avatars in a separate area, but all in individual folders00:14
TheLordOfTimebut i dont know about others00:14
benbroTheLordOfTime: I'm implementing it myself00:14
benbroI'm asking about performance00:14
TheLordOfTimebenbro, ah.00:14
benbrois there a number N above which performance will degrade00:14
andolbenbro: Yes, for a sufficiently large N you will want to split files into different subfolders.00:25
andol(No, I don't have any good value for N)00:25
benbrook :)00:26
patdk-lapit's rather large00:29
patdk-lapand extreemly dependent on the filesystem00:29
patdk-lapmy netapp would have issues with >2k files per folder00:30
patdk-lapext* seems happy in 10k, even 50k00:30
benbroI'm using ext300:31
benbro10K or 50K is no that much00:31
qman__if you're expecting that many, you should probably store them in the database rather than as files00:31
qman__(many forum softwares already do this)00:32
benbroI thought that using a db for static files is a bad idea00:33
qman__only if you also store frequently changing data in the same table00:33
patdk-lapdepends00:33
=== n0ts_off is now known as n0ts
benbrousing several subfolder shouldn't be hard00:35
=== n0ts is now known as n0ts_off
=== dendro-afk is now known as dendrobates
=== cpg is now known as cpg|away
=== chincloud is now known as Guest19187
uvirtbotNew bug: #1066359 in openssh (main) "ssh not functional on xubuntu 12.10" [Undecided,Incomplete] https://launchpad.net/bugs/106635904:11
=== cpg|away is now known as cpg
=== dendrobates is now known as dendro-afk
d95I'm planning disk partitioning for a couple of new Ubuntu 12LTS servers.  I've read about problems arising from partitions not being aligned to cylinder boundaries.  I've seen conflicting info as to whether that's still a valid, current problem, or not.  Here's an older thread from a year and a half ago that suggests using gparted to get the alignment right.05:07
d95  If I'm installing a new UbuSvr 12LTS instance, will it's install process take care of doing that correctly?  Or do I really have to use some other tools to preformat the disks?05:07
d95its*05:07
=== dendro-afk is now known as dendrobates
adam_g_ /win 905:37
=== smw_ is now known as smw
=== n0ts_off is now known as n0ts
=== dendrobates is now known as dendro-afk
thierry_hi everyone, is there a possible way please to deactivate login on start? ( and be able to launch the system without needing an interaction)08:33
rbasakthierry_: on server? I'm not sure that makes sense! Did you mean on the desktop, and if so you probably want to ask in #ubuntu?08:47
thierry_yup on server rbasak  :)08:47
rbasakIt already starts without needing an interaction, doesn't it?08:48
rbasakAnd you want a shell prompt on start without a login?08:48
thierry_rbasak:  nope, it asks for a username08:49
thierry_and a login08:49
rbasakBased on what I think you want08:50
rbasakYou probably want to edit /etc/init/tty1.conf08:50
rbasakLook at the manpage for getty under the "-a" option08:50
thierry_yup , that's what i'm doing :)08:50
thierry_i'm testing08:50
rbasakYou're welcome.08:50
thierry_thanks!08:50
thierry_it worked :)08:53
=== doko_ is now known as doko
=== Juniper|McCloud is now known as Juniper`
=== balloons is now known as Guest98741
=== cpg is now known as cpg|away
=== CrypticSquared is now known as CrypticS_
=== dendro-afk is now known as dendrobates
=== chincloud is now known as Guest81013
uvirtbotNew bug: #1066834 in awstats (main) "LevelForFileTypesDetection=0 produces unexpected results" [Undecided,New] https://launchpad.net/bugs/106683411:45
drag0niushow would i recover some files recently deleted?12:06
drag0niusim not rly sure what happened but files from folder disappeared ;d12:06
=== Shehrazad is now known as ElixirVitae
=== chincloud is now known as Guest3478
suigenerishi12:19
suigenerisI have a dedicated server and am creating a VPS. then I logged in and got the error Error, some other host already uses address x.x.x.x when I typed ifup eth0. any ideas?12:21
skaetroaksoax,  any update on https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1066556 ?12:34
uvirtbotLaunchpad bug 1066556 in debian-installer "MAAS installed via d-i/tasksel: fails when opening the browser to /MAAS" [Critical,Confirmed]12:34
skaetjamespage, are you aware of any updates on MAAS issue?  is roaksoax going to be online today?12:41
jamespageskaet, he's west coast US today so may be a little late starting - I will take a look anyways12:53
skaetthanks jamespage,  want to know if we're going to need a d-i fix (and it should be included in next set of image spins), or if its going to be localized to server image.13:03
=== Ursinha-afk is now known as Ursinha
=== chincloud is now known as Guest70546
=== n0ts is now known as n0ts_off
=== shantorn is now known as kd7jwc
xnox"<stgraber> the new livefs server install is really impressive! Installing a maas VM here took 3 minutes including answering all the d-i questions ;)"13:30
ogra_then we really need to improve the questions :P13:34
varachi, i'm looking for support for cloud-init, is there a dedicated channel or should i ask here ?13:36
varaci'm trying to set up a static ip with cloud-init and i doesn't have success13:38
tomreynhi13:39
tomreyni need to copy data from remote server1 (which i can authentocate to using an ssh key) to remote server2 (which i can authenticate to using an ssh key). i've read that this is possible using agent forwarding, but i've also read that agent forwarding is considered somewhat insecure and should be prevented.13:39
tomreynis there another way to achieve this in a more secure fashion?13:40
tomreyni.e. should i use this or is it a bad idea? scp -v -o "ForwardAgent=yes" -p -r root@SERVER1:/PATH/TO/DIR root@SERVER2:/PATH/TO/DIR13:40
pmatulistomreyn: one option is to copy between 2 remote hosts (a,b) is using the localhost (c) as a proxy (goes through it).  a -> c -> b13:45
pmatulis(delete first 'is')13:45
tomreynpmatulis: where "localgost" is the controlling client?13:46
tomreynnot an option here because of bandwidth13:46
pmatulistomreyn: otherwise, copy directly but the public key of 'a' needs to be installed on 'b'13:47
tomreyni was hoping for some proxycommand trickery13:48
=== Guest98741 is now known as balloons
=== balloons is now known as Guest27823
=== Guest27823 is now known as balloons_
balboahuhm. how do you get the default config files back for a package? I removed them and re-installed the package but hey didn't come back :)13:58
drag0niusthere was purge command14:01
balboahah fixed it14:01
balboahdpkg -i --force-confmiss14:01
=== kd7jwc is now known as shantorn
=== dendrobates is now known as dendro-afk
=== balloons_ is now known as balloons
=== n0ts_off is now known as n0ts
uvirtbotNew bug: #919451 in php5 (main) "PHP CGI arbitrary code execution vulnerability" [Undecided,Fix released] https://launchpad.net/bugs/91945114:31
LarrysDeskHi.  I'm about to DL a UbuntuServer install CD.  The "alternate install CD" seems to have more capabilities on it.  Is there any reason NOT to use the alternate?14:36
uvirtbotNew bug: #1066916 in tftp-hpa (main) "package tftpd-hpa 5.2-1ubuntu1 failed to install/upgrade: el subproceso instalado el script post-installation devolvió el código de salida de error 127" [Undecided,New] https://launchpad.net/bugs/106691614:41
xnoxLarrysDesk: alternate cd are dead. The server & alternate cd installation options are the same.15:02
xnoxLarrysDesk: as both use(d) the same text based installer.15:02
xnoxLarrysDesk: server cd has d-i + more server related packages (others can be fetched over the network at install or post-install time). alternate had d-i + more desktop related packages (others can be fetched over the network at install or post-install time)15:03
uvirtbotNew bug: #1066929 in maas (main) "duplicate entry added to named.conf.local on each package reconfigure" [Undecided,New] https://launchpad.net/bugs/106692915:21
uvirtbotNew bug: #1066935 in maas (main) "named.conf.rndc.maas is insecure by default" [Undecided,New] https://launchpad.net/bugs/106693515:21
jamespagepmatulis, any chance you could review/merge https://code.launchpad.net/~james-page/serverguide/12.10-updates/+merge/12890615:24
uvirtbotNew bug: #1066938 in maas (main) "maas-dns changes default bind rndc key and breaks initscripts" [Undecided,New] https://launchpad.net/bugs/106693815:31
fusion27I'm kind of a noob sys admin, been programming for a long time, but I'm the only that thinks linux is cool here at work so I "earned" the task of setting up a Java server for a new client.  I stuck it on AWS with Ubuntu server, which is pretty sweet.  Got them set up with Tomcat 7, MySQL, Git and Java 6.  They now want a mail server, is there a de-facto best one to set up?  I've never set up a mail server for someone.15:41
uvirtbotNew bug: #1066942 in munin (main) "cps_ plugin autodetection is broken" [Undecided,New] https://launchpad.net/bugs/106694215:42
pmatulisjamespage: pushed up.  we'll see if anyone minds the lateness...15:43
jamespagepmatulis, thanks!15:43
=== Devo-Kun is now known as DevoKun
=== DevoKun is now known as Devo-Kun
krewhello15:54
krewhow i can crete server vpn on ubuntu?15:55
RoyKyes15:55
RoyKoh15:55
RoyKhow...15:55
RoyKvpm connection?15:55
RoyK!vpn15:55
ubottuFor more information on vpn please refer to https://wiki.ubuntu.com/VPN15:55
krewubuntu 10.02 ?15:57
RoyKno such thing15:57
krewubuntu 10.0415:57
TheLordOfTimeRoyK, lol?15:57
TheLordOfTimeRoyK, did you read it as "can i create server vpn on ubuntu?"15:57
RoyKyes15:57
TheLordOfTimeheh15:58
RoyKlong day at the office - hour after hour in meetings...15:58
TheLordOfTimeRoyK, try that, with no sleep16:00
* TheLordOfTime had less than 3 hours sleep last night, and has had midterms all day. same thing as meetings, no?16:00
RoyKdunno - meetings can be rather heavy too, discussing secure storage and such with scientists that sometimes think that even if a system is meant to be secure, they want all the basic functionality like internet access, printing etc. takes some time to rub in that, no, that's not secure etc16:03
=== n0ts is now known as n0ts_off
jamespagepmatulis, does the trunk get published anywhere?16:06
pmatulisjamespage: no.  it is just built before release.  you can build it yourself however very easily16:13
pmatulisjamespage: the html/pdf that is16:13
jamespagepmatulis, I wanted to point someone else at it16:13
jamespage(did a local build to check it looked OK)16:13
pmatulisjamespage: ok16:13
catphishi'm having trouble with tftp and pxe, transfers seem to fail with strange retransmissions16:42
catphishthe same tftp transfers to a non pxe client seem to work fine16:42
krewvpn server ...16:44
krew<<RoyK>> please ask on the channel16:44
RoyKkrew: yeah, PMing for support is bad netiquette16:45
krewhow can I do to create my vpn server?16:45
RoyK!openvpn16:45
ubottuOpenVPN is a vpn technology in Ubuntu, sudo apt-get install openvpn and then see http://openvpn.net/ and see the documentation "HOWTO" noting you have already installed it. ;-) It rocks!16:45
=== chincloud is now known as Guest61327
drag0niusmy networking starts only after timeout17:09
drag0niusthink it hangs on eth1 or wlan017:09
drag0niusbut after timeout it starts17:09
=== matsubara is now known as matsubara-lunch
drag0niushttp://pastebin.com/d2NZxVbk heres my /etc/network/interfaces17:10
RoyKdrag0nius: why would you use br0 with both eth0 and wlan0?17:13
RoyKdrag0nius: IIRC you also need configs for those ports to bridge from, they might not be up-ed17:13
RoyKand again, a default gateway shouldn't be set for more than one NIC, since the gateway is system global17:14
drag0niusim using server as router and br0 stands for LAN17:15
drag0niuswith eth0 as WAN17:15
drag0niusso i guess i should delete gateway from br017:15
drag0niusits eth1 and wlan0 bridge btw17:16
RoyKdelete that gateway17:18
RoyKthe gateway goes into the routing table in the server's ip stack17:18
RoyKaka route add -net default gw x.x.x.x17:18
LarrysDeskI'm installing Ubuntu Server.  In the installer, I ctrl-alt-F2 to get to a shell, and want to install grub to a specific drive's (/dev/sdb) MBR.  When I exec "grub-installer /dev/sdb", I get a bunch of errors:17:19
LarrysDesk"mount: mounting proc on /dev/sdb/proc failed: Not a directory;mount: mounting sysfs on /dev/sdb/sys failed: Not a directory;chroot: can't change root directory to /dev/sdb: Not a directory;chroot: can't change root directory to /dev/sdb: Not a directory;Wrong number of args: mapdevfs <path>"17:19
RoyKchroot to /target and mount -a17:20
RoyKthen try again17:20
RoyKbtw, if installing on mirrored drives, the installer should do the grub things right for you17:20
LarrysDeskRoyK It's an external drive that'll get moved - I need to 'point' to it. that worked! AND i now "have" grub-install from ubuntu, rather than just grub-installer from BusyBox17:21
LarrysDeskum.  after a ctrl-alt-f2, how do I get BACK to the installer?17:22
RoyKalt+(left/right)17:22
LarrysDeskRoyK: wow.  the 'mysteries' on installs .... thanks!17:23
drag0niuswhy would you even use ctrl?17:23
RoyKalt+left/right is just console business17:23
LarrysDeskdrag0nius: because I was told to ...17:23
RoyKdrag0nius: perhaps because that's what needed if doing it from X17:23
LarrysDeskRoyK: worked like a charm, thanks!  I'm booted from the HD on which I installed Ubuntu-Server.  To my surprise, I'm at "Ubuntu Desktop".  I though server install had NO 'desktop' stuff -- AND, was expecting to get dropped into an install step -- somewhere -- where I select "security updates automatically" and "install OpenSSH server".17:30
LarrysDeskThat's from old Ubu10 notes -- has Ubu12 change the way of things?17:30
RoyKno desktop is installed with ubuntu server17:30
RoyKdid you have an old installation there?17:30
LarrysDeskRoyK: I'm staring right at it ...  Nope.  Brand new install to a brand new disk.17:31
RoyKyou have to specifically install the ubuntu-desktop metapackage to get ubuntu desktop17:31
RoyKprobably harry potter is lurking behind you17:32
LarrysDeskNever specified a thing ...17:32
RoyKyou can't even specify ubuntu desktop from the normal server install17:32
RoyK(iirc)17:32
RoyKwas this 12.04?17:33
LarrysDeskRoyK: No, 12.04.1. ubuntu-12.04.1-server-amd64.iso17:33
RoyKthat doesn't include a desktop17:35
LarrysDeskWell, it came from somewhere ... this is the 1st Ubuntu install I've ever done.  I've DL'd one CD ...17:38
LarrysDeskanyone, I now know it should NOT be there.  I'll DL from a different mirror, and try again.17:39
RoyKjust checked on a server install - couldn't find desktop anywhere17:40
LarrysDeskThen more "mysteries" ...17:40
RoyKdid you go through "manual packages"?17:40
RoyKusually I just install ssh from the installer and do the rest manually17:41
LarrysDeskRoyK: nope.  never got to it.  installed the bootloader, set the system clock, the CD autoejected, then I rebooted.17:42
RoyKwell, I just installed an ubuntu server as a VM17:42
RoyKno X up17:42
RoyKnothing17:42
RoyKjust plain old ubuntu server17:43
RoyKand by "just" I mean now, after you said desktop came up17:43
RoyKjust to test17:43
holsteinLarrysDesk: are you wanting a desktop? you might want to get the main ubuntu live CD... and install from there, or xubuntu17:43
LarrysDeskClearly, mine's possesed, then :-/17:43
RoyKor lubuntu17:44
LarrysDeskholstein: Nope.  Want a server.  No graphics/DE kruft ...17:44
RoyKLarrysDesk: perhaps you chose the "alternate" cd?17:44
RoyKthat's got x17:44
holsteinLarrysDesk: then, just install the server and dont install a DE17:44
RoyKalternate looks a bit like server17:45
RoyKtoo bad they discontinued that in 12.1017:45
LarrysDeskRoyK: I have ubuntu-12.04.1-server-amd64.iso.  holstein I did, and I didn't.17:45
RoyKseems like you have an old install on that usb drive17:45
LarrysDeskRoyK: Nope.17:45
RoyKwell, ubuntu server doesn't include X17:46
RoyKso it's got to come from somewhere17:46
LarrysDeskUnless Western Digital is shipping 2TB Enterprise drives preconfigured ...17:46
holsteinLarrysDesk: it *does* work though.. the facts are as follows.. the default ubuntu server iso doesnt install a DE... this is your first install of ubuntu17:46
RoyKperhaps there was some old shite on that17:46
holsteinLarrysDesk: you might just need to take a minute to get used to the process, or make sure you are booting into the new OS you installed17:46
LarrysDeskI fully formatted the drive myself -- so it would have to have survived formatting17:46
RoyKwell, try again17:46
holsteinLarrysDesk: or, you would have the alternate desktop iso by mistake17:47
LarrysDeskholstein: THere's only ONE Ubuntu instance around here.  If I'm booted to Ubuntu, and I am, then it is.17:47
holsteinLarrysDesk: or you ran a command after install that pulled in a DE17:47
LarrysDeskholstein: no, and, no17:47
holsteinLarrysDesk: sure, but *something* is going on... and we can only help you troubleshoot as volunteers here17:47
RoyKLarrysDesk: just try again - I've installed ubuntu server perhaps 100+ times, and no GUI has shown up17:47
RoyKLarrysDesk: and give me the md5sum of that iso17:48
LarrysDeskRoyK: Right.  Like I said above ... [10:38] <LarrysDesk> anyone, I now know it should NOT be there.  I'll DL from a different mirror, and try again.17:48
holsteinLarrysDesk: you could just check the md5 sum17:48
LarrysDeskholstein: As I said, I did17:48
holsteinLarrysDesk: there is an alternate installer that is not the server version17:49
LarrysDeskasked, and answered.17:49
LarrysDeskI have ubuntu-12.04.1-server-amd64.iso17:49
holsteini suppose im just skeptical if this is your first experience installing ubuntu17:50
LarrysDeskok17:50
holsteindid you install *anything* after installing the os?17:50
LarrysDeskno17:50
RoyKLarrysDesk: really, there is no X on the ubuntu server CD17:50
LarrysDeskok17:50
LarrysDeskRoyK: sry, missed your question above ... md5sum of the current iso -> a8c667e871f48f3a662f3fbf1c3ddb1717:54
RoyKlemme wait for the download first17:54
RoyKcanonical's servers are dead slow17:54
pmatulisis there a tasksel thingy that will bring X in?17:55
RoyKdunno - didn't find any when I just tried17:55
RoyKan "apt-get install ubuntu-desktop" should do it17:56
LarrysDeskRoyK: I just DL'd a new instance from the fastest server I could find: http://linuxfreedom.com/ubuntu-releases/.pool/ubuntu-12.04.1-server-amd64.iso17:56
RoyKI'll just wait for the one from ubuntu.com17:56
=== cpg|away is now known as cpg
RoyK10 minutes left17:56
RoyKgetting 6-700kB/s on a 60Mbps link17:57
pmatulisLarrysDesk: you should be able to look at the apt logs and see when, and in what context, X packages were introduced to your system17:57
patdk-wkroyk, odd, I was getting 9MB/sec from uk to us :)17:58
LarrysDeskpmatulis: Not anymore ... disk's been reformatted.  Starting fresh ...17:58
pmatulisLarrysDesk: oh well17:58
=== matsubara-lunch is now known as matsubara
TheLordOfTimei need a release person to set something against precise:  https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/106555518:13
uvirtbotLaunchpad bug 1065555 in nginx "Known segfault in 1.1.19 (the current stable)" [High,In progress]18:13
TheLordOfTimethat's supposed to be set in Precise afaict18:14
=== cpg is now known as cpg|away
=== chincloud is now known as Guest43483
drag0niusim trying to run executable file18:47
drag0niusand getting no such file or directory18:47
drag0niusany ideas?18:47
shaunohow are you trying to run it ?18:47
drag0nius./utserver18:47
drag0niuseven from autocompletion18:48
drag0niusits pretty much fresh install18:48
drag0niusof ubuntu server18:48
drag0nius-su: ./utserver: No such file or directory18:50
=== cpg|away is now known as cpg
drag0niusthink i got it, need ia32-libs19:01
uvirtbotNew bug: #1067029 in lxc (universe) "lxc-start fails on 'lxc-create -t ubuntu-cloud' container" [Undecided,New] https://launchpad.net/bugs/106702919:30
=== cpg is now known as cpg|away
smoserhallyn, ping20:21
smoseri do not think https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1067029 is a dupe\20:21
uvirtbotLaunchpad bug 1067029 in lxc "lxc-start fails on 'lxc-create -t ubuntu-cloud' container (dup-of: 1060404)" [High,New]20:21
uvirtbotLaunchpad bug 1060404 in upstart "update-grub runs and fails in containers" [Undecided,Confirmed]20:21
smoserof bug 106040420:21
uvirtbotLaunchpad bug 1060404 in upstart "update-grub runs and fails in containers" [Undecided,Confirmed] https://launchpad.net/bugs/106040420:21
smoseroh. i see. you've mounted /de/vtmpfs20:22
hallynsmoser: right, it's not a dup of the symptom, but the cause20:28
hallynSpamapS: are you by any chance available for a lxc precise-proposed accept?20:29
smoserhallyn, i was just confused as to it being a symptom even. as in order to get to 'update-grub', you would have had to have gotten well past where i was failing.20:33
smoser(when upstart tried to open /dev/console)20:33
keithzg_Hmm. I've set up LDAP authentication on a local network, but on this most recent client-server although users can authenticate just fine, sudo-ldap fails with "sudo: ldap_sasl_bind_s(): Can't contact LDAP server". Anyone have any ideas why that might be?20:42
=== cpg|away is now known as cpg
zenHi, i've got a juju question i could not answer myself. I need to deploy node.js and the node-app charm quite works, but i need to add git repositories which are ssh-key protected. so a sub-charm which adds "my" ssh key21:26
keithzg_Nobody has any ideas about my Sudo-LDAP question? I've gotten it half-working now by removing the symlink of /etc/sudo-ldap.conf -> /etc/ldap/ldap.conf, but now it times out and claims the passwords are incorrect, even though they were just used for logging in.21:31
sarnoldkeithzg_: heh, how is timing out forward progress? :)21:34
keithzg_sarnold: okay, maybe just sideways progress; I've proven I can at least change the error condition ;)21:35
sarnoldkeithzg_: aha! :) that's optimism. :)21:35
sarnoldkeithzg_: can sudo properly resolve the hostnames?21:36
Mikevinmy startup scripts don't see my homefolder it seems, could this be because of the homefolder not being decrypted on startup?21:37
keithzg_sarnold: actually, i think I have it working now; seems it was an issue with the cert21:40
keithzg_sarnold: at least, adding "tls_checkpeer no" made it magically work21:40
* keithzg_ clearly fails at certificate signing and utilization21:41
sarnoldkeithzg_: hrm. if that variable does what I think it does, you run the risk of exposing the password to a fake ldap host21:41
keithzg_sarnold: indeed, but at least I know now that the issue is the certificate; I'm actually trying to get it to authenticate against a series of LDAP servers, arranged for failover (and replication within the cluster)21:44
keithzg_sarnold: for now, I've commented back out tls_checkpeer and pointed tls_cacertfile towards the .pem for one specific server, and that seems to be working21:45
sarnoldkeithzg_: do your servers shre the .pem?21:45
sarnoldI'm sure that made sense somewhere.21:46
keithzg_sarnold: yeah, they do, but IIRC I put the hostname into it when I signed the certificate, so that's probably where it's choking on. Trying to figure out now if one can sign a cert with multiple cn= fields, or whatnot; I'm kindof dim when it comes to ssl certificates.21:48
sarnoldkeithzg_: oof, seems unlikely, that's what that whole SNI mess is about. :/21:48
keithzg_sarnold: yeah, I wasn't originally thinking about replication, so I made some foolish decisions early on in this process, heh21:48
sarnoldkeithzg_: can you do something cheap like get them all to answer to the same hostname?21:49
* TheLordOfTime pokes SpamapS21:50
keithzg_sarnold: Hmm, well the idea is to have it automatically failover if one of the hosts is unreachable.21:51
sarnoldkeithzg_: at least irc.oftc.net does similar, DNS round robin... hosts get added and removed from DNS queries based on load, availability, location, etc. and all are perfectly happy to be known as "irc.oftc.net"...21:52
keithzg_sarnold: I know you can put wildcard entries into the CN field, so I could put "cn = *.mynetworkname.internal" . . . but that doesn't really accomplish much then. So I'm hoping there's an option in between specific hostnames and wildcards21:52
sarnold*.ldap.example.com?21:53
keithzg_sarnold: yeah, and that's actually one of the first steps right now, planning on making the LDAP server(s) primarily accessed through ldap.yadda.yadda21:53
daniellogHi, has anyone installed sickbeard on their server?21:54
keithzg_sarnold: the way the primary sysadmin has things set up here though I'm not sure it'd be easy to redefine that alias on the fly in any way beyond manually21:54
sarnoldkeithzg_: indeed, probably neither (wildcard, rr dns) are things to do on a whim...21:55
danielloganyone?21:59
uvirtbotNew bug: #1067101 in lxc (universe) "processes terminated with status (N) on lxc-start" [Undecided,New] https://launchpad.net/bugs/106710122:06
hallynstgraber: if i push something to ubuntu:lxc right now, will that end up copied into  lp:ubuntu/r/lxc  as far as you know?22:27
Davieyhggdh: Hey, are you around?22:40
Davieyg0bl1n: would yu be able to validate the MAAS install fix?22:40
Davieyerr, hggdh ^^22:41
stgraberhallyn: I think it'll, yes.22:54

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