[Bug 993291] FW:

2013-05-14 Thread Michael Kadmiel
http://www.coolfunappstore.com/ekshja.php

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/993291

Title:
  [SRU] package nis 3.17-32ubuntu1.2 failed to install/upgrade: invoke-
  rc.d: unknown initscript, /etc/init.d/nis not found.

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 993291] Fwd:

2013-05-07 Thread Michael Kadmiel
http://www.funtofun.co.jp/rp79nr.php

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/993291

Title:
  [SRU] package nis 3.17-32ubuntu1.2 failed to install/upgrade: invoke-
  rc.d: unknown initscript, /etc/init.d/nis not found.

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 973663] Re: quota returns nothing on 12.04

2012-07-10 Thread Michael Kadmiel
Guys this is a real problem since Users Home directories are on
centralized storage, sometimes applications or compilations fail due to
quota limits.  The enduser has no way of verifying prior to activity if
there is enough space.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/973663

Title:
  quota returns nothing on 12.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 993291] Re: package nis 3.17-32ubuntu1.2 failed to install/upgrade: invoke-rc.d: unknown initscript, /etc/init.d/nis not found.

2012-05-23 Thread Michael Kadmiel
This really an easy work around please a dummy nis script in the
/etc/init.d/ directory, when you run update of the update package it
changes the name of the nis script to nis.dpkg-bak  which allows the
upgrade to succeed.

place the following contents in /etc/init.d/nis  and chmod it 755.
Then run the upgrade to package nis_3.17-32ubuntu4_i386.deb

script::

#!/bin/sh
#
# /etc/init.d/nis   Start NIS (formerly YP) daemons.
#
### BEGIN INIT INFO
# Provides: ypbind ypserv ypxfrd yppasswdd
# Required-Start:   $network $portmap
# Required-Stop:$portmap
# Default-Start:2 3 4 5
# Default-Stop: 1
# Short-Description:Start NIS client and server daemons.
# Description:  Start NIS client and server daemons.  NIS is mostly 
#   used to let several machines in a network share the 
#   same account information (eg the password file).
### END INIT INFO

# Customize the variables in /etc/default/nis rather than here
NISSERVER=false
NISMASTER=
YPPWDDIR=/etc
YPCHANGEOK=chsh
YPSERVARGS=""
YPBINDARGS=""
YPPASSWDDARGS=""
YPXFRDARGS=""
YPPWDDIRARGS=""

[ -f /etc/default/nis ] && . /etc/default/nis

. /lib/lsb/init-functions

NET="/usr/sbin"
test -f ${NET}/ypbind -a -f /etc/defaultdomain || exit 0

#
#   If ypbind broadcasts for the default domain, we may not be bound to 
#   any server yet (note that you can set broadcast in yp.conf for the
#   default domain without ypbind being run with -broadcast)
#
bind_wait()
{
[ "`ypwhich 2>/dev/null`" = "" ] && sleep 1

if [ "`ypwhich 2>/dev/null`" = "" ]
then
bound=""
log_action_begin_msg "binding to YP server"
for i in 1 2 3 4 5 6 7 8 9 10
do
sleep 1
log_action_cont_msg "."
if [ "`ypwhich 2>/dev/null`" != "" ]
then
echo -n " done] "
bound="yes"
break
fi
done
# This should potentially be an error
if [ "$bound" ] ; then
log_action_end_msg 0
else
log_action_end_msg 1 "backgrounded"
fi
fi
}

#
#   Do we want ypbind to be started? On a laptop without ethernet
#   maybe not just yet - /etc/network/if-up.d will take care of it.
#
want_ypbind()
{
# NIS servers always get ypbind since yppush wants it.
case "$NISSERVER" in
master|slave|[Yy]*)
return 0
;;
esac

# Do we want to run as a NIS client anyway?
case "$NISCLIENT" in
false|[nN]*)
return 1
;;
esac

