summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-23 14:46:39 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:31:05 +0100
commit74f8c4c954a06ebc99be06ad8b77e0ef0880b30e (patch)
treef486a73895421b19c997db51edb5ee5440bc6feb /debian
parentf95e8bc85bf9ba4a5eeacae3406197dc0df4f717 (diff)
downloadlive-boot-74f8c4c954a06ebc99be06ad8b77e0ef0880b30e.tar.gz
live-boot-74f8c4c954a06ebc99be06ad8b77e0ef0880b30e.zip
Adding live-initramfs 1.91.2-1.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog6
-rw-r--r--debian/control4
-rw-r--r--debian/live-initramfs.init5
-rw-r--r--debian/live-initramfs.postinst5
-rw-r--r--debian/live-initramfs.postrm8
5 files changed, 24 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog
index f673bc6..1aef5a5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+live-initramfs (1.91.2-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 25 Jun 2007 00:00:00 +0200
+
live-initramfs (1.91.1-1) unstable; urgency=medium
* New upstream release.
diff --git a/debian/control b/debian/control
index 46c92b8..79c15b0 100644
--- a/debian/control
+++ b/debian/control
@@ -10,8 +10,8 @@ XS-VCS-Browse: http://svn.debian.org/wsvn/debian-live/dists/trunk/live-initramfs
Package: live-initramfs
Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, eject, file, initramfs-tools, sudo, user-setup
-Recommends: live-sysvinit
+Depends: ${shlibs:Depends}, ${misc:Depends}, file, initramfs-tools, sudo, user-setup
+Recommends: eject, live-sysvinit
Suggests: genext2fs, squashfs-tools
Conflicts: casper (<< 1.87)
Replaces: casper
diff --git a/debian/live-initramfs.init b/debian/live-initramfs.init
index a7274bd..cbad459 100644
--- a/debian/live-initramfs.init
+++ b/debian/live-initramfs.init
@@ -81,7 +81,10 @@ do_stop ()
done
if [ -z ${QUICKREBOOT} ]; then
- eject -p -m /live_media >/dev/null 2>&1
+ if [ -x /usr/bin/eject ]
+ then
+ eject -p -m /live_media >/dev/null 2>&1
+ fi
# XXX - i18n
echo "Please remove the disc and close the tray (if any) then press ENTER: "
diff --git a/debian/live-initramfs.postinst b/debian/live-initramfs.postinst
index 9a508c6..752b161 100644
--- a/debian/live-initramfs.postinst
+++ b/debian/live-initramfs.postinst
@@ -1,5 +1,8 @@
#!/bin/sh
-update-initramfs -k all -u
+if [ -x /usr/sbin/update-initramfs ]
+then
+ update-initramfs -k all -u
+fi
#DEBHELPER#
diff --git a/debian/live-initramfs.postrm b/debian/live-initramfs.postrm
new file mode 100644
index 0000000..752b161
--- /dev/null
+++ b/debian/live-initramfs.postrm
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+if [ -x /usr/sbin/update-initramfs ]
+then
+ update-initramfs -k all -u
+fi
+
+#DEBHELPER#