Re: [Bug 750786] Re: nmbd job fails to start on boot
The one I posted is the fixed version, without the "and net-device-up IFACE!=lo" go figure why, but since maverick.. it's been the only way nmbd has been able to start on boot for me... when the "and net-device-up IFACE!=lo" is present, only smbd starts and i am unable to view the network computers or access their shares as samba requires both smbd and nmbd to be operationnal to function removing that upstart dependency has fixed it for me without any further bugs or issues to report... I guess it's simply unnecessary in the config? Samba used to work damn fine for me up until maverick... On Sat, Apr 9, 2011 at 6:23 PM, Clint Byrum wrote: > Cypher2, thanks for taking the time to file this bug report and help us > make Ubuntu better. > > The nmbd.conf you pasted here is not the current one from natty. > > The current one has this as its start condition: > > start on (local-filesystems and net-device-up IFACE!=lo) > > This means it will be started when any interface *except* lo is > configured. Since nmbd is only used for announcing your address to other > computers, this makes at least some sense in that it will start nmbd > when a real network interface is available. > > I'm not sure I understand then what it is you want to change. Can you > please explain what you expect to happen, and what actually happens? > > Thanks! > > Marking Incomplete pending response. > > ** Changed in: samba (Ubuntu) > Status: New => Incomplete > > -- > You received this bug notification because you are a direct subscriber > of the bug. > https://bugs.launchpad.net/bugs/750786 > > Title: > nmbd job fails to start on boot > > Status in “samba” package in Ubuntu: > Incomplete > > Bug description: > Binary package hint: samba > > Samba fails to start on boot to enable remote file access on ubuntu > and windows. > > I was able to fix the nmbd startup issue on natty and maverick! > > It has to do with the init scrip at /etc/init/nmbd.conf > > The start line needs to state start on local-filesystems ONLY! > > The loopback ethernet interfaces start too late to satisfy the > chronological dependency for nmbd to load as process... > > Thus, /etc/init/nmbd.conf content should be: > > > description "NetBIOS name server" > author "Steve Langasek " > > start on (local-filesystems) > stop on runlevel [!2345] > > expect fork > respawn > > pre-start script >mkdir -p /var/run/samba > > [ -f /etc/samba/smb.conf ] || { stop; exit 0; } > >install -o root -g root -m 755 -d /var/run/samba >NMBD_DISABLED=`testparm -s --parameter-name='disable netbios' > 2>/dev/null` > > [ "x$NMBD_DISABLED" = xYes ] && { stop; exit 0; } > >exit 0 > end script > > exec nmbd -D > > ProblemType: Bug > DistroRelease: Ubuntu 11.04 > Package: samba 2:3.5.8~dfsg-1ubuntu1 > ProcVersionSignature: Ubuntu 2.6.38-7.39-generic 2.6.38 > Uname: Linux 2.6.38-7-generic x86_64 > Architecture: amd64 > Date: Mon Apr 4 17:46:02 2011 > InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Alpha amd64 (20110302) > ProcEnviron: > LANGUAGE=en_CA:en > LANG=en_CA.UTF-8 > SHELL=/bin/bash > RelatedPackageVersions: > nautilus 1:2.32.2.1-0ubuntu11.1 > gvfs 1.7.3-0ubuntu2 > SambaClientRegression: Yes > SourcePackage: samba > UpgradeStatus: No upgrade log present (probably fresh install) > > To unsubscribe from this bug, go to: > https://bugs.launchpad.net/ubuntu/+source/samba/+bug/750786/+subscribe > -- *TND*esigns | Graphic & Industrial Design Solutions Inc. 514 . 583 . 7386 -- 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/750786 Title: nmbd job fails to start on boot -- 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 752730] Re: NFS mounts fail due to upstart condition on 'mounting TYPE=nfs'
This bug was fixed in the package autofs5 - 5.0.5-0ubuntu6 --- autofs5 (5.0.5-0ubuntu6) natty; urgency=low * Remove mounting TYPE=nfs from start conditions, change to start on filesystem and started networking to still solve bug 733914 as well. (LP: #752730) * Re-add sourcing of /etc/default/autofs to get OPTIONS so upgrades won't lose their settings. -- Clint ByrumSat, 09 Apr 2011 22:48:03 -0700 ** Changed in: autofs5 (Ubuntu) Status: Triaged => Fix Released -- 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/752730 Title: NFS mounts fail due to upstart condition on 'mounting TYPE=nfs' -- 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 754522] Re: autofs not starting if no nfs-mount in fstab
*** This bug is a duplicate of bug 752730 *** https://bugs.launchpad.net/bugs/752730 Thomas, thanks for the bug report. I believe this is a duplicate of bug #752730. Marking as such. ** This bug has been marked a duplicate of bug 752730 NFS mounts fail due to upstart condition on 'mounting TYPE=nfs' * You can subscribe to bug 752730 by following this link: https://bugs.launchpad.net/ubuntu/+source/autofs5/+bug/752730/+subscribe -- 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/754522 Title: autofs not starting if no nfs-mount in fstab -- 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 752730] Re: NFS mounts fail due to upstart condition on 'mounting TYPE=nfs'
** Changed in: autofs5 (Ubuntu) Status: New => Triaged ** Changed in: autofs5 (Ubuntu) Importance: Undecided => High -- 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/752730 Title: NFS mounts fail due to upstart condition on 'mounting TYPE=nfs' -- 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 750786] Re: nmbd job fails to start on boot
Cypher2, thanks for taking the time to file this bug report and help us make Ubuntu better. The nmbd.conf you pasted here is not the current one from natty. The current one has this as its start condition: start on (local-filesystems and net-device-up IFACE!=lo) This means it will be started when any interface *except* lo is configured. Since nmbd is only used for announcing your address to other computers, this makes at least some sense in that it will start nmbd when a real network interface is available. I'm not sure I understand then what it is you want to change. Can you please explain what you expect to happen, and what actually happens? Thanks! Marking Incomplete pending response. ** Changed in: samba (Ubuntu) Status: New => Incomplete -- 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/750786 Title: nmbd job fails to start on boot -- 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 750371] Re: squid causing /var to stay busy during shutdown
*** This bug is a duplicate of bug 688541 *** https://bugs.launchpad.net/bugs/688541 /etc/init/squid.conf actually does have the appropriate 'stop on': stop on runlevel [!2345] However, umountfs/sendsigs don't wait for these things to actually die before completing the shutdown. That is bug #688541 . So , This is a duplicate of that bug, marking as such. ** This bug has been marked a duplicate of bug 688541 race condition on shutdown (leads to corrupted fs) * You can subscribe to bug 688541 by following this link: https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/688541/+subscribe -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to squid in Ubuntu. https://bugs.launchpad.net/bugs/750371 Title: squid causing /var to stay busy during shutdown -- 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
Re: [Bug 576501] Re: vmbuilder doesn't recognize --ec2 flag
Hi Serge. Sorry for the late reply. I'll do some testing asap. I'll return back to you within a week. -Henrik On Sun, Apr 3, 2011 at 3:22 AM, Serge Hallyn <576...@bugs.launchpad.net> wrote: > The attached updated EC2 class works for me. Can you please test it? > If it works for you, I'll update the vmbuilder package and pursue and > SRU for all previous releases. > > To test, please replace your VMBuilder/plugins/ec2/__init__.py file with > the attached one. I.e.: > > dest=`find /usr/lib -maxdepth 3 -name VMBuilder | tail -1` > cp $dest/plugins/ec2/__init__.py $dest/plugins/ec2/init.py.orig > cp newinit.py $dest/plugins/ec2/__init__.py > chmod ugo+x $dest/plugins/ec2/__init__.py > > ** Attachment added: "new ec2 init.py" > > https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/576501/+attachment/1971044/+files/__init__.py > > -- > You received this bug notification because you are a direct subscriber > of the bug. > https://bugs.launchpad.net/bugs/576501 > > Title: > vmbuilder doesn't recognize --ec2 flag > > Status in Virtual Machine Builder: > New > Status in “vm-builder” package in Ubuntu: > In Progress > > Bug description: > Description: Ubuntu 10.04 LTS > Release: 10.04 > > python-vm-builder-ec2: > Installed: 0.12.3-0ubuntu1 > Candidate: 0.12.3-0ubuntu1 > Version table: > *** 0.12.3-0ubuntu1 0 > 500 http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ lucid/universe > Packages > 100 /var/lib/dpkg/status > > Hi, > > I can't generate EC2 images with vmbuilder. I'm using a command like > this: > > sudo vmbuilder xen ubuntu --suite=lucid --ec2 \ > --ec2-cert=.ec2/cert-.pem \ > --ec2-key=.ec2/pk-.pem \ > --ec2-access-key=WHATEVER \ > --ec2-secret-key=WHATEVER \ > --ec2-user=424242424242 --ec2-bucket=anyrandombucket --ec2-prefix=test \ > --ec2-version='first' \ > --firstboot=/usr/share/doc/python-vm-builder-ec2/examples/ec2-firstboot.sh \ > --part=/usr/share/doc/python-vm-builder-ec2/examples/ec2-i386-part-file.txt \ > --debug > > Actually, I was following this howto: > https://wiki.ubuntu.com/EC2Vmbuilder > > When I run vmbuilder with those flags, I just get this message: > > Usage: vmbuilder hypervisor distro [options] > > vmbuilder: error: no such option: --ec2 > > So, I can not build images for Amazon EC2. > > I inspected /usr/share/pyshared/VMBuilder/plugins/ec2/__init__.py and I found > at the last line of that file this: > > #register_plugin(EC2) > > I uncommented that line and it didn't work. > Also I tried using register_hypervisor_plugin(EC2), but it didn't work -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to vm-builder in Ubuntu. https://bugs.launchpad.net/bugs/576501 Title: vmbuilder doesn't recognize --ec2 flag -- 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 755755] Re: package postfix 2.8.2-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 75
-- 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/755755 Title: package postfix 2.8.2-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 75 -- 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 755755] [NEW] package postfix 2.8.2-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 75
Public bug reported: Binary package hint: postfix failed update ProblemType: Package DistroRelease: Ubuntu 11.04 Package: postfix 2.8.2-1ubuntu1 ProcVersionSignature: Ubuntu 2.6.38-8.41-generic 2.6.38.2 Uname: Linux 2.6.38-8-generic i686 NonfreeKernelModules: wl Architecture: i386 Date: Sat Apr 9 12:33:49 2011 ErrorMessage: subprocess installed post-installation script returned error exit status 75 InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Alpha i386 (20110321) SourcePackage: postfix Title: package postfix 2.8.2-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 75 UpgradeStatus: Upgraded to natty on 2011-03-29 (11 days ago) ** Affects: postfix (Ubuntu) Importance: Undecided Status: New ** Tags: apport-package i386 natty -- 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/755755 Title: package postfix 2.8.2-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 75 -- 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 755672] Re: package php5-fpm 5.3.5-1ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1
I have found a problem. This script check /var/www directory and return 1 if directory doesn't exists. I think directory doesn't exists in my environment because I didn't install php5 meta-package or apache2. I wanted to install Nginx+PHP only. How about remove this test? Workaround for me: Create /var/www directory and repeat installation. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to php5 in Ubuntu. https://bugs.launchpad.net/bugs/755672 Title: package php5-fpm 5.3.5-1ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 -- 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 755672] Re: package php5-fpm 5.3.5-1ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1
-- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to php5 in Ubuntu. https://bugs.launchpad.net/bugs/755672 Title: package php5-fpm 5.3.5-1ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 -- 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 755672] [NEW] package php5-fpm 5.3.5-1ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1
Public bug reported: Binary package hint: php5 I just selected php5-fpm (I didn't select php5 metapackage because I don't want to use apache2) in synaptic and click install. ProblemType: Package DistroRelease: Ubuntu 11.04 Package: php5-fpm 5.3.5-1ubuntu6 ProcVersionSignature: Ubuntu 2.6.38-8.41-generic 2.6.38.2 Uname: Linux 2.6.38-8-generic i686 NonfreeKernelModules: nvidia Architecture: i386 Date: Sat Apr 9 21:33:06 2011 ErrorMessage: subprocess installed post-installation script returned error exit status 1 InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Alpha i386 (20110302) SourcePackage: php5 Title: package php5-fpm 5.3.5-1ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 UpgradeStatus: Upgraded to natty on 2011-03-25 (15 days ago) ** Affects: php5 (Ubuntu) Importance: Undecided Status: New ** Tags: apport-package i386 natty -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to php5 in Ubuntu. https://bugs.launchpad.net/bugs/755672 Title: package php5-fpm 5.3.5-1ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 -- 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 755673] [NEW] package libmysqlclient-dev (not installed) failed to install/upgrade: trying to overwrite '/usr/include/mysql/decimal.h', which is also in package mysql-devel 0:5.5.11-2
Public bug reported: Did not install ProblemType: Package DistroRelease: Ubuntu 10.04 Package: libmysqlclient-dev (not installed) ProcVersionSignature: Ubuntu 2.6.32-30.59-generic 2.6.32.29+drm33.13 Uname: Linux 2.6.32-30-generic i686 AptOrdering: libmysqlclient-dev: Install libmysqlclient-dev: Configure Architecture: i386 Date: Sat Apr 9 22:55:28 2011 ErrorMessage: trying to overwrite '/usr/include/mysql/decimal.h', which is also in package mysql-devel 0:5.5.11-2 InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429) Logs.var.log.daemon.log: Logs.var.log.kern.log: Apr 7 22:19:28 t0il3t-s0ap kernel: [ 20.344756] type=1505 audit(1302194968.282:11): operation="profile_load" pid=796 name="/usr/sbin/mysqld" MySQLConf.etc.mysql.conf.d.mysqld.safe.syslog.cnf: [mysqld_safe] syslog MySQLVarLibDirListing: ['emotherearth', 'thisisprivate', 'emothereath', 'ib_logfile1', 'planeshift', 'mysql_upgrade_info', 'ib_logfile0', 'ibdata1', 't0il3t-s0ap.pid', 'mysql', 'debian-5.1.flag'] SourcePackage: mysql-dfsg-5.1 Title: package libmysqlclient-dev (not installed) failed to install/upgrade: trying to overwrite '/usr/include/mysql/decimal.h', which is also in package mysql-devel 0:5.5.11-2 ** Affects: mysql-dfsg-5.1 (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 mysql-dfsg-5.1 in Ubuntu. https://bugs.launchpad.net/bugs/755673 Title: package libmysqlclient-dev (not installed) failed to install/upgrade: trying to overwrite '/usr/include/mysql/decimal.h', which is also in package mysql-devel 0:5.5.11-2 -- 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 755673] Re: package libmysqlclient-dev (not installed) failed to install/upgrade: trying to overwrite '/usr/include/mysql/decimal.h', which is also in package mysql-devel 0:5.5.11-2
-- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to mysql-dfsg-5.1 in Ubuntu. https://bugs.launchpad.net/bugs/755673 Title: package libmysqlclient-dev (not installed) failed to install/upgrade: trying to overwrite '/usr/include/mysql/decimal.h', which is also in package mysql-devel 0:5.5.11-2 -- 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 755613] [NEW] package squid 2.7.STABLE7-1ubuntu12.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1
Public bug reported: Binary package hint: squid Installation failed as part of an update of >100 packages (the others all succeeded) ProblemType: Package DistroRelease: Ubuntu 10.04 Package: squid 2.7.STABLE7-1ubuntu12.2 ProcVersionSignature: Ubuntu 2.6.32-30.59-generic 2.6.32.29+drm33.13 Uname: Linux 2.6.32-30-generic i686 Architecture: i386 Date: Sat Apr 9 08:32:11 2011 ErrorMessage: subprocess installed post-installation script returned error exit status 1 SourcePackage: squid Title: package squid 2.7.STABLE7-1ubuntu12.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 ** Affects: squid (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 squid in Ubuntu. https://bugs.launchpad.net/bugs/755613 Title: package squid 2.7.STABLE7-1ubuntu12.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 -- 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 755613] Re: package squid 2.7.STABLE7-1ubuntu12.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1
-- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to squid in Ubuntu. https://bugs.launchpad.net/bugs/755613 Title: package squid 2.7.STABLE7-1ubuntu12.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 -- 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