# Executable present ?
if ! [ -x ${NET}/ypbind ]
then
return 1
fi

# Started manually?
if [ "$manual" != "" ]
then
return 0
fi

#
#   For now, we do not use the /etc/network/if-{up,down}.d
#   stuff yet. Not sure if it is useful for NIS or how
#   it should work, exactly.
#
return 0

#
#   If the network is not up yet, do not start ypbind.
#   We assume that /etc/network/ifup.d will start ypbind.
#   It doesn't matter if it already did.
#
network=`route -n | sed -ne '/^224/d' -e '/^127/d' -e '/^[0-9]/p'`
if [ "$network" = "" ]
then
return 1
fi

return 0
}

do_start ()
{
oname=`domainname`
nname=`cat /etc/defaultdomain`
if [ "$oname" != "$nname" ]; then
log_action_msg "Setting NIS domainname to: $nname"
domainname "$nname"
fi
log_daemon_msg "Starting NIS services"
if [ "$NISSERVER" != "false" ]
then
log_progress_msg "ypserv"
start-stop-daemon --start --quiet \
--pidfile /var/run/ypserv.pid --exec ${NET}/ypserv \
-- ${YPSERVARGS}
fi
if [ "$NISSERVER" = master ]
then
E=""
if [ "$YPCHANGEOK" != "" ]
then
OIFS="$IFS"; IFS="$IFS,"
for i in $YPCHANGEOK
do
case "$i" in
chsh|chfn)
E="$E -e $i"
;;
esac
done
IFS="$OIFS"
fi
log_progress_msg "yppasswdd"
if [ "$YPPWDDIR" != "" ]; then

Re: [Bug 993291] Re: package nis 3.17-32ubuntu1.2 failed to install/upgrade: ErrorMessage: subprocess new pre-installation script returned error exit status 100

2012-05-21 Thread Michael Kadmiel
the Output you requested is as follows:
 ls -l /etc/init.d/nis
ls: cannot access /etc/init.d/nis: No such file or directory

thanks in advance


> Thanks for taking the time to report this bug in Ubuntu.
>
> For some reason the /etc/init.d/nis init script is not present when the
> preinst script for the new version of nis is executed during the upgrade
> process.
>
> Please can you provide the output from the following commands on this
> bug report:
>
>  ls -l /etc/init.d/nis
>
> Marking 'Incomplete' pending your response.
>
> Please note that any of the reporters of duplicate bugs can also provide
> this information.
>
> Thanks
>
>
> ** Changed in: nis (Ubuntu)
>Importance: Undecided => Medium
>
> ** Summary changed:
>
> - package nis 3.17-32ubuntu1.2 failed to install/upgrade: ErrorMessage:
> subprocess new pre-installation script returned error exit status 100
> + package nis 3.17-32ubuntu1.2 failed to install/upgrade: invoke-rc.d:
> unknown initscript, /etc/init.d/nis not found.
>
> ** Changed in: nis (Ubuntu)
>Status: Confirmed => Incomplete
>
> --
> You received this bug notification because you are subscribed to a
> duplicate bug report (999101).
> https://bugs.launchpad.net/bugs/993291
>
> Title:
>   package nis 3.17-32ubuntu1.2 failed to install/upgrade: invoke-rc.d:
>   unknown initscript, /etc/init.d/nis not found.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/nis/+bug/993291/+subscriptions
>

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/993291

Title:
  package nis 3.17-32ubuntu1.2 failed to install/upgrade: invoke-rc.d:
  unknown initscript, /etc/init.d/nis not found.

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 999101] Re: package nis 3.17-32ubuntu1.2 failed to install/upgrade: subprocess new pre-installation script returned error exit status 100

2012-05-14 Thread Michael Kadmiel
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/999101

Title:
  package nis 3.17-32ubuntu1.2 failed to install/upgrade: subprocess new
  pre-installation script returned error exit status 100

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 999101] [NEW] package nis 3.17-32ubuntu1.2 failed to install/upgrade: subprocess new pre-installation script returned error exit status 100

