Public bug reported:

Binary package hint: ivman

ivman would not start if there is no cdrom. I am using gutsy (Ubuntu
7.10)

# dpkg -s ivman
Package: ivman
Status: install ok installed
Priority: optional
Section: utils
Installed-Size: 284
Maintainer: Ubuntu MOTU Developers <[EMAIL PROTECTED]>
Architecture: i386
Version: 0.6.14-2ubuntu1
(...)

# ivman
manager.c:1387 (do_startup_configure) Directory /etc/ivman/ will be used for 
configuration files.
/bin/sh: /proc/sys/dev/cdrom/lock: No such file or directory

The solution is simple, add code to check the presence of cdrom before
trying to use it (borrowed from debian package)

Index: ivman-0.6.14/src/manager.c
===================================================================
--- ivman-0.6.14.orig/src/manager.c    2007-05-28 10:30:10.000000000 +0200
+++ ivman-0.6.14/src/manager.c 2007-05-28 10:31:29.000000000 +0200
@@ -1411,7 +1411,9 @@
     }
 
     // Permanently unlock CD / DVD drive
-    if ( geteuid() == 0 )
+    // Silently ignore not existing CD / DVD drive
+    struct stat statistic;
+    if ( geteuid() == 0 && stat("/proc/sys/dev/cdrom/lock",&statistic) == 0 )
         ivm_run_command( "echo 0 > /proc/sys/dev/cdrom/lock", NULL, FALSE );

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

-- 
[gutsy] ivman would not start if no cdrom
https://bugs.launchpad.net/bugs/215656
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to