[Bug 44329] Re: Tiger won't run when using varrun filesystem

2007-03-09 Thread William Grant
Fixed in Sid and Feisty.

** Changed in: tiger (Ubuntu)
   Status: Confirmed = Fix Released

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2007-01-18 Thread vikata
Matthias,

Could this fix also be ported to Dapper? I am running LTS on our systems
and it is also affected by this bug.

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


Re: [Bug 44329] Re: Tiger won't run when using varrun filesystem

2007-01-18 Thread Matthias Urlichs
Hi,

vikata:
 Could this fix also be ported to Dapper? I am running LTS on our systems
 and it is also affected by this bug.
 
It's an /etc/init.d script, which is a configuration file -- so feel
free to edit it.

-- 
Matthias Urlichs   |   {M:U} IT Design @ m-u-it.de   |  [EMAIL PROTECTED]
Disclaimer: The quote was selected randomly. Really. | http://smurf.noris.de
 - -
All hierarchies contain administrators and managers, and they tend to appear
at alternating levels in the hierarchy.
-- Thomas L. Martin

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2007-01-18 Thread Andy Hauser
@David
The hangs are caused by deb_md5sums, see:
https://bugs.launchpad.net/ubuntu/+source/tiger/+bug/50611

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-12-12 Thread Daniel Holbach
** Changed in: tiger (Ubuntu)
 Assignee: MOTU Reviewers Team = (unassigned)

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-09-29 Thread David Goodwin
I assume this is why I can't use 'tiger' on Dapper - in that it seems to
hang midway though it's tigercron cron job.

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-09-29 Thread Richard Laager
David, this bug shouldn't cause that problem.

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-08-31 Thread Bug Watch Updater
** Changed in: tiger (Debian)
   Status: Unconfirmed = Fix Released

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-08-30 Thread Matthias Urlichs
** Changed in: tiger (Ubuntu)
   Status: Unconfirmed = Confirmed

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-08-30 Thread Matthias Urlichs
I have uploaded a fixed package as an interim solution.

Changes: 
 tiger (1:3.2.1-31ubuntu1) edgy; urgency=low
 .
   * Auto-create the work directory if it's in /var/run
   * Move the default work directory to /var/lib/tiger/work.
 - See launchpad bug #44329
   * Clean directories correctly when purging.


** Description changed:

  Binary package hint: tiger
  
  Tiger relies (by default) on using the directory /var/run/tiger/work for
- it's temporary files. This directory is create by the package install
+ its temporary files. This directory is create by the package install
  scripts. However, if you're using the varrun filesystem for /var/run (as
  dapper seems to), then this directory disappears on reboot.
  
  The simple solution is for tiger to attempt to recreate it if it's
  missing and only fail if it can't. Here's a patch for the
  /usr/lib/tiger/config script which will do just that:
  
  --- /usr/lib/tiger/config.orig  2006-05-12 14:49:15.0 +1000
  +++ /usr/lib/tiger/config.patched   2006-05-12 14:51:03.0 +1000
  @@ -285,8 +285,13 @@
 # TODO: WORKDIR should be removed on exit if it is located in a temporary
 # directory
 if [ ! -d $WORKDIR ] ; then
  - echo Configured working directory $WORKDIR does not exist 2
  - exit 1
  +  if ! mkdir -p $WORKDIR  /dev/null 21 ; then
  +  echo Configured working directory $WORKDIR does not exist and 
cannot be created 2
  + exit 1
  +  elif [ $QUIET != Y ] ; then
  +  echo Creating working directory $WORKDIR
  +  echo
  +  fi
 fi

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-08-27 Thread Barry deFreese
So should this bug remain open or not?  Thank you.

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-08-27 Thread Phaedrus
It should remain open until it is resolved upstream. I think there is a
fix in their svn or cvs, but it is not released.

You can fix it locally by changing /usr/lib/tiger/config line 54 from:

TigerWorkDir=/var/run/tiger/work

to:

TigerWorkDir=/var/lib/tiger/work

and creating the /var/lib/tiger directory. This could probably be done
quite easily in the postinst.

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-08-17 Thread Phaedrus
I have heard from one of the developers that tiger stores status
information in that directory as well, so neither of our solutions will
work properly. That is to say that tiger will resend the same warnings
everything the computer is restarted, instead of only sending warnings
when something changes as it is designed to do.

Last I heard they were going to move WORKDIR into /var/lib. I don't know
what the current status is.

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: [Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-08-17 Thread Joan Tur
Es Dijous, 17 de Agost de 2006 10:36, en Phaedrus va escriure:
| I have heard from one of the developers that tiger stores status
| information in that directory as well, so neither of our solutions will
| work properly. That is to say that tiger will resend the same warnings
| everything the computer is restarted, instead of only sending warnings
| when something changes as it is designed to do.
|
| Last I heard they were going to move WORKDIR into /var/lib. I don't know
| what the current status is.
Ok, thanks for your feedback  ;)

-- 
Joan Tur (aka Quini), Eivissa-Spain
Jabber: [EMAIL PROTECTED]
   Yahoo  AIM: quini2k
www.ClubIbosim.org
  Linux: usuari registrat 190.783

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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


[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-07-28 Thread Andy Hauser
While i think a mere
+ mkdir -p $WORKDIR
should do, please commit something like that.

-- 
Tiger won't run when using varrun filesystem
https://launchpad.net/bugs/44329

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