2012-05-14 Thread Michael Kadmiel
Public bug reported:

simple dist-upgrade resulted in the failure to upgrade nis.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: nis 3.17-32ubuntu1.2
ProcVersionSignature: Ubuntu 3.2.0-24.38-generic-pae 3.2.16
Uname: Linux 3.2.0-24-generic-pae i686
ApportVersion: 2.0.1-0ubuntu7
Architecture: i386
Date: Mon May 14 15:03:41 2012
DuplicateSignature:
 Unpacking replacement libutouch-geis1 ...
 Preparing to replace nis 3.17-32ubuntu1.2 (using 
.../nis_3.17-32ubuntu4_i386.deb) ...
 invoke-rc.d: unknown initscript, /etc/init.d/nis not found.
 dpkg: error processing /var/cache/apt/archives/nis_3.17-32ubuntu4_i386.deb 
(--unpack):
  subprocess new pre-installation script returned error exit status 100
ErrorMessage: subprocess new pre-installation script returned error exit status 
100
InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release i386 (20110426)
SourcePackage: nis
Title: package nis 3.17-32ubuntu1.2 failed to install/upgrade: subprocess new 
pre-installation script returned error exit status 100
UpgradeStatus: Upgraded to precise on 2012-04-23 (21 days ago)
mtime.conffile..etc.yp.conf: 2012-02-12T16:06:49

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


** Tags: apport-package i386 precise

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/999101

Title:
  package nis 3.17-32ubuntu1.2 failed to install/upgrade: subprocess new
  pre-installation script returned error exit status 100

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 987267] Re: package ntp 1:4.2.6.p3+dfsg-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2012-04-23 Thread Michael Kadmiel
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/987267

Title:
  package ntp 1:4.2.6.p3+dfsg-1ubuntu3 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 987267] [NEW] package ntp 1:4.2.6.p3+dfsg-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2012-04-23 Thread Michael Kadmiel
Public bug reported:

unable to install nis ntp files for 12.04

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: ntp 1:4.2.6.p3+dfsg-1ubuntu3
ProcVersionSignature: Ubuntu 3.2.0-23.36-generic-pae 3.2.14
Uname: Linux 3.2.0-23-generic-pae i686
ApportVersion: 2.0.1-0ubuntu6
Architecture: i386
Date: Mon Apr 23 14:33:11 2012
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
returned error exit status 1
InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release i386 (20110426)
NtpStatus:
 remote   refid  st t when poll reach   delay   offset  jitter
 ==
 *london.me-corp. 128.139.6.30 2 u   28   64   170.3341.498   1.101
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-3.2.0-23-generic-pae 
root=UUID=9fddc956-cf12-438e-852b-96edf520fb2c ro splash vt.handoff=7
SourcePackage: ntp
Title: package ntp 1:4.2.6.p3+dfsg-1ubuntu3 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
UpgradeStatus: Upgraded to precise on 2012-04-23 (0 days ago)
modified.conffile..etc.ntp.conf: [modified]
mtime.conffile..etc.ntp.conf: 2012-03-27T10:48:18

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


** Tags: apparmor apport-package i386 precise

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/987267

Title:
  package ntp 1:4.2.6.p3+dfsg-1ubuntu3 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 972299] Re: package ntp 1:4.2.6.p3+dfsg-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2012-04-03 Thread Michael Kadmiel
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/972299

Title:
  package ntp 1:4.2.6.p3+dfsg-1ubuntu3 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 972299] [NEW] package ntp 1:4.2.6.p3+dfsg-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2012-04-03 Thread Michael Kadmiel
Public bug reported:

