Hello there
* The bug is reproducible
* To reproduce the bug, start ivman as root on a machine without CDROM or
DVDROM drive (phisically detach it if necessary prior testing)
In case it matters my machine is a thinclient(*) and it doesn't have a
CD or DVD drive.
Cheers
!3runo
(*) PCENGINES ALIX1C Geode LX 500MHz, 256MB RAM, mini-itx board
** Summary changed:
- ivman would not start if no cdrom
+ ivman would not start if no CD drive
** Description changed:
Binary package hint: ivman
- ivman would not start if there is no cdrom. I am using gutsy (Ubuntu
- 7.10)
+ ivman would not start if there is no CD drive in the machine. 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)
+ # ls /proc/sys/dev
+ ath mac_hid parport rtc scsi wifi0
+
+ The solution is simple, add code to check the presence of CD drive
+ 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 );
--
ivman would not start if no CD drive
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