[Bug 1519331] Re: Mail delivery fails until restarting postfix

2015-11-24 Thread Erik Auerswald
In light of the above the bug seems to be cause by interaction of the
packages postfix, resolvconf, and network-manager by using postfix on a
portable desktop machine as opposed to a server with static network
configuration.

Since I am using mutt as mail client, I need a local MTA. Postfix seemed
a valid choice, especially with the simple configuration using a smart
host for all mail delivery. But it seems desktop GNU/Linux does not
support this classic setup any more. :-(

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix in Ubuntu.
https://bugs.launchpad.net/bugs/1519331

Title:
  Mail delivery fails until restarting postfix

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/1519331/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1519331] [NEW] Mail delivery fails until restarting postfix

2015-11-24 Thread Erik Auerswald
Public bug reported:

Every now and then postfix installed on my laptop stops delivering
mails. I detect this problem after wandering about no answers to my
emails, or by checking the current mail queue, which should be empty
when I am at the office.

I use postfix to deliver all sent mail to the company SMTP server. The
local postfix does not receive outside mail.

The mail queue shows errors of the type:

(Host or domain name not found. Name service error for name=
type=: Host not found, try again)

When I manually check host name resolution, it works fine. It seems,
postfix either does not retry name resolution, or somehow name
resolution fails for postfix, but not other programs. Network
connectivity is fine when this problem occurs (I read my mail via IMAP
w/o local message body cache from the same server used as smart host,
use SSH to other hosts, and surf the web -- I never noticed network
problems when the postfix mail delivery did not work).

To remedy the situation I can just restart postfix and flush the mail
queue. But I need to detect the problem, and postfix should™ recover on
its own.

I am using IPv6 privacy extensions (Ubuntu default) in a dual stack IPv4
and IPv6 network. Both local (company) and remote servers are accessible
via IPv6, thus I am actively using IPv6 for many connections. I have no
idea if this is related to the problem, but the error shows a failure to
resolve a quad A record.

Mandatory information:
1)
$ lsb_release -rd
Description:Ubuntu 14.04.3 LTS
Release:14.04

2)
$ apt-cache policy postfix
postfix:
  Installed: 2.11.0-1ubuntu1
  Candidate: 2.11.0-1ubuntu1
  Version table:
 *** 2.11.0-1ubuntu1 0
500 http://ftp.uni-kl.de/pub/linux/ubuntu/ trusty-updates/main amd64 
Packages
100 /var/lib/dpkg/status
 2.11.0-1 0
500 http://ftp.uni-kl.de/pub/linux/ubuntu/ trusty/main amd64 Packages

3)
I expected postfix to deliver the queued mail. If there was a (temporary, 
perhaps very short) network problem, postfix should recover automatically after 
the problem was resolved.

4)
Postfix stopped delivering mails.

** Affects: postfix (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix in Ubuntu.
https://bugs.launchpad.net/bugs/1519331

Title:
  Mail delivery fails until restarting postfix

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/1519331/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1519331] Re: Mail delivery fails until restarting postfix

2015-11-24 Thread Erik Auerswald
I might have found the reason for this behaviour:

1) Without network connectivity, the file /etc/resolv.conf does not
contain any useful information (just two comment lines).

2) After establishing network connectivity, the file /etc/resolv.conf
contains 127.0.1.1 and a correct search path as received via DHCP.

3) Postfix copies the file /etc/resolv.conf to
/var/spool/postfix/etc/resolv.conf upon startup. If postfix is started
before the network is up, this file will not allow name resolution.
Every other application uses /etc/resolv.conf and works fine.

Perhaps Network-Manager could restart postfix upon connection-up events?
Can this be configured?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix in Ubuntu.
https://bugs.launchpad.net/bugs/1519331

Title:
  Mail delivery fails until restarting postfix

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/1519331/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1440263] Re: CloudStack reset password not working

2015-11-04 Thread Erik Weber
Yes, would appreciate if this was backported to trusty as well.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to cloud-init in Ubuntu.
https://bugs.launchpad.net/bugs/1440263

Title:
  CloudStack reset password not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1440263/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1435080] Re: mysql-server upgrade hangs dpkg --reconfigure

2015-09-11 Thread Kristian Erik Hermansen
*** This bug is a duplicate of bug 1421303 ***
https://bugs.launchpad.net/bugs/1421303

Ultimately, apparmor is the culprit. I noticed that the file
/etc/apparmor.d/usr.sbin.mysqld has a line:

  /run/mysqld/mysqld.sock r,

Which means that the socket file will never be able to be written the
first time, which seems a bug to me. I made it this instead:

  /run/mysqld/mysqld.sock rw,