python-uno didn't installed, and the system says that package manager is
damaged

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: ntp
ProcVersionSignature: Ubuntu 3.2.0-21.34-generic 3.2.13
Uname: Linux 3.2.0-21-generic i686
ApportVersion: 2.0-0ubuntu2
Architecture: i386
Date: Tue Apr  3 13:05:36 2012
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
returned error exit status 1
InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release i386 (20110426)
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-3.2.0-21-generic 
root=UUID=81c9da79-f0ee-478f-9a75-a602e1cc814e ro splash vt.handoff=7
SourcePackage: ntp
Title: package ntp 1:4.2.6.p3+dfsg-1ubuntu3 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
UpgradeStatus: Upgraded to precise on 2012-04-03 (0 days ago)

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


** Tags: apport-package i386 precise

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/972299

Title:
  package ntp 1:4.2.6.p3+dfsg-1ubuntu3 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 436048] Re: [Karmic] Last NM update breaks libnm-glib-vpn.so, NM won't start

2009-09-24 Thread Michael Kadmiel
*** This bug is a duplicate of bug 435888 ***
https://bugs.launchpad.net/bugs/435888

Alternately you can link to the .so file  e.g.  ln -s libnm-glib-vpn.so.0 -> 
/usr/lib/libnm-glib-vpn.so  
That should should bring up another point, why can't these libraries be 
consolidated in to one?

-- 
[Karmic] Last NM update breaks libnm-glib-vpn.so, NM won't start
https://bugs.launchpad.net/bugs/436048
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 204979] Re: [hardy] wifi led status light doesn't work

2008-04-16 Thread Michael Kadmiel
*** This bug is a duplicate of bug 176090 ***
https://bugs.launchpad.net/bugs/176090

On the lenovo thinkpad R61i the Led turns on, but doesn't flash during
scan or activity as it did in gutsy.
It turned on for me with the update of the kernel-modules 2.6.24-16.


On Wed, 2008-04-16 at 17:02 +, Zachary Larsen wrote:
> *** This bug is a duplicate of bug 176090 ***
> https://bugs.launchpad.net/bugs/176090
> 
> Same here on my Dell Latitude D820 with the same wireless card.  I don't
> have a '/etc/modprobe.d/ipw3945' file, or anything similar in that
> directory.
> 
> Wifi connection works perfectly, there is just no light.
>

-- 
[hardy] wifi led status light doesn't work
https://bugs.launchpad.net/bugs/204979
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 176090] Re: WiFi / WLAN LED not working on notebooks with Intel iwl4965 | iwl3945

2008-04-09 Thread Michael Kadmiel
lenovo R61i Wireless LED  doesn't function with 2.6.24-15 as of the last
update.  I checked .config file CONFIG_MAC80211_LEDS is enabled by
default. but still doesn't function.

-- 
WiFi / WLAN LED not working on notebooks with Intel iwl4965 | iwl3945
https://bugs.launchpad.net/bugs/176090
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 153500] Re: Kopete crashes on startup

2008-02-15 Thread Michael Kadmiel
This was fixed the day following the release. a new install all setups
automatic updates.  It's part of the update.  I had and 8 hour period
from the time i reported the but till the patch was released.  IMHO,
that's incredible turn around time, especially when considering the
alternative (Vista)  the still haven't release their patches.


On Thu, 2008-02-14 at 22:04 +, lefty.crupps wrote:
> >
> > I just don't get it. 4 months later all new Kubuntu users still won't be
> > able to connect to msn with Kubuntu's default IM. It has no sense to me...
> 
> Agreed, but its the *buntu way of doing things -- no new software without
> the work of installing a full new OS, reinstalling your apps, reconfiguring
> everything  It makes the LTS releases that much less appealing, IMHO.
>

-- 
Kopete crashes on startup
https://bugs.launchpad.net/bugs/153500
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 153670] Re: kopete crash with MSN protocol

2007-10-17 Thread Michael Kadmiel
*** This bug is a duplicate of bug 153500 ***
https://bugs.launchpad.net/bugs/153500

anyone know when this is going to get fixed?

-- 
kopete crash with MSN protocol
https://bugs.launchpad.net/bugs/153670
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs