Comment 0 for bug 215656

Revision history for this message
Bruno (blfc) wrote : [gutsy] ivman would not start if no cdrom

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 address hidden>
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 );