Works great now. I made a bunch of changes and many files have been
edited. I think there may have been some other lines I edited, like:

  /run/mysqld/mysqld.pid rw,
  /var/log/mysql.log rw,
  /var/log/mysql.err rw,
  /etc/mysql/mysql.conf.d/** rw,
  /etc/mysql/mysql.cnf rw,
  /etc/mysql/my.cnf rw,

If you can't figure out, then temporarily disable apparmor and change
the apparmor profile until you get it working.

/etc/init.d/apparmor stop

Then mysql should work again:

/etc/init.d/mysql restart

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.6 in Ubuntu.
https://bugs.launchpad.net/bugs/1435080

Title:
  mysql-server upgrade hangs dpkg --reconfigure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.6/+bug/1435080/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1486033] [NEW] package libsnmp-base 5.7.2~dfsg-8.1ubuntu3.1 failed to install/upgrade: package libsnmp-base is already installed and configured

2015-08-18 Thread Erik Somera Luviano
Public bug reported:

It was an update

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: libsnmp-base 5.7.2~dfsg-8.1ubuntu3.1
ProcVersionSignature: Ubuntu 3.13.0-61.100-generic 3.13.11-ckt22
Uname: Linux 3.13.0-61-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.11
AptdaemonVersion: 1.1.1-1ubuntu5.2
Architecture: amd64
Date: Tue Aug 18 08:07:15 2015
Dependencies:
 
DuplicateSignature: package:libsnmp-base:5.7.2~dfsg-8.1ubuntu3.1:package 
libsnmp-base is already installed and configured
ErrorMessage: package libsnmp-base is already installed and configured
InstallationDate: Installed on 2014-11-22 (269 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
PackageArchitecture: all
SourcePackage: net-snmp
Title: package libsnmp-base 5.7.2~dfsg-8.1ubuntu3.1 failed to install/upgrade: 
package libsnmp-base is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: net-snmp (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: already-installed amd64 apport-package need-duplicate-check trusty

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp in Ubuntu.
https://bugs.launchpad.net/bugs/1486033

Title:
  package libsnmp-base 5.7.2~dfsg-8.1ubuntu3.1 failed to
  install/upgrade: package libsnmp-base is already installed and
  configured

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1486033/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1251298] Re: Failed to sign on to LRMd with Heartbeat/Pacemaker

2015-08-13 Thread Erik Sornes
sorry, ubuntu 14.04

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to cluster-glue in Ubuntu.
https://bugs.launchpad.net/bugs/1251298

Title:
  Failed to sign on to LRMd with Heartbeat/Pacemaker

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cluster-glue/+bug/1251298/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1251298] Re: Failed to sign on to LRMd with Heartbeat/Pacemaker

2015-08-13 Thread Erik Sornes
This is still an issue in ubuntu 14.0.2 with full updates from 12. aug 2015.
The symlink resolves the problem, but why not fix the package?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to cluster-glue in Ubuntu.
https://bugs.launchpad.net/bugs/1251298

Title:
  Failed to sign on to LRMd with Heartbeat/Pacemaker

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cluster-glue/+bug/1251298/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1455766] [NEW] package nginx-core 1.6.2-5ubuntu3 failed to install/upgrade: subproces post-installation script geïnstalleerd gaf een foutwaarde 1 terug

2015-05-16 Thread Erik
Public bug reported:

Tried to install NGinx through terminal sudo apt-get install nginx

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: nginx-core 1.6.2-5ubuntu3
ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
Uname: Linux 3.19.0-16-generic i686
ApportVersion: 2.17.2-0ubuntu1
Architecture: i386
Date: Sat May 16 15:31:56 2015
DuplicateSignature: package:nginx-core:1.6.2-5ubuntu3:subproces 
post-installation script geïnstalleerd  gaf een foutwaarde 1 terug
ErrorMessage: subproces post-installation script geïnstalleerd  gaf een 
foutwaarde 1 terug
InstallationDate: Installed on 2015-05-04 (11 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 Vivid Vervet - Release i386 (20150422)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.7ubuntu4
SourcePackage: nginx
Title: package nginx-core 1.6.2-5ubuntu3 failed to install/upgrade: subproces 
post-installation script geïnstalleerd  gaf een foutwaarde 1 terug
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: nginx (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 vivid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nginx in Ubuntu.
https://bugs.launchpad.net/bugs/1455766

Title:
  package nginx-core 1.6.2-5ubuntu3 failed to install/upgrade: subproces
  post-installation script geïnstalleerd  gaf een foutwaarde 1 terug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1455766/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1440263] Re: CloudStack reset password not working

2015-04-15 Thread Erik Weber
I'm having issues where the core cloud-init fetches the password before
the per-boot script is run, thus invalidating the functionality
(passwords can only be fetched once).

IMHO, the datasourceprovider should only fetch the password if it
intends to do anything with it, which afaik is on the first boot only.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to cloud-init in Ubuntu.
https://bugs.launchpad.net/bugs/1440263

Title:
  CloudStack reset password not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1440263/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1373873] [NEW] package sa-compile 3.4.0-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 255

2014-09-25 Thread Erik Hedlund
Public bug reported:

N/A

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: sa-compile 3.4.0-1ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-61.93-generic 3.2.55
Uname: Linux 3.2.0-61-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.4
Architecture: amd64
Date: Thu Sep 25 12:49:46 2014
DuplicateSignature: package:sa-compile:3.4.0-1ubuntu1:subprocess installed 
post-installation script returned error exit status 255
ErrorMessage: subprocess installed post-installation script returned error exit 
status 255
InstallationDate: Installed on 2012-04-16 (892 days ago)
InstallationMedia: Ubuntu-Server 12.04 LTS Precise Pangolin - Beta amd64 
(20120327)
PackageArchitecture: all
SourcePackage: spamassassin
Title: package sa-compile 3.4.0-1ubuntu1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 255
UpgradeStatus: Upgraded to trusty on 2014-09-25 (0 days ago)

** Affects: spamassassin (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package dist-upgrade trusty

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to spamassassin in Ubuntu.
https://bugs.launchpad.net/bugs/1373873

Title:
  package sa-compile 3.4.0-1ubuntu1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 255

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1373873/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1042388] Re: qemu: Unsupported syscall: 257 (timer_create)

2014-08-23 Thread Erik de Castro Lopo
Unfortunately it doesn't work with armhf on amd64 linux-user.

Use the test program from comment #27 I get:

 schroot -c armhf -- ./timer_test_armhf 
About to call host's timer_create (0, 0x7fff6ee80720, 0x625b1f40)
Host's timer_create returns -22
Failed to create timer: Invalid argument
qemu: uncaught target signal 6 (Aborted) - core dumped
E: Child terminated by signal ‘Aborted’

(Yes I made very certain the schroot was using my freshly compiled
version of qemu-arm-static).

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu in Ubuntu.
https://bugs.launchpad.net/bugs/1042388

Title:
  qemu: Unsupported syscall: 257 (timer_create)

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1042388/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1042388] Re: qemu: Unsupported syscall: 257 (timer_create)

2014-08-09 Thread Erik de Castro Lopo
I've been looking at it over the last week or so and I have submitted a
patch toe the qemu-devel mailing list to fix another timer_create()
problem sometime in the last week.

Unfortunately the test case @pittit submitted is far harder to support
than the original test case. In this case the timer_create() syscall
gets passed pointers to functions and data in the target's address space
and I have not figured out how to handle that yet.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu in Ubuntu.
https://bugs.launchpad.net/bugs/1042388

Title:
  qemu: Unsupported syscall: 257 (timer_create)

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1042388/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1306537] Re: LXC local provider fails to provision precise instances from a trusty host

2014-06-23 Thread Erik B. Andersen
For people still having trouble with this, you may want to look at
http://askubuntu.com/questions/486542/upload-all-release-versions-of-
tools-with-jujus-local-lxc-provider to see if it helps.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju-quickstart in Ubuntu.
https://bugs.launchpad.net/bugs/1306537

Title:
  LXC local provider fails to provision precise instances from a trusty
  host

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1306537/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1316017] [NEW] openssh client ignores -o Tunnel=ethernet option, creating an IP tunnel device instead of an ethernet tap device

2014-05-05 Thread Erik B. Andersen
Public bug reported:

This is a regression from the version of the client in 14.04 compared to
13.10. I'm connecting to 12.04.4 for a server.

Expected behaviour:
Creating a connection with the option -o Tunnel=ethernet will create a layer2 
ethernet tap device.

Actual behaviour:
New client creates a  layer3 IP tunnel.

The old version of the client that works properly (installed manually on 14.04):
OpenSSH_6.2p2 Ubuntu-6ubuntu0.3, OpenSSL 1.0.1f 6 Jan 2014

The new version of the client that does not work properly:
OpenSSH_6.6p1 Ubuntu-2ubuntu1, OpenSSL 1.0.1f 6 Jan 2014

The version of the SSH server I'm connecting to:
openssh-server:
  Installed: 1:5.9p1-5ubuntu1.3
  Candidate: 1:5.9p1-5ubuntu1.3
  Version table:
 *** 1:5.9p1-5ubuntu1.3 0
500 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 
Packages
500 http://security.ubuntu.com/ubuntu/ precise-security/main amd64 
Packages
100 /var/lib/dpkg/status
 1:5.9p1-5ubuntu1 0
500 http://us.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages


#
Terminal output with the old version:
ssh -p 38613 username@IP -w any -o Tunnel=ethernet -vvv
OpenSSH_6.2p2 Ubuntu-6ubuntu0.3, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: auto-mux: Trying existing master
debug1: Control socket path hidden does not exist
debug2: ssh_connect: needpriv 0
debug1: Connecting to IP [IP] port 38613.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug3: Incorrect RSA1 identifier
debug3: Could not load /root/.ssh/id_rsa as a RSA1 public key
debug1: identity file /root/.ssh/id_rsa type 1
debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-16384
debug1: Checking blacklist file /etc/ssh/blacklist.RSA-16384
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: identity file /root/.ssh/id_dsa type -1
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug3: Incorrect RSA1 identifier
debug3: Could not load /root/.ssh/id_ecdsa as a RSA1 public key
debug1: identity file /root/.ssh/id_ecdsa type 3
debug1: Checking blacklist file /usr/share/ssh/blacklist.ECDSA-521
debug1: Checking blacklist file /etc/ssh/blacklist.ECDSA-521
debug1: identity file /root/.ssh/id_ecdsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2p2 Ubuntu-6ubuntu0.3
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.9p1 
Debian-5ubuntu1.3
debug1: match: OpenSSH_5.9p1 Debian-5ubuntu1.3 pat OpenSSH_5*
debug2: fd 3 setting O_NONBLOCK
debug3: put_host_port: [IP]:38613
debug3: load_hostkeys: loading entries for host [IP]:38613 from file 
/root/.ssh/known_hosts
debug3: load_hostkeys: found key type ECDSA in file /root/.ssh/known_hosts:24
debug3: load_hostkeys: loaded 1 keys
debug3: order_hostkeyalgs: prefer hostkeyalgs: 
ecdsa-sha2-nistp256-cert-...@openssh.com,ecdsa-sha2-nistp384-cert-...@openssh.com,ecdsa-sha2-nistp521-cert-...@openssh.com,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug2: kex_parse_kexinit: 
ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1
debug2: kex_parse_kexinit: 
ecdsa-sha2-nistp256-cert-...@openssh.com,ecdsa-sha2-nistp384-cert-...@openssh.com,ecdsa-sha2-nistp521-cert-...@openssh.com,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-rsa-cert-...@openssh.com,ssh-dss-cert-...@openssh.com,ssh-rsa-cert-...@openssh.com,ssh-dss-cert-...@openssh.com,ssh-rsa,ssh-dss
debug2: kex_parse_kexinit: 
aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-...@openssh.com,aes256-...@openssh.com,aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,aes256-cbc,arcfour,rijndael-...@lysator.liu.se
debug2: kex_parse_kexinit: 
aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-...@openssh.com,aes256-...@openssh.com,aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,aes256-cbc,arcfour,rijndael-...@lysator.liu.se
debug2: kex_parse_kexinit: 
hmac-md5-...@openssh.com,hmac-sha1-...@openssh.com,umac-64-...@openssh.com,umac-128-...@openssh.com,hmac-sha2-256-...@openssh.com,hmac-sha2-512-...@openssh.com,hmac-ripemd160-...@openssh.com,hmac-sha1-96-...@openssh.com,hmac-md5-96-...@openssh.com,hmac-md5,hmac-sha1,umac...@openssh.com,umac-...@openssh.com,hmac-sha2-256,hmac-sha2-512,hmac-ripemd160,hmac-ripemd...@openssh.com,hmac-sha1-96,hmac-md5-96
debug2: kex_parse_kexinit: 

[Bug 1316017] Re: openssh client ignores -o Tunnel=ethernet option, creating an IP tunnel device instead of an ethernet tap device

2014-05-05 Thread Erik B. Andersen
** Tags added: regression-release

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in Ubuntu.
https://bugs.launchpad.net/bugs/1316017

Title:
  openssh client ignores -o Tunnel=ethernet option, creating an IP
  tunnel device instead of an ethernet tap device

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/1316017/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1313450] Re: Unable to start vsftpd on Ubuntu 14.04 (Amazon/EC2) with default configuration

2014-05-03 Thread Erik Andersson
I am going to try the steps suggested here:
http://askubuntu.com/questions/453784/vsftpd-installation-not-working-as-of-14-04

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in Ubuntu.
https://bugs.launchpad.net/bugs/1313450

Title:
Unable to start vsftpd on Ubuntu 14.04 (Amazon/EC2) with default
  configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/1313450/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1313450] Re: Unable to start vsftpd on Ubuntu 14.04 (Amazon/EC2) with default configuration

2014-05-03 Thread Erik Andersson
Another report found here:
http://askubuntu.com/questions/457248/vsftpd-not-working

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in Ubuntu.
https://bugs.launchpad.net/bugs/1313450

Title:
Unable to start vsftpd on Ubuntu 14.04 (Amazon/EC2) with default
  configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/1313450/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1313450] Re: Unable to start vsftpd on Ubuntu 14.04 (Amazon/EC2) with default configuration

2014-04-29 Thread Erik Andersson
That made no difference.

My configuration:
seccomp_sandbox=NO
Listen=YES
#Listen_IPV6
Anonymous=YES
#Local_enabled=YES
#Write_enabled=YES


This is taken from the kernel log (also visible in the syslogs).

Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160354] BUG: Bad page map in 
process vsftpd  pte:8965 pmd:23042067
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160372] page:ea00 
count:-259 mapcount:-259 mapping:  (null) index:0x0
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160379] page flags: 
0x10(dirty)
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160387] addr:7fd251b67000 
vm_flags:08100071 anon_vma:88002381d700 mapping:  (null) 
index:7fd251b67
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160397] CPU: 0 PID: 14426 
Comm: vsftpd Tainted: GB3.13.0-24-generic #46-Ubuntu
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160399]  880023ca6c00 
880016565c70 81715a64 7fd251b67000
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160404]  880016565cb8 
81174183 800ffa106965 0007fd251b67
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160408]  880023042b38 
ea00 7fd251b67000 7fd251b68000
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160411] Call Trace:
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160421]  [81715a64] 
dump_stack+0x45/0x56
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160427]  [81174183] 
print_bad_pte+0x1a3/0x250
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160430]  [81175b67] 
unmap_page_range+0x717/0x7f0
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160433]  [81175cc1] 
unmap_single_vma+0x81/0xf0
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160436]  [81176d39] 
unmap_vmas+0x49/0x90
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160441]  [8117feec] 
exit_mmap+0x9c/0x170
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160445]  [8106482c] 
mmput+0x5c/0x120
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160449]  [81069bbc] 
do_exit+0x26c/0xa50
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160453]  [8109dd84] 
? vtime_account_user+0x54/0x60
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160459]  [8114d52f] 
? context_tracking_user_exit+0x4f/0xc0
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160462]  [8106a41f] 
do_group_exit+0x3f/0xa0
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160465]  [8106a494] 
SyS_exit_group+0x14/0x20
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160469]  [8172663f] 
tracesys+0xe1/0xe6
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160552] BUG: Bad rss-counter 
state mm:8800030af500 idx:0 val:-1
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.160559] BUG: Bad rss-counter 
state mm:8800030af500 idx:1 val:1
Apr 29 19:03:44 ip-10-34-255-23 kernel: [21095107.195341] BUG: Bad page map in 
process vsftpd  pte:8965 pmd:23d36067

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in Ubuntu.
https://bugs.launchpad.net/bugs/1313450

Title:
Unable to start vsftpd on Ubuntu 14.04 (Amazon/EC2) with default
  configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/1313450/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1313450] Re: Unable to start vsftpd on Ubuntu 14.04 (Amazon/EC2) with default configuration

2014-04-29 Thread Erik Andersson
apport information

** Tags added: apport-collected

** Description changed:

  The configuration submitted was modified during testing, but this also
  failed with the default configuration. The only solution I have found so
  far was to delete the configuration, this would allow the service to
  start, but obviously not work as intended.
  
  If I try to start the service manually using vsftpd or sudo vsftpd I receive 
the following error message:
  500 OOPS: munmap
  
  I also tried the default commands
  /etc/init.d/vsftpd or service vsftpd start
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: vsftpd 3.0.2-1ubuntu2
  ProcVersionSignature: User Name 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  Date: Sun Apr 27 21:23:18 2014
  Ec2AMI: ami-896c96fe
  Ec2AMIManifest: (unknown)
  Ec2AvailabilityZone: eu-west-1b
  Ec2InstanceType: t1.micro
  Ec2Kernel: aki-52a34525
  Ec2Ramdisk: unavailable
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: vsftpd
  UpgradeStatus: No upgrade log present (probably fresh install)
  modified.conffile..etc.vsftpd.conf: [modified]
  mtime.conffile..etc.vsftpd.conf: 2014-04-27T21:16:28.222467
+ --- 
+ ApportVersion: 2.14.1-0ubuntu3
+ Architecture: amd64
+ DistroRelease: Ubuntu 14.04
+ Ec2AMI: ami-896c96fe
+ Ec2AMIManifest: (unknown)
+ Ec2AvailabilityZone: eu-west-1b
+ Ec2InstanceType: t1.micro
+ Ec2Kernel: aki-52a34525
+ Ec2Ramdisk: unavailable
+ Package: vsftpd 3.0.2-1ubuntu2
+ PackageArchitecture: amd64
+ ProcEnviron:
+  TERM=xterm
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=set
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+ ProcVersionSignature: User Name 3.13.0-24.46-generic 3.13.9
+ Tags:  trusty ec2-images
+ Uname: Linux 3.13.0-24-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm audio cdrom dialout dip floppy netdev plugdev sudo video
+ _MarkForUpload: True
+ modified.conffile..etc.vsftpd.conf: [modified]
+ mtime.conffile..etc.vsftpd.conf: 2014-04-29T19:03:28.834467

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/1313450/+attachment/4100694/+files/Dependencies.txt

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in Ubuntu.
https://bugs.launchpad.net/bugs/1313450

Title:
Unable to start vsftpd on Ubuntu 14.04 (Amazon/EC2) with default
  configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/1313450/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1313450] [NEW] Unable to start vsftpd on Ubuntu 14.04 (Amazon/EC2) with default configuration

2014-04-27 Thread Erik Andersson
Public bug reported:

The configuration submitted was modified during testing, but this also
failed with the default configuration. The only solution I have found so
far was to delete the configuration, this would allow the service to
start, but obviously not work as intended.

If I try to start the service manually using vsftpd or sudo vsftpd I receive 
the following error message:
500 OOPS: munmap

I also tried the default commands
/etc/init.d/vsftpd or service vsftpd start

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: vsftpd 3.0.2-1ubuntu2
ProcVersionSignature: User Name 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic x86_64
ApportVersion: 2.14.1-0ubuntu3
Architecture: amd64
Date: Sun Apr 27 21:23:18 2014
Ec2AMI: ami-896c96fe
Ec2AMIManifest: (unknown)
Ec2AvailabilityZone: eu-west-1b
Ec2InstanceType: t1.micro
Ec2Kernel: aki-52a34525
Ec2Ramdisk: unavailable
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: vsftpd
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.vsftpd.conf: [modified]
mtime.conffile..etc.vsftpd.conf: 2014-04-27T21:16:28.222467

** Affects: vsftpd (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug ec2-images trusty

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in Ubuntu.
https://bugs.launchpad.net/bugs/1313450

Title:
Unable to start vsftpd on Ubuntu 14.04 (Amazon/EC2) with default
  configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/1313450/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1042388] Re: qemu: Unsupported syscall: 257 (timer_create)

2014-02-10 Thread Erik de Castro Lopo
The fix that was commited to the Qemu git tree fixed the original test
case I had. @pittit then found another test case that fails and I intend
to fix that when I find a good chunk of free time. Problem is I only
work on Wemu sporadically and it takes me quite a bit of time to get up
to speed when I return to work on it.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu in Ubuntu.
https://bugs.launchpad.net/bugs/1042388

Title:
  qemu: Unsupported syscall: 257 (timer_create)

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1042388/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1042388] Re: qemu: Unsupported syscall: 257 (timer_create)

2014-01-14 Thread Erik de Castro Lopo
Thanks  for the test case Martin. Problem confirmed.

The issue is that timer_create allows a number of different callback
mechanisms and I had only implemented the one I need.

 Working on it now.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu in Ubuntu.
https://bugs.launchpad.net/bugs/1042388

Title:
  qemu: Unsupported syscall: 257 (timer_create)

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1042388/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1225695] Re: Node DNS does not stay updated

2013-10-21 Thread Erik B. Andersen
So far I haven't seen this come up again.

I've had a lot more sucess having the various KVM machines managed by
libvirt this time, and following http://askubuntu.com/questions/292061
/how-to-configure-maas-to-be-able-to-boot-virtual-machines so that MaaS
can boot the machines at the right time.  I wonder if me guessing when a
machine needs to be started (and running the KVM command on the host
running all these VM's) was sending extra DHCP requests and somehow
throwing stuff off? If that is what was happening, I'm not sure if that
is a bug or not (depends on if you want the MaaS system able to handle
people walking through their datacenter and pressing the power button on
some server that is off. I could see MaaS serving an image with
instructions that basically say go back to sleep).

I'm also using the 13.10 version for my MaaS controller, maybe that is
what fixed it (so for, I hope, crossing fingers).

I think I'll set this to incomplete for now since I don't know if this
still happens. If it does happen again, I'll just set it back to new.

** Changed in: maas (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1225695

Title:
  Node DNS does not stay updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1225695] [NEW] Node DNS does not stay updated

2013-09-15 Thread Erik B. Andersen
Public bug reported:

I'm using Ubuntu server 12.04 for my Region controller and cluster
controller, which is on the same machine.

I have been able to provision a few machines shortly after enrolling
them.

However, I am later unable to login to the machines using the DNS name.
If I can find the machine's IP (say by nmap ping scan and some guessing)
it appears to still be there.

I've tried tailing the logs in /var/log/maas/ but can't see anything
that looks wrong. I'm not exactly sure where to start to try to get more
information, so just let me know any information that would be helpful.

These machines are running on KVM with a tap device bridged/switched
between them.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: maas-dns 1.2+bzr1373+dfsg-0ubuntu1~12.04.1
ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
Uname: Linux 3.2.0-29-generic x86_64
ApportVersion: 2.0.1-0ubuntu17.4
Architecture: amd64
Date: Sun Sep 15 07:46:06 2013
InstallationMedia: Ubuntu-Server 12.04.1 LTS Precise Pangolin - Release amd64 
(20120817.3)
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: maas
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: maas (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug precise

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1225695

Title:
  Node DNS does not stay updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1225695] Re: Node DNS does not stay updated

2013-09-15 Thread Erik B. Andersen
** Attachment added: zone.vcluster.erikbandersen.com
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+attachment/3822195/+files/zone.vcluster.erikbandersen.com

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1225695

Title:
  Node DNS does not stay updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1225695] Re: Node DNS does not stay updated

2013-09-15 Thread Erik B. Andersen
Here's an example of what I'm seeing:

dig hjkdc.vcluster.erikbandersen.com a

;  DiG 9.8.1-P1  hjkdc.vcluster.erikbandersen.com a
;; global options: +cmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: NOERROR, id: 46503
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 1, ADDITIONAL: 1

;; QUESTION SECTION:
;hjkdc.vcluster.erikbandersen.com. IN   A

;; ANSWER SECTION:
hjkdc.vcluster.erikbandersen.com. 300 IN CNAME  
192-168-10-162.vcluster.erikbandersen.com.
192-168-10-162.vcluster.erikbandersen.com. 300 IN A 192.168.10.162

;; AUTHORITY SECTION:
vcluster.erikbandersen.com. 300 IN  NS  vcluster.erikbandersen.com.

;; ADDITIONAL SECTION:
vcluster.erikbandersen.com. 300 IN  A   192.168.10.41

;; Query time: 0 msec
;; SERVER: 192.168.10.41#53(192.168.10.41)
;; WHEN: Sun Sep 15 08:06:31 2013
;; MSG SIZE  rcvd: 125

erik@juju:~$ ping 192.168.10.162
PING 192.168.10.162 (192.168.10.162) 56(84) bytes of data.
From 192.168.10.115 icmp_seq=1 Destination Host Unreachable
From 192.168.10.115 icmp_seq=2 Destination Host Unreachable
From 192.168.10.115 icmp_seq=3 Destination Host Unreachable
^C
--- 192.168.10.162 ping statistics ---
5 packets transmitted, 0 received, +3 errors, 100% packet loss, time 4024ms
pipe 3


** Attachment added: zone.master
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+attachment/3822191/+files/zone.master

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1225695

Title:
  Node DNS does not stay updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1225695] Re: Node DNS does not stay updated

2013-09-15 Thread Erik B. Andersen
** Attachment added: var_log_maas.tar.gz
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+attachment/3822194/+files/var_log_maas.tar.gz

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1225695

Title:
  Node DNS does not stay updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1225695] Re: Node DNS does not stay updated

2013-09-15 Thread Erik B. Andersen
I ran this:

# ps aux | grep dhcp
dhcpd10556  0.0  0.1  19128  1100 ?Ss   Sep14   0:02 
/usr/sbin/dhcpd -f -q -4 -pf /run/maas/dhcp/dhcpd.pid -cf /etc/maas/dhcpd.conf 
-lf /var/lib/maas/dhcp/dhcpd.leases eth0

So, I'm going to attach the leases file. Maybe that will help.

** Attachment added: dhcpd.leases
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+attachment/3822185/+files/dhcpd.leases

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1225695

Title:
  Node DNS does not stay updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1225695] Re: Node DNS does not stay updated

2013-09-15 Thread Erik B. Andersen
Oops, forgot to include a copy of what I was talking about in the last comment:
erik@juju:~$ ssh ubuntu@192.168.10.161
The authenticity of host '192.168.10.161 (192.168.10.161)' can't be established.
ECDSA key fingerprint is 4d:8e:fc:7b:1a:84:30:d3:e0:c7:ae:c5:a1:94:9b:e4.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.10.161' (ECDSA) to the list of known hosts.
Welcome to Ubuntu 12.04.3 LTS (GNU/Linux 3.2.0-53-generic x86_64)

 * Documentation:  https://help.ubuntu.com/

  System information as of Sun Sep 15 11:32:54 EDT 2013

  System load:  0.03  Processes:   69
  Usage of /:   15.5% of 9.35GB   Users logged in: 0
  Memory usage: 22%   IP address for eth0: 192.168.10.161
  Swap usage:   2%

  Graph this data and manage this system at
https://landscape.canonical.com/

Last login: Sun Sep 15 02:02:44 2013 from 
192-168-10-115.vcluster.erikbandersen.com
ubuntu@hjkdc:~$ logout
Connection to 192.168.10.161 closed.
erik@juju:~$ dig hjkdc.vcluster.erikbandersen.com a

;  DiG 9.8.1-P1  hjkdc.vcluster.erikbandersen.com a
;; global options: +cmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: NOERROR, id: 41609
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 1, ADDITIONAL: 1

;; QUESTION SECTION:
;hjkdc.vcluster.erikbandersen.com. IN   A

;; ANSWER SECTION:
hjkdc.vcluster.erikbandersen.com. 300 IN CNAME  
192-168-10-162.vcluster.erikbandersen.com.
192-168-10-162.vcluster.erikbandersen.com. 300 IN A 192.168.10.162

;; AUTHORITY SECTION:
vcluster.erikbandersen.com. 300 IN  NS  vcluster.erikbandersen.com.

;; ADDITIONAL SECTION:
vcluster.erikbandersen.com. 300 IN  A   192.168.10.41

;; Query time: 4 msec
;; SERVER: 192.168.10.41#53(192.168.10.41)
;; WHEN: Sun Sep 15 08:33:19 2013
;; MSG SIZE  rcvd: 125

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1225695

Title:
  Node DNS does not stay updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1225695] Re: Node DNS does not stay updated

2013-09-15 Thread Erik B. Andersen
Ok, here's a better example. Since this is virtualized, I was able to do
a packet capture on the Nic (tap device) of the machine I wanted to
get into. I identified the IP that way, and then from there was able to
login with an ssh key that I had earlier put into the MaaS Gui.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1225695

Title:
  Node DNS does not stay updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1225695] Re: Node DNS does not stay updated

2013-09-15 Thread Erik B. Andersen
I think I got this going.

I'm not sure what exactly fixed it. I rebooted the MaaS server (region
controller and cluster controller in this case) and also changed the
nameserver I was using so I wasn't asking an external server that
couldn't reach the private IP of the MaaS DNS server to do recursive
lookups for me (which would obviously fail).

As you can see in the previous comment to this one, I looked up the DNS
and it was wrong, but I was using the internal MaaS DNS server. So,
maybe restarting did it?

** Changed in: maas (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1225695

Title:
  Node DNS does not stay updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1225695] Re: Node DNS does not stay updated

2013-09-15 Thread Erik B. Andersen
I'm having it do it again. A restart did not fix it. I've tried using
dig against the maas-dns comptuer's ip as the DNS server, and still get
the wrong answer.

** Changed in: maas (Ubuntu)
   Status: Incomplete = New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1225695

Title:
  Node DNS does not stay updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1225695/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1017113] Re: Juju test suite fails sporadically due to low timeouts

2012-06-25 Thread Martin Erik Werner
Ah, right.

Making it less hardware-bound (if that's the issue) sounds good :)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/1017113

Title:
  Juju test suite fails sporadically due to low timeouts

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/1017113/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1017113] [NEW] FTBFS: Sveral tests fails

2012-06-24 Thread Martin Erik Werner
Public bug reported:

juju on current development version of Ubuntu (quantal) fails to build
from source due to several test cases failing/giving errors.

I've attached the build log.

** Affects: juju (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: ftbfs quantal

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/1017113

Title:
  FTBFS: Sveral tests fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/juju/+bug/1017113/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1017113] Re: FTBFS: Sveral tests fails

2012-06-24 Thread Martin Erik Werner
** Attachment added: juju build log quantal pbuilder-dist
   
https://bugs.launchpad.net/bugs/1017113/+attachment/3202385/+files/last_operation.log

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/1017113

Title:
  FTBFS: Sveral tests fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/juju/+bug/1017113/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 956000] Re: 'juju bootstrap' with no arguments gives confusing message

2012-06-24 Thread Martin Erik Werner
I tested the patch you, Allesandro Losavio, suggested on IRC, and in
that version it's not good, since it makes juju fail to build from
source.

It's worth noting that currently juju also FTBFS in Quantal due to
failing test cases, see Bug #1017113, however, applying this patch makes
it fail earlier in the process, so I'm assuming that it creates a
separate issue.

I've attached the build log for this patch.

** Attachment added: juju build log quantal pbuilder-dist with alo21's patch
   
https://bugs.launchpad.net/ubuntu/+source/juju/+bug/956000/+attachment/3202390/+files/last_operation.log

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/956000

Title:
  'juju bootstrap' with no arguments gives confusing message

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/956000/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1011951] [NEW] package bind9 1:9.8.1.dfsg.P1-4ubuntu0.1 failed to install/upgrade: underproces installerede post-installation-script returnerede afslutningsstatus 1

2012-06-12 Thread Erik Berg
Public bug reported:

I don't know what I did, but it happened first time after an automatic
update

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: bind9 1:9.8.1.dfsg.P1-4ubuntu0.1
ProcVersionSignature: Ubuntu 3.2.0-25.40-generic-pae 3.2.18
Uname: Linux 3.2.0-25-generic-pae i686
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu9
AptOrdering:
 bind9: Install
 bind9: Configure
Architecture: i386
Date: Tue Jun 12 07:52:18 2012
ErrorMessage: underproces installerede post-installation-script returnerede 
afslutningsstatus 1
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Beta i386 (20110915.1)
RelatedPackageVersions:
 bind9utils 1:9.8.1.dfsg.P1-4ubuntu0.1
 apparmor   2.7.102-0ubuntu3
SourcePackage: bind9
Title: package bind9 1:9.8.1.dfsg.P1-4ubuntu0.1 failed to install/upgrade: 
underproces installerede post-installation-script returnerede afslutningsstatus 
1
UpgradeStatus: Upgraded to precise on 2012-05-01 (41 days ago)
modified.conffile..etc.bind.named.conf.options: [modified]
mtime.conffile..etc.bind.named.conf.options: 2012-05-01T08:01:08.952545

** Affects: bind9 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 precise

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in Ubuntu.
https://bugs.launchpad.net/bugs/1011951

Title:
  package bind9 1:9.8.1.dfsg.P1-4ubuntu0.1 failed to install/upgrade:
  underproces installerede post-installation-script returnerede
  afslutningsstatus 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1011951/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1011951] Re: package bind9 1:9.8.1.dfsg.P1-4ubuntu0.1 failed to install/upgrade: underproces installerede post-installation-script returnerede afslutningsstatus 1

2012-06-12 Thread Erik Berg
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in Ubuntu.
https://bugs.launchpad.net/bugs/1011951

Title:
  package bind9 1:9.8.1.dfsg.P1-4ubuntu0.1 failed to install/upgrade:
  underproces installerede post-installation-script returnerede
  afslutningsstatus 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1011951/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 873993] [NEW] package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-10-14 Thread Bengt-Erik Soderstrom5
Public bug reported:

Error during upgrade of Ubuntu to version 11

ProblemType: Package
DistroRelease: Ubuntu 11.10
Package: samba 2:3.5.8~dfsg-1ubuntu2.3
ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
Uname: Linux 2.6.38-11-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 1.23-0ubuntu3
Architecture: amd64
Date: Fri Oct 14 11:09:29 2011
ErrorMessage: ErrorMessage: package samba is not ready for configuration  
cannot configure (current status `half-installed')
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007.1)
SambaClientRegression: Yes
SourcePackage: samba
Title: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: 
ErrorMessage: package samba is not ready for configuration  cannot configure 
(current status `half-installed')
UpgradeStatus: Upgraded to oneiric on 2011-10-14 (0 days ago)

** Affects: samba (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package oneiric

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/873993

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/873993/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 873993] Re: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-10-14 Thread Bengt-Erik Soderstrom5
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/873993

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/873993/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 829374] Re: package postfix 2.8.2-1ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 75

2011-08-26 Thread Erik Simmesgård
No problem. Glad to be of service.

I'll be closing this bug now.

** Changed in: postfix (Ubuntu)
   Status: Incomplete = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix in Ubuntu.
https://bugs.launchpad.net/bugs/829374

Title:
  package postfix 2.8.2-1ubuntu2.1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 75

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/829374/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 829374] Re: package postfix 2.8.2-1ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 75

2011-08-23 Thread Erik Simmesgård
Could you please try moving your current /etc/postfix/main.cf and try
re-issuing the install/update command for postfix?

I recommend setting this issue to Importance: Low - It seems to be a
local configuration parsing issue

** Changed in: postfix (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix in Ubuntu.
https://bugs.launchpad.net/bugs/829374

Title:
  package postfix 2.8.2-1ubuntu2.1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 75

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/829374/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 831907] Re: Default configuration file refers to nonexistent certificate

2011-08-23 Thread Erik Simmesgård
The default behaviour of vsftpd's ssl_enable option is disabled. I
recommend setting this bug to Importance: Low since it would only affect
users who change the default behaviour.


** Changed in: vsftpd (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in Ubuntu.
https://bugs.launchpad.net/bugs/831907

Title:
  Default configuration file refers to nonexistent certificate

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/831907/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 829374] Re: package postfix 2.8.2-1ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 75

2011-08-23 Thread Erik Simmesgård
Did it help you to get postfix installed/upgraded? If not, please add
any extra details that might come (Like were you trying to upgrade from
an earlier version/distro release?) along with your fiddling and we'll
try to help - of course :-)

Cheers!

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix in Ubuntu.
https://bugs.launchpad.net/bugs/829374

Title:
  package postfix 2.8.2-1ubuntu2.1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 75

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/829374/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 829625] Re: package ntpdate 1:4.2.6.p2 dfsg-1ubuntu5.1 failed to install/upgrade: error writing to 'standard output': No such file or directory

2011-08-22 Thread Erik Simmesgård
I can unfortunally not see anything that would cause this issue. To be
able to assist and resolve your issue, we would need more information -
which would be great if you could provide.

Where you upgrading your system from a previous release? Like 10.04 or
10.10?

Could you return the output of 'grep -ri /etc standard output'
(without the ', but with the ) into a comment here? If you are unsure
or unable to - poke us with a comment or join #ubuntu-server on Freenode
and we'll try to help of course!

Thanks for your time!

** Changed in: ntp (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ntp in Ubuntu.
https://bugs.launchpad.net/bugs/829625

Title:
  package ntpdate 1:4.2.6.p2 dfsg-1ubuntu5.1 failed to install/upgrade:
  error writing to 'standard output': No such file or directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ntp/+bug/829625/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 829625] Re: package ntpdate 1:4.2.6.p2 dfsg-1ubuntu5.1 failed to install/upgrade: error writing to 'standard output': No such file or directory

2011-08-22 Thread Erik Simmesgård
After trying to reproduce the issue very swiftly without success, I
would recommend someone with the privilege setting this bug/issue to
Importance: Low - since it currently look possible that it only
affects a smaller audience. Unless further information is provided that
changes this picture.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ntp in Ubuntu.
https://bugs.launchpad.net/bugs/829625

Title:
  package ntpdate 1:4.2.6.p2 dfsg-1ubuntu5.1 failed to install/upgrade:
  error writing to 'standard output': No such file or directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ntp/+bug/829625/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 829944] Re: stopping freshclam doesn't remove pidfile

2011-08-22 Thread Erik Simmesgård
** Changed in: clamav (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in Ubuntu.
https://bugs.launchpad.net/bugs/829944

Title:
  stopping freshclam doesn't remove pidfile

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/829944/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 829944] Re: stopping freshclam doesn't remove pidfile

2011-08-22 Thread Erik Simmesgård
I have confirmed to have the same issue with clamav-0.97+dfsg-2ubuntu1.1
on a fresh install of Ubuntu 11.04.

root@ubuntu:~# ps aux | grep clamav
clamav1534  8.4  0.3  13244  1824 ?Ss   22:15   0:07 
/usr/bin/freshclam -d --quiet
root@ubuntu:~# ls -l /var/run/clamav/freshclam.pid
-rw-rw 1 clamav clamav 4 2011-08-22 22:15 /var/run/clamav/freshclam.pid
root@ubuntu:~# cat /var/run/clamav/freshclam.pid
1534
root@ubuntu:~# /etc/init.d/clamav-freshclam stop
 * Stopping ClamAV virus database updater freshclam 
  [ OK ] 
root@ubuntu:~# ls -l /var/run/clamav/freshclam.pid
-rw-rw 1 clamav clamav 4 2011-08-22 22:15 /var/run/clamav/freshclam.pid
root@ubuntu:~# cat /var/run/clamav/freshclam.pid
1534
root@ubuntu:~# ls -l /var/run/clamav/freshclam.pid^Cid
root@ubuntu:~# ps aux | grep clam
root  1785  0.0  0.1   4148   852 pts/0S+   22:26   0:00 grep 
--color=auto clam

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in Ubuntu.
https://bugs.launchpad.net/bugs/829944

Title:
  stopping freshclam doesn't remove pidfile

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/829944/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 829944] Re: stopping freshclam doesn't remove pidfile

2011-08-22 Thread Erik Simmesgård
I suggest setting Importance: Low, since it does not impact the
functionality of a running instance and is easily worked around.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in Ubuntu.
https://bugs.launchpad.net/bugs/829944

Title:
  stopping freshclam doesn't remove pidfile

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/829944/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 831493] Re: package postfix 2.8.2-1ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 75

2011-08-22 Thread Erik Simmesgård
Could you please try moving your current /etc/postfix/main.cf and try
re-issuing the install/update command for postfix?

I recommend setting this issue to Importance: Low - It seems to be a
local configuration parsing issue

** Changed in: postfix (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix in Ubuntu.
https://bugs.launchpad.net/bugs/831493

Title:
  package postfix 2.8.2-1ubuntu2.1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 75

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/831493/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 735296] [NEW] package winbind 2:3.4.7~dfsg-1ubuntu3.4 failed to install/upgrade: underproces installed post-installation script returnerede afslutningsstatus 127

2011-03-15 Thread Erik Berg
Public bug reported:

Binary package hint: samba

When iI tried to upgrade

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: winbind 2:3.4.7~dfsg-1ubuntu3.4
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic i686
Architecture: i386
CheckboxSubmission: 9b565e18a28fb529dedcbfbec6ca72e8
CheckboxSystem: b845c366ea09c60efa3a45c1b5b21525
Date: Tue Mar 15 07:50:44 2011
ErrorMessage: underproces installed post-installation script returnerede 
afslutningsstatus 127
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
RelatedPackageVersions:
 nautilus 1:2.30.1-0ubuntu1.1
 gvfs 1.6.1-0ubuntu1build1
SambaClientRegression: Yes
SourcePackage: samba
Title: package winbind 2:3.4.7~dfsg-1ubuntu3.4 failed to install/upgrade: 
underproces installed post-installation script returnerede afslutningsstatus 127

** Affects: samba (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/735296

Title:
  package winbind 2:3.4.7~dfsg-1ubuntu3.4 failed to install/upgrade:
  underproces installed post-installation script returnerede
  afslutningsstatus 127

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 735296] Re: package winbind 2:3.4.7~dfsg-1ubuntu3.4 failed to install/upgrade: underproces installed post-installation script returnerede afslutningsstatus 127

2011-03-15 Thread Erik Berg
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/735296

Title:
  package winbind 2:3.4.7~dfsg-1ubuntu3.4 failed to install/upgrade:
  underproces installed post-installation script returnerede
  afslutningsstatus 127

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 614731] Re: shutdown hangs with wlan autofs/nfs mounted homedirs

2011-02-09 Thread Lars Erik Kolden
Struggling with the same thing on a school with around 60 laptops
connecting to a NFS server via LDAP and autofs. I have had some other
problems that have arose because of this. For instance a Network Manager
bug that disabled the wifi card if the laptop went into
hibernation/suspend. Of course this happened all the time, since the
pupils just clicks shutdown from the profile and close the lid of the
laptop.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to autofs5 in ubuntu.
https://bugs.launchpad.net/bugs/614731

Title:
  shutdown hangs with wlan autofs/nfs mounted homedirs

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 671289] [NEW] package openssh-server 1:5.5p1-4ubuntu4 failed to install/upgrade: underproces installed post-installation script returnerede afslutningsstatus 1

2010-11-05 Thread Erik Berg
Public bug reported:

Installed but fails to startup, no user sshd

ProblemType: Package
DistroRelease: Ubuntu 10.10
Package: openssh-server 1:5.5p1-4ubuntu4
ProcVersionSignature: Ubuntu 2.6.35-22.35-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic x86_64
Architecture: amd64
Date: Fri Nov  5 07:37:35 2010
ErrorMessage: underproces installed post-installation script returnerede 
afslutningsstatus 1
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
SSHDConfig: Error: command ['/usr/sbin/sshd', '-T'] failed with exit code 255: 
Privilege separation user sshd does not exist
SourcePackage: openssh
Title: package openssh-server 1:5.5p1-4ubuntu4 failed to install/upgrade: 
underproces installed post-installation script returnerede afslutningsstatus 1

** Affects: openssh (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package maverick

-- 
package openssh-server 1:5.5p1-4ubuntu4 failed to install/upgrade: underproces 
installed post-installation script returnerede afslutningsstatus 1
https://bugs.launchpad.net/bugs/671289
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 671289] Re: package openssh-server 1:5.5p1-4ubuntu4 failed to install/upgrade: underproces installed post-installation script returnerede afslutningsstatus 1

2010-11-05 Thread Erik Berg


-- 
package openssh-server 1:5.5p1-4ubuntu4 failed to install/upgrade: underproces 
installed post-installation script returnerede afslutningsstatus 1
https://bugs.launchpad.net/bugs/671289
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 643092] [NEW] package samba-common 2:3.4.0-3ubuntu5.7 failed to install/upgrade: subproces installed post-installation script gaf een foutwaarde 1 terug

2010-09-19 Thread Erik Nijlant
Public bug reported:

Binary package hint: samba

The release of Ubuntu 9.10

tryed to install new version of samba services
synaptic found conflicting version
choose to install version of synaptic 
error msg appeared

ProblemType: Package
Architecture: i386
Date: Sat Sep 18 20:46:16 2010
DistroRelease: Ubuntu 9.10
ErrorMessage: subproces installed post-installation script gaf een foutwaarde 1 
terug
InstallationMedia: Xubuntu 9.10 Karmic Koala - Release i386 (20091028.3)
NonfreeKernelModules: nvidia
Package: samba-common 2:3.4.0-3ubuntu5.7
PackageArchitecture: all
ProcVersionSignature: Ubuntu 2.6.31-22.65-generic
SourcePackage: samba
Title: package samba-common 2:3.4.0-3ubuntu5.7 failed to install/upgrade: 
subproces installed post-installation script gaf een foutwaarde 1 terug
Uname: Linux 2.6.31-22-generic i686

** Affects: samba (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386

-- 
package samba-common 2:3.4.0-3ubuntu5.7 failed to install/upgrade: subproces 
installed post-installation script gaf een foutwaarde 1 terug
https://bugs.launchpad.net/bugs/643092
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 643092] Re: package samba-common 2:3.4.0-3ubuntu5.7 failed to install/upgrade: subproces installed post-installation script gaf een foutwaarde 1 terug

2010-09-19 Thread Erik Nijlant

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/643092/+attachment/1610454/+files/Dependencies.txt

** Attachment added: Dmesg.txt
   https://bugs.launchpad.net/bugs/643092/+attachment/1610455/+files/Dmesg.txt

** Attachment added: DpkgTerminalLog.txt
   
https://bugs.launchpad.net/bugs/643092/+attachment/1610456/+files/DpkgTerminalLog.txt

-- 
package samba-common 2:3.4.0-3ubuntu5.7 failed to install/upgrade: subproces 
installed post-installation script gaf een foutwaarde 1 terug
https://bugs.launchpad.net/bugs/643092
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 620959] [NEW] Please compile --with-solr

2010-08-20 Thread Erik Hetzner
Public bug reported:

Hi,

Please compile the dovecot package using the --with-solr option. This
will compile the fts_solr plugin.

** Affects: dovecot (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

-- 
Please compile --with-solr
https://bugs.launchpad.net/bugs/620959
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 620959] Re: Please compile --with-solr

2010-08-20 Thread Erik Hetzner
I am attaching a patch to configure using with-solr, also including the
necessary depends and build depends.

Although this increases the dependencies of dovecot, it will not be used
by default  so should not have much effect on the dovecot server.

It would be possible of course to add a dovecot-solr package.

Thank you for taking this into consideration. I am finding that solr
search in dovecot is faster than the default squat engine.


** Patch added: dovecot_fts_solr.patch
   
https://bugs.launchpad.net/ubuntu/+source/dovecot/+bug/620959/+attachment/1506190/+files/dovecot_fts_solr.patch

-- 
Please compile --with-solr
https://bugs.launchpad.net/bugs/620959
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 506865] Re: snmp-net not working with lm-sensors

2010-06-10 Thread Erik van Elsas
@Rob.D, I'm not at all an expert on Debian/Ubuntu development, but as
far as I understand what you see is the original (upstream) source
tree.  Debian/Ubuntu applies patches on this source if necessary.  The
patch I mentioned can be seen at http://bazaar.launchpad.net/~ubuntu-
branches/ubuntu/lucid/net-snmp/lucid-
security/annotate/head:/debian/patches/60_libsensors_api.patch

-- 
snmp-net not working with lm-sensors
https://bugs.launchpad.net/bugs/506865
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 506865] Re: snmp-net not working with lm-sensors

2010-06-01 Thread Erik van Elsas
I think the problem in lucid lies in the switch to the libsensors4 API in 
agent/mibgroup/ucd-snmp/lmSensors.c
Patch 60 replaces the test (data-mapping == SENSORS_NO_MAPPING) with a test 
for (subfeature-mapping == 0).
In libsensors3, the SENSORS_NO_MAPPING value indicated a new main feature.  The 
subfeature mapping on the other hand indicates the number of the feature it 
belongs to.  So the test only succeeds for (all of the) subfeatures of the 
first feature. All other features are skipped.

-- 
snmp-net not working with lm-sensors
https://bugs.launchpad.net/bugs/506865
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 342556] Re: package mysql-server-5.0 5.1.30really5.0.75-0ubuntu7 failed to install/upgrade: underprosessen post-installation script returnerte feilstatus 1

2009-03-13 Thread Erik I

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/23842812/Dependencies.txt

** Attachment added: DpkgTerminalLog.txt
   http://launchpadlibrarian.net/23842813/DpkgTerminalLog.txt

-- 
package mysql-server-5.0 5.1.30really5.0.75-0ubuntu7 failed to install/upgrade: 
underprosessen post-installation script returnerte feilstatus 1
https://bugs.launchpad.net/bugs/342556
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 342556] [NEW] package mysql-server-5.0 5.1.30really5.0.75-0ubuntu7 failed to install/upgrade: underprosessen post-installation script returnerte feilstatus 1

2009-03-13 Thread Erik I
Public bug reported:

Tried a couple of times to install lamp-server packages, but got this or
similar both times.

ProblemType: Package
Architecture: amd64
DistroRelease: Ubuntu 9.04
ErrorMessage: underprosessen post-installation script returnerte feilstatus 1
Package: mysql-server-5.0 5.1.30really5.0.75-0ubuntu7
SourcePackage: mysql-dfsg-5.0
Title: package mysql-server-5.0 5.1.30really5.0.75-0ubuntu7 failed to 
install/upgrade: underprosessen post-installation script returnerte feilstatus 1
Uname: Linux 2.6.28-9-generic x86_64

** Affects: mysql-dfsg-5.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package

-- 
package mysql-server-5.0 5.1.30really5.0.75-0ubuntu7 failed to install/upgrade: 
underprosessen post-installation script returnerte feilstatus 1
https://bugs.launchpad.net/bugs/342556
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 330626] Re: 9.04 Jaunty Samba 2:3.3.0-3ubuntu2 fails to start on update

2009-02-24 Thread Erik Harren
When i commented out the [printers]-section - samba rises but due to
interact with an ADDS (active directory server) winbindd stops with the
same error message as previously samba did - any suggestions? Please the
the log:

[2009/02/24 12:44:22,  3] param/loadparm.c:lp_load_ex(8806)
  lp_load_ex: refreshing parameters
Initialising global parameters
[2009/02/24 12:44:22,  3] param/params.c:pm_process(569)
  params.c:pm_process() - Processing configuration file /etc/samba/smb.conf
[2009/02/24 12:44:22,  3] param/loadparm.c:do_section(7469)
  Processing section [global]
[2009/02/24 12:44:22,  3] param/loadparm.c:do_section(7469)
  Processing section [global]
[2009/02/24 12:44:22,  2] param/loadparm.c:do_section(7486)
  Processing section [homes]
[2009/02/24 12:44:22,  3] param/loadparm.c:lp_add_ipc(5962)
  adding IPC service
[2009/02/24 12:44:22,  2] lib/interface.c:add_interface(337)
  added interface eth0 ip=2002:865e:e90c:2:215:77ff:fe76:73fe 
bcast=2002:865e:e90c:2:::: netmask=:::::
[2009/02/24 12:44:22,  2] lib/interface.c:add_interface(337)
  added interface eth0 ip=fe80::215:77ff:fe76:73fe%eth0 
bcast=fe80:::::%eth0 netmask=:::::
[2009/02/24 12:44:22,  2] lib/interface.c:add_interface(337)
  added interface eth0 ip=134.94.134.255 bcast=134.94.135.255 
netmask=255.255.254.0
[2009/02/24 12:44:22,  2] lib/interface.c:add_interface(337)
  added interface eth0 ip=2002:865e:e90c:2:215:77ff:fe76:73fe 
bcast=2002:865e:e90c:2:::: netmask=:::::
[2009/02/24 12:44:22,  2] lib/interface.c:add_interface(337)
  added interface eth0 ip=fe80::215:77ff:fe76:73fe%eth0 
bcast=fe80:::::%eth0 netmask=:::::
[2009/02/24 12:44:22,  2] lib/interface.c:add_interface(337)
  added interface eth0 ip=134.94.134.255 bcast=134.94.135.255 
netmask=255.255.254.0
[2009/02/24 12:44:22,  0] lib/fault.c:fault_report(40)
  ===
[2009/02/24 12:44:22,  0] lib/fault.c:fault_report(41)
  INTERNAL ERROR: Signal 11 in pid 3126 (3.3.0)
  Please read the Trouble-Shooting section of the Samba3-HOWTO
[2009/02/24 12:44:22,  0] lib/fault.c:fault_report(43)
  
  From: http://www.samba.org/samba/docs/Samba3-HOWTO.pdf
[2009/02/24 12:44:22,  0] lib/fault.c:fault_report(44)
  ===
[2009/02/24 12:44:22,  0] lib/util.c:smb_panic(1673)
  PANIC (pid 3126): internal error
[2009/02/24 12:44:22,  0] lib/util.c:log_stack_trace(1777)
  BACKTRACE: 16 stack frames:
   #0 /usr/sbin/winbindd(log_stack_trace+0x1c) [0x7f1337288f1d]
   #1 /usr/sbin/winbindd(smb_panic+0x5b) [0x7f133728902b]
   #2 /usr/sbin/winbindd [0x7f1337277c8d]
   #3 /lib/libc.so.6 [0x7f1335040040]
   #4 /lib/libc.so.6(strlen+0x30) [0x7f133508dc60]
   #5 /lib/libc.so.6(_IO_vfprintf+0x3dbe) [0x7f133505675e]
   #6 /lib/libc.so.6(__vasprintf_chk+0xd0) [0x7f133510bd80]
   #7 /usr/sbin/winbindd [0x7f1337270828]
   #8 /usr/sbin/winbindd(tdb_open_ex+0x1fa) [0x7f13374df283]
   #9 /usr/sbin/winbindd(tdb_open_log+0xa6) [0x7f133726f4e1]
   #10 /usr/sbin/winbindd(init_wcache+0x83) [0x7f1337204923]
   #11 /usr/sbin/winbindd(initialize_winbindd_cache+0xa) [0x7f13372099f4]
   #12 /usr/sbin/winbindd(winbindd_cache_validate_and_initialize+0x83) 
[0x7f1337209d94]
   #13 /usr/sbin/winbindd(main+0x8d5) [0x7f13371f5bd4]
   #14 /lib/libc.so.6(__libc_start_main+0xe6) [0x7f133502b5a6]
   #15 /usr/sbin/winbindd [0x7f13371f4029]
[2009/02/24 12:44:22,  0] lib/fault.c:dump_core(218)
  Can not dump core: corepath not set up

-- 
9.04 Jaunty Samba 2:3.3.0-3ubuntu2 fails to start on update 
https://bugs.launchpad.net/bugs/330626
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 226495] Re: bind9 boot priority needs to be changed

2008-05-31 Thread Erik Gregg
Thanks a ton!

-- 
bind9 boot priority needs to be changed
https://bugs.launchpad.net/bugs/226495
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 231004] Re: Path to 'mail' incorrect in /etc/nagios2/commands.cfg

2008-05-16 Thread Erik Forsberg

** Attachment added: Patch fixing problem
   http://launchpadlibrarian.net/14554741/commands.cfg.diff

-- 
Path to 'mail' incorrect in /etc/nagios2/commands.cfg
https://bugs.launchpad.net/bugs/231004
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios2 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 205111] Re: likewise-open service does not start automatically

2008-04-24 Thread erik
** Changed in: likewise-open (Ubuntu)
   Status: Fix Released = Confirmed

-- 
likewise-open service does not start automatically
https://bugs.launchpad.net/bugs/205111
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs