Adding live-initramfs 1.87.2-1.
authorDaniel Baumann <daniel@debian.org>
Sun, 23 Sep 2007 12:46:36 +0000 (14:46 +0200)
committerDaniel Baumann <daniel@debian.org>
Wed, 9 Mar 2011 16:25:50 +0000 (17:25 +0100)
58 files changed:
bin/casper-getty [deleted file]
bin/casper-login [deleted file]
bin/live-getty [new file with mode: 0755]
bin/live-login [new file with mode: 0755]
bin/live-md5check/Makefile [moved from casper-md5check/Makefile with 50% similarity]
bin/live-md5check/live-md5check.c [moved from casper-md5check/casper-md5check.c with 100% similarity]
bin/live-md5check/md5.c [moved from casper-md5check/md5.c with 100% similarity]
bin/live-md5check/md5.h [moved from casper-md5check/md5.h with 100% similarity]
bin/live-preseed [moved from bin/casper-preseed with 63% similarity]
bin/live-reconfigure [moved from bin/casper-reconfigure with 100% similarity]
bin/live-snapshot [moved from bin/casper-snapshot with 93% similarity]
casper.conf [deleted file]
caspermon/GNOME_PythonAppletCasper.server [deleted file]
caspermon/caspermon-applet [deleted file]
caspermon/caspermond [deleted file]
conf/live.conf [new file with mode: 0644]
debian/changelog
debian/copyright
debian/dirs
debian/examples
debian/init
debian/install
debian/links
debian/manpages
debian/rules
doc/ChangeLog
hooks/live [moved from hooks/casper with 73% similarity]
manpages/live-initramfs.7 [moved from debian/manpage/casper.7 with 96% similarity]
manpages/live-snapshot.1 [moved from debian/manpage/casper-snapshot.1 with 100% similarity]
scripts/live [moved from scripts/casper with 92% similarity]
scripts/live-bottom/01integrity_check [moved from scripts/casper-bottom/01integrity_check with 61% similarity]
scripts/live-bottom/02_timezone [moved from scripts/casper-bottom/02_timezone with 74% similarity]
scripts/live-bottom/05mountpoints [moved from scripts/casper-bottom/05mountpoints with 92% similarity]
scripts/live-bottom/10adduser [moved from scripts/casper-bottom/10adduser with 89% similarity]
scripts/live-bottom/12fstab [moved from scripts/casper-bottom/12fstab with 92% similarity]
scripts/live-bottom/13swap [moved from scripts/casper-bottom/13swap with 96% similarity]
scripts/live-bottom/14locales [moved from scripts/casper-bottom/14locales with 97% similarity]
scripts/live-bottom/15autologin [moved from scripts/casper-bottom/15autologin with 98% similarity]
scripts/live-bottom/18hostname [moved from scripts/casper-bottom/18hostname with 95% similarity]
scripts/live-bottom/19keyboard [moved from scripts/casper-bottom/19keyboard with 79% similarity]
scripts/live-bottom/20xconfig [moved from scripts/casper-bottom/20xconfig with 89% similarity]
scripts/live-bottom/22gnome_panel_data [moved from scripts/casper-bottom/22gnome_panel_data with 88% similarity]
scripts/live-bottom/22screensaver [moved from scripts/casper-bottom/22screensaver with 95% similarity]
scripts/live-bottom/23etc_modules [moved from scripts/casper-bottom/23etc_modules with 92% similarity]
scripts/live-bottom/23networking [moved from scripts/casper-bottom/23networking with 98% similarity]
scripts/live-bottom/24preseed [moved from scripts/casper-bottom/24preseed with 81% similarity]
scripts/live-bottom/25configure_init [moved from scripts/casper-bottom/25configure_init with 98% similarity]
scripts/live-bottom/30accessibility [moved from scripts/casper-bottom/30accessibility with 99% similarity]
scripts/live-bottom/31disable_update_notifier [moved from scripts/casper-bottom/31disable_update_notifier with 96% similarity]
scripts/live-bottom/32disable_hibernation [moved from scripts/casper-bottom/32disable_hibernation with 92% similarity]
scripts/live-bottom/33enable_apport_crashes [moved from scripts/casper-bottom/33enable_apport_crashes with 95% similarity]
scripts/live-bottom/34disable_kwallet [moved from scripts/casper-bottom/34disable_kwallet with 87% similarity]
scripts/live-bottom/35fix_language_selector [moved from scripts/casper-bottom/35fix_language_selector with 95% similarity]
scripts/live-bottom/40install_driver_updates [moved from scripts/casper-bottom/40install_driver_updates with 95% similarity]
scripts/live-bottom/41apt_cdrom [moved from scripts/casper-bottom/41apt_cdrom with 91% similarity]
scripts/live-functions [moved from scripts/casper-functions with 100% similarity]
scripts/live-helpers [moved from scripts/casper-helpers with 100% similarity]
scripts/live-premount/10driver_updates [moved from scripts/casper-premount/10driver_updates with 98% similarity]

diff --git a/bin/casper-getty b/bin/casper-getty
deleted file mode 100755 (executable)
index f885fa9..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#! /bin/sh
-
-autologin=1
-for opt in "$@" ; do
-        if [ "$opt" = "-l" -o "$opt" = "-n" ] ; then
-                autologin=0
-        fi
-done
-
-if [ "$autologin" = "1" ] ; then
-         exec /sbin/getty -n -l /sbin/casper-login $*
-else
-         exec /sbin/getty $*
-fi
-
diff --git a/bin/casper-login b/bin/casper-login
deleted file mode 100755 (executable)
index e6a4173..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#! /bin/sh
-
-USERNAME=root
-[ -f /etc/casper.conf ] && . /etc/casper.conf
-exec /bin/login -f $USERNAME
-
diff --git a/bin/live-getty b/bin/live-getty
new file mode 100755 (executable)
index 0000000..6781ea5
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+set -e
+
+AUTOLOGIN="1"
+
+for ARGUMENT in "${@}"
+do
+       if [ "${ARGUMENT}" = "-l" ] || [ "${ARGUMENT}" = "-n" ]
+       then
+               AUTOLOGIN="0"
+       fi
+done
+
+if [ "${AUTOLOGIN}" = "1" ]
+then
+       exec /sbin/getty -n -l /sbin/live-login ${*}
+else
+       exec /sbin/getty ${*}
+fi
diff --git a/bin/live-login b/bin/live-login
new file mode 100755 (executable)
index 0000000..c2cc5a1
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+USERNAME="root"
+
+if [ -f /etc/live.conf ]
+then
+       . /etc/live.conf
+fi
+
+exec /bin/login -f "${USERNAME}"
similarity index 50%
rename from casper-md5check/Makefile
rename to bin/live-md5check/Makefile
index 4e5408f..51e42b9 100644 (file)
@@ -3,7 +3,7 @@ CC=gcc
 LDFLAGS=-lm
 CFLAGS=$(getconf LFS_CFLAGS) -Wall -O2
 
-casper-md5check: casper-md5check.c md5.c
+live-md5check: live-md5check.c md5.c
 
 clean:
-       rm -f *.o casper-md5check
+       rm -f *.o live-md5check
similarity index 63%
rename from bin/casper-preseed
rename to bin/live-preseed
index c0c76eb..c10315e 100755 (executable)
@@ -8,8 +8,8 @@ value="$3"
 seen="$4"
 [ "$seen" ] || seen=true
 
-if ! (echo "SET $question $value"; echo "FSET $question seen $seen") | chroot "$1" debconf-communicate -fnoninteractive casper >/dev/null; then
-       chroot "$1" debconf-communicate -fnoninteractive casper >/dev/null <<EOF
+if ! (echo "SET $question $value"; echo "FSET $question seen $seen") | chroot "$1" debconf-communicate -fnoninteractive live-initramfs >/dev/null; then
+       chroot "$1" debconf-communicate -fnoninteractive live-initramfs >/dev/null <<EOF
 REGISTER debian-installer/dummy $question
 SET $question $value
 FSET $question seen $seen
similarity index 100%
rename from bin/casper-reconfigure
rename to bin/live-reconfigure
similarity index 93%
rename from bin/casper-snapshot
rename to bin/live-snapshot
index e912493..e3e05fe 100755 (executable)
@@ -29,9 +29,9 @@ PROGRAM="`basename $0`"
 VERSION=0.0.1
 
 
-# Source casper conf
-if [ -e /etc/casper.conf ]; then
-       . /etc/casper.conf
+# Source live conf
+if [ -e /etc/live.conf ]; then
+       . /etc/live.conf
 else
        USERNAME=$(cat /etc/passwd | grep "999" | cut -f1 -d ':')
        HOSTNAME=$(hostname)
@@ -41,7 +41,7 @@ fi
 export USERNAME USERFULLNAME HOSTNAME BUILD_SYSTEM
 
 # Source helper functions
-helpers="/usr/share/initramfs-tools/scripts/casper-helpers"
+helpers="/usr/share/initramfs-tools/scripts/live-helpers"
 if [ -e "${helpers}" ]; then
        . "${helpers}"
 else
@@ -95,7 +95,7 @@ Help ()
        echo "  -o, --output: specifies the output image file (default: $type dependent)."
     echo "  -r, --resync-string: internally used to resync previous made snapshots."
        echo "  -t, --type: specifies the snapshot type between \"squashfs\", \"ext2\" or \"cpio\".gz archive (default: cpio)"
-    echo -e "\nLook at casper-snapshot(1) man page for more information."
+    echo -e "\nLook at live-snapshot(1) man page for more information."
        exit 0
 }
 
@@ -211,8 +211,8 @@ Mount_device ()
        if [ -z "${dev}" ]; then
                # create a temp
                mount -t tmpfs -o rw tmpfs "${MOUNTP}"
-               if [ ! -L /home/$USERNAME/Desktop/casper-snapshot ]; then
-                       ln -s "${MOUNTP}" /home/$USERNAME/Desktop/casper-snapshot
+               if [ ! -L /home/$USERNAME/Desktop/live-snapshot ]; then
+                       ln -s "${MOUNTP}" /home/$USERNAME/Desktop/live-snapshot
                fi
        else
                if [ -b "${dev}" ] ; then
@@ -223,12 +223,12 @@ Mount_device ()
 
 Defaults ()
 {
-       MOUNTP="/mnt/casper-snapshot"
+       MOUNTP="/mnt/live-snapshot"
        COW="/cow"
        DEV=""
-       DEST="${MOUNTP}/casper-sn.cpio.gz"
+       DEST="${MOUNTP}/live-sn.cpio.gz"
        TYPE="cpio"
-       DESKTOP_LINK=/home/$USERNAME/Desktop/casper-snapshot
+       DESKTOP_LINK=/home/$USERNAME/Desktop/live-snapshot
 
        if [ -n "${SNAP_RSTRING}" ]; then
                COW=$(echo "${SNAP_RSTRING}" | cut -f1 -d ':')
diff --git a/casper.conf b/casper.conf
deleted file mode 100644 (file)
index e56ded3..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-# This file should go in /etc/casper.conf
-# Supported variables are:
-# USERNAME, USERFULLNAME, HOST, BUILD_SYSTEM
-
-export USERNAME="ubuntu"
-export USERFULLNAME="Live session user"
-export HOST="ubuntu"
-export BUILD_SYSTEM="Ubuntu"
diff --git a/caspermon/GNOME_PythonAppletCasper.server b/caspermon/GNOME_PythonAppletCasper.server
deleted file mode 100644 (file)
index 34caa04..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-<oaf_info>
-
-<oaf_server iid="OAFIID:GNOME_PythonAppletCasper_Factory"
-            type="exe"
-            location="/usr/share/casper-applet/casper-applet.py">
-
-        <oaf_attribute name="repo_ids" type="stringv">
-                <item value="IDL:Bonobo/GenericFactory:1.0"/>
-                <item value="IDL:Bonobo/Unknown:1.0"/>
-        </oaf_attribute>
-        <oaf_attribute name="name" type="string" value="PythonAppletCasper"/>
-        <oaf_attribute name="description" type="string" value="Python Applet CAsper"/>
-</oaf_server>
-
-<oaf_server iid="OAFIID:GNOME_PythonAppletCasper"
-            type="factory" 
-            location="OAFIID:GNOME_PythonAppletCasper_Factory">
-
-        <oaf_attribute name="repo_ids" type="stringv">
-                <item value="IDL:GNOME/Vertigo/PanelAppletShell:1.0"/>
-                <item value="IDL:Bonobo/Control:1.0"/>
-                <item value="IDL:Bonobo/Unknown:1.0"/>
-        </oaf_attribute>
-        <oaf_attribute name="name" type="string" value="PythonAppletCasper"/>
-        <oaf_attribute name="description" type="string" value="Python Applet Casper"/>
-        <oaf_attribute name="panel:category" type="string" value="Utility"/>
-        <oaf_attribute name="panel:icon" type="string" value="bug-buddy.png"/>
-</oaf_server>
-
-</oaf_info>
diff --git a/caspermon/caspermon-applet b/caspermon/caspermon-applet
deleted file mode 100755 (executable)
index 773e0a4..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-#!/usr/bin/python
-
-import pygtk
-pygtk.require('2.0')
-
-import gtk
-import gnome.applet
-import subprocess
-import os
-
-# A simple applet to display the utilization of the snapshot device
-# during a casper session
-#
-# Matt Zimmerman <mdz@canonical.com>
-
-# TODO:
-# - tooltip with details
-# - flash at threshold
-
-class CasperApplet:
-    def __init__(self, applet, iid):
-        self.timeout_interval = 1000
-        self.device = 'casper-snapshot'
-        self.capacity = [0,0]
-        self.datafile = '/var/lib/casper/snapshot-status'
-        
-        # initializate the gnome internals
-        gnome.init("casper", "0.1")
-
-        self.applet = applet
-
-        self.tooltips = gtk.Tooltips()
-        self.hbox = gtk.HBox()
-        applet.add(self.hbox)
-
-        # add the second button event for the popup menu and the enter mouse event to change the tooltip value
-        self.ev_box = gtk.EventBox()
-        #self.ev_box.connect("button-press-event",self.button_press)
-        self.ev_box.connect("enter-notify-event", self.update_info)
-        self.hbox.add(self.ev_box)
-
-        self.prog = gtk.ProgressBar()
-        self.ev_box.add(self.prog)
-
-        self.update_info()
-        
-        gtk.timeout_add(self.timeout_interval,self.update_info, self)
-
-        applet.connect("destroy",self.cleanup)
-        applet.show_all()
-      
-    def update_info(self, event=None):
-        self.capacity = self.read_info()
-        self.prog.set_fraction(float(self.capacity[0]) / self.capacity[1])
-        self.prog.update()
-
-    def read_info(self):
-        fields = open(self.datafile).readline().split()
-        if fields[2] != 'snapshot':
-            return None
-
-        return map(int,fields[3].split('/', 1))
-
-    def cleanup(self):
-        # what goes here?
-        pass
-
-def casper_factory(applet, iid):
-    CasperApplet(applet, iid)
-
-    return gtk.TRUE
-
-gnome.applet.bonobo_factory("OAFIID:GNOME_PythonAppletCasper_Factory", 
-                             gnome.applet.Applet.__gtype__, 
-                             "casper", "0", casper_factory)
diff --git a/caspermon/caspermond b/caspermon/caspermond
deleted file mode 100644 (file)
index e126447..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-STATEFILE=/var/run/caspermond/status.casper-snapshot
-
-while true; do
-    dmsetup status /dev/mapper/casper-snapshot > $STATEFILE.new
-    mv $STATEFILE.new $STATEFILE
-    sleep 60
-done
diff --git a/conf/live.conf b/conf/live.conf
new file mode 100644 (file)
index 0000000..0b44894
--- /dev/null
@@ -0,0 +1,9 @@
+# /etc/live.conf: configuration file for live-initramfs
+
+BUILD_SYSTEM="Debian"
+
+USERNAME="user"
+USERFULLNAME="Live session user"
+HOST="debian"
+
+export BUILD_SYSTEM USERNAME USERFULLNAME HOST
index 2016c6f..1125793 100644 (file)
@@ -1,3 +1,9 @@
+live-initramfs (1.87.2-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Daniel Baumann <daniel@debian.org>  Mon,  7 May 2007 00:00:00 +0200
+
 live-initramfs (1.87.1-1) unstable; urgency=low
 
   * Initial release, forking casper.
index d1c73c0..0174d36 100644 (file)
@@ -36,7 +36,7 @@ License:
 On Debian systems, the complete text of the GNU General Public License
 can be found in /usr/share/common-licenses/GPL file.
 
-License (casper-md5check/md5.c, casper-md5check/md5,h):
+License (live-md5check/md5.c, live-md5check/md5,h):
 
        Copyright (C) 1999-2002 Aladdin Enterprises
        All rights reserved.
index bb225f1..f929f0c 100644 (file)
@@ -1,4 +1,4 @@
 /etc
-/usr/lib/casper
+/usr/lib/live-initramfs
 /usr/share/initramfs-tools/hooks
 /usr/share/initramfs-tools/scripts
index 195687c..63403a0 100644 (file)
@@ -1 +1 @@
-casper.conf
+conf/live.conf
index 4e53eff..7c0dbe9 100644 (file)
@@ -1,6 +1,6 @@
 #! /bin/sh
 ### BEGIN INIT INFO
-# Provides:          casper
+# Provides:          live-initramfs
 # Required-Start:    $syslog
 # Required-Stop:     $syslog
 # Should-Start:      $local_fs
 #         Marco Amadori <marco.amadori@gmail.com>
 #
 PATH=/usr/sbin:/usr/bin:/sbin:/bin
-NAME=casper
+NAME=live-initramfs
 SCRIPTNAME=/etc/init.d/${NAME}
-DO_SNAPSHOT=/sbin/${NAME}-snapshot
+DO_SNAPSHOT=/sbin/live-snapshot
 
-# Exit if system was not booted by casper
-grep -qs boot=casper /proc/cmdline || exit 0
+# Exit if system was not booted by live-initramfs
+grep -qs boot=live /proc/cmdline || exit 0
 
 # Read configuration variable file if it is present
-[ -r /etc/$NAME.conf ] && . /etc/$NAME.conf
+[ -r /etc/live.conf ] && . /etc/live.conf
 
 # Load the VERBOSE setting and other rcS variables
 [ -f /etc/default/rcS ] && . /etc/default/rcS
index 9e87fd8..fb597d4 100644 (file)
@@ -1,7 +1,7 @@
-bin/casper-getty       sbin
-bin/casper-login       sbin
-bin/casper-preseed     usr/share/casper
-bin/casper-reconfigure usr/share/casper
-bin/casper-snapshot    sbin
+bin/live-getty         sbin
+bin/live-login         sbin
+bin/live-preseed       usr/share/live-initramfs
+bin/live-reconfigure   usr/share/live-initramfs
+bin/live-snapshot      sbin
 hooks                  usr/share/initramfs-tools
 scripts                        usr/share/initramfs-tools
index 0d1d1df..fa3fb68 100644 (file)
@@ -1,2 +1,2 @@
-/usr/share/man/man7/casper.7.gz /usr/share/man/man7/casper-getty.7.gz
-/usr/share/man/man7/casper.7.gz /usr/share/man/man7/casper-login.7.gz
+/usr/share/man/man7/casper.7.gz /usr/share/man/man7/live-getty.7.gz
+/usr/share/man/man7/casper.7.gz /usr/share/man/man7/live-login.7.gz
index 31eb23e..96c4bf7 100644 (file)
@@ -1 +1 @@
-debian/manpage/*
+manpages/*
index 34e0fae..79117a9 100755 (executable)
@@ -24,16 +24,16 @@ build-stamp:
        dh_testdir
 
        # Checking scripts
-       for SCRIPT in bin/* scripts/casper scripts/casper-bottom/*; \
+       for SCRIPT in scripts/live scripts/live-bottom/*; \
        do \
                sh -n $$SCRIPT || exit 1; \
        done
 
        # Setting BUILD_SYSTEM in the binary package
-       sed -i -e 's/\(BUILD_SYSTEM="\).*"/\1'$(BUILD_SYSTEM)'"/g' casper.conf
+       sed -e 's/\(BUILD_SYSTEM="\).*"/\1'$(BUILD_SYSTEM)'"/g' conf/live.conf > live.conf
 
        # Building package
-       CFLAGS="$(CFLAGS)" $(MAKE) -C casper-md5check
+       CFLAGS="$(CFLAGS)" $(MAKE) -C bin/live-md5check
 
        touch build-stamp
 
@@ -43,7 +43,8 @@ clean:
        rm -f build-stamp
 
        # Cleaning package
-       $(MAKE) -C casper-md5check clean
+       $(MAKE) -C bin/live-md5check clean
+       rm -f live.conf
 
        dh_clean
 
@@ -54,8 +55,8 @@ install: build
        dh_installdirs
 
        # Installing package
-       install -m 0755 casper-md5check/casper-md5check debian/live-initramfs/usr/lib/casper
-       install -m 0644 casper.conf debian/live-initramfs/etc/casper.conf
+       install -m 0755 bin/live-md5check/live-md5check debian/live-initramfs/usr/lib/live-initramfs
+       install -m 0644 live.conf debian/live-initramfs/etc/live.conf
 
 binary-indep: build install
 
index af2cf53..087aa82 100644 (file)
@@ -1,3 +1,31 @@
+2007-05-06  Daniel Baumann  <daniel@debian.org>
+
+       * bin/casper-getty, casper-login, casper-preseed, casper-reconfigure,
+         casper-snapshot:
+         - Renamed to live-*.
+       * casper-md5check:
+         - Moved to bin.
+         - Renamed to live-md5check.
+       * casper.conf:
+         - Moved to conf/live.conf.
+       * caspermon:
+         - Removed.
+       * scripts/casper, casper-bottom, casper-functions, casper-helpers,
+         casper-premount:
+         - Renamed to live-*.
+       * bin/live-getty, live-login, conf/live.conf:
+         - Reformated.
+       * bin/live-snapshot, debian/dirs, debian/install, debian/rules,
+         hooks/live, scripts/live:
+         - Replaces casper path names with live.
+       * debian/manpage:
+         - Moved to manpages.
+         - Renamed casper.7 to live-initramfs.7.
+       * debian/init:
+         - Changed activation parameter from boot=casper to boot=live.
+       * scripts/casper-bottom/02_timezone:
+         - Fixed wrong script description.
+
 2007-04-30  Daniel Baumann  <daniel@debian.org>
 
        * Forked casper 1.87.
similarity index 73%
rename from hooks/casper
rename to hooks/live
index 78a3cfb..94383ca 100755 (executable)
@@ -24,9 +24,9 @@ manual_add_modules unionfs
 copy_exec /sbin/losetup /sbin
 
 # Casper hooks
-mkdir -p ${DESTDIR}/lib/casper
-copy_exec /usr/share/casper/casper-reconfigure /bin
-copy_exec /usr/share/casper/casper-preseed /bin
+mkdir -p ${DESTDIR}/lib/live-initramfs
+copy_exec /usr/share/live-initramfs/live-reconfigure /bin
+copy_exec /usr/share/live-initramfs/live-preseed /bin
 
 mkdir -p ${DESTDIR}/lib/udev
 copy_exec /lib/udev/cdrom_id /lib/udev
@@ -62,14 +62,14 @@ manual_add_modules sbp2
 manual_add_modules ohci1394
 
 # integrity check
-copy_exec /usr/lib/casper/casper-md5check /bin
+copy_exec /usr/lib/live-initramfs/live-md5check /bin
 
-cp /usr/share/initramfs-tools/scripts/casper-functions $DESTDIR/scripts
-cp /usr/share/initramfs-tools/scripts/casper-helpers $DESTDIR/scripts
+cp /usr/share/initramfs-tools/scripts/live-functions $DESTDIR/scripts
+cp /usr/share/initramfs-tools/scripts/live-helpers $DESTDIR/scripts
 
 auto_add_modules net
 
-if [ -e /etc/casper.conf ]; then
+if [ -e /etc/live.conf ]; then
     mkdir -p ${DESTDIR}/etc
-    cp /etc/casper.conf ${DESTDIR}/etc
+    cp /etc/live.conf ${DESTDIR}/etc
 fi
similarity index 96%
rename from debian/manpage/casper.7
rename to manpages/live-initramfs.7
index 20805b9..d35e018 100644 (file)
@@ -12,7 +12,7 @@ Casper is a hook for initramfs-tools used to generate an initramfs capable to bo
 
 .SH RECOGNIZED BOOT OPTIONS
 .TP
-.B casper-getty
+.B live-getty
 This enables a special "serial" login shell (experimental).
 .TP
 .B xdebconf
@@ -43,7 +43,7 @@ Configure the running locale as specified, if not present the live-media rootfs
 This tells casper to perform a network mount. The parameter "nfsroot=" (with optional "nfsopts="), should specify where is the location of the root filesystem.  With no args, will try cifs first, and if it fails nfs.
 .TP
 .B persistent
-Casper will look for persistent and snapshot partitions or files labeled "casper-rw", "home-rw", and files called "casper-sn*", "home-sn*" and will try to, in order: mount as /cow the first, mount the second in /home, and just copy the contents of the latter in appropriate locations (snapshots). Snapshots will be tried to be updated on reboot/shutdown. Look at casper-snapshot(1) for more informations.
+Casper will look for persistent and snapshot partitions or files labeled "casper-rw", "home-rw", and files called "casper-sn*", "home-sn*" and will try to, in order: mount as /cow the first, mount the second in /home, and just copy the contents of the latter in appropriate locations (snapshots). Snapshots will be tried to be updated on reboot/shutdown. Look at live-snapshot(1) for more informations.
 .TP
 .B nopersistent
 disables the above mentioned "persistent" feature, useful if the bootloader (like syslinux) has been installed with persistent enabled.
@@ -64,7 +64,7 @@ A path to a file present on the rootfs could be used to preseed debconf database
 All debian installed packages could be preseeded from command-line that way, beware of blanks spaces, they will interfere with parsing, use a preseed file in this case.
 
 .SH FILES
-.B /etc/casper.conf
+.B /etc/live.conf
 some variables can be configured via this config file.
 
 .SH BUGS
@@ -75,7 +75,7 @@ works fully on amd64, i386 and ppc, it should also run on other archs.
 Debian Live project <http://live.debian.net/>
 
 .SH SEE ALSO
-.BR casper-snapshot(1), initramfs-tools(8), make-live(8), make-live.conf(5)
+.BR live-snapshot(1), initramfs-tools(8), make-live(8), make-live.conf(5)
 
 .SH AUTHOR
 casper was written by Tollen Fog Heen <tfheen@canonical.com>, Matt Zimmerman <mdz@canonical.com>, and Marco Amadori <marco.amadori@gmail.com>.
similarity index 92%
rename from scripts/casper
rename to scripts/live
index a4c78b3..9ab1ac5 100755 (executable)
@@ -9,28 +9,28 @@ echo "/root/usr/lib" >> /etc/ld.so.conf
 
 mountpoint=/cdrom
 
-USERNAME=casper
+USERNAME=user
 USERFULLNAME="Live session user"
 HOST=live
 BUILD_SYSTEM=Custom
 
 mkdir -p $mountpoint
 
-[ -f /etc/casper.conf ] && . /etc/casper.conf
+[ -f /etc/live.conf ] && . /etc/live.conf
 export USERNAME USERFULLNAME HOST BUILD_SYSTEM
 
-. /scripts/casper-helpers
+. /scripts/live-helpers
 
-if [ ! -f /casper.vars ]; then
-    touch /casper.vars
+if [ ! -f /live.vars ]; then
+    touch /live.vars
 fi
 
 is_casper_path() {
     path=$1
-    if [ -d "$path/casper" ]; then
-        if [ "$(echo $path/casper/*.squashfs)" != "$path/casper/*.squashfs" ] ||
-            [ "$(echo $path/casper/*.ext2)" != "$path/casper/*.ext2" ] ||
-            [ "$(echo $path/casper/*.dir)" != "$path/casper/*.dir" ]; then
+    if [ -d "$path/live" ]; then
+        if [ "$(echo $path/live/*.squashfs)" != "$path/live/*.squashfs" ] ||
+            [ "$(echo $path/live/*.ext2)" != "$path/live/*.ext2" ] ||
+            [ "$(echo $path/live/*.dir)" != "$path/live/*.dir" ]; then
             return 0
         fi
     fi
@@ -46,7 +46,7 @@ get_backing_device() {
             echo "directory"
             ;;
         *)
-            panic "Unrecognized casper filesystem: $1"
+            panic "Unrecognized live filesystem: $1"
             ;;
     esac
 }
@@ -64,10 +64,10 @@ match_files_in_dir() {
 mount_images_in_directory() {
     directory="$1"
     rootmnt="$2"
-    if match_files_in_dir "$directory/casper/*.squashfs" ||
-        match_files_in_dir "$directory/casper/*.ext2" ||
-        match_files_in_dir "$directory/casper/*.dir"; then
-        setup_unionfs "$directory/casper" "$rootmnt"
+    if match_files_in_dir "$directory/live/*.squashfs" ||
+        match_files_in_dir "$directory/live/*.ext2" ||
+        match_files_in_dir "$directory/live/*.dir"; then
+        setup_unionfs "$directory/live" "$rootmnt"
     else
         :
     fi
@@ -294,7 +294,7 @@ try_snap ()
             return 1
         fi
     fi
-    echo "export ${snap_type}SNAP="${snap_mount}":${snapdev}:${snapfile}" >> /etc/casper.conf # for resync on reboot/halt
+    echo "export ${snap_type}SNAP="${snap_mount}":${snapdev}:${snapfile}" >> /etc/live.conf # for resync on reboot/halt
     return 0
 }
 
@@ -378,15 +378,15 @@ setup_unionfs() {
 
     if [ -n "${SHOWMOUNTS}" ]; then
         for d in ${rofslist}; do
-            mkdir -p "${rootmnt}/casper/${d##*/}"
+            mkdir -p "${rootmnt}/live/${d##*/}"
             case d in
-                *.dir) # do nothing # mount -o bind "${d}" "${rootmnt}/casper/${d##*/}"
+                *.dir) # do nothing # mount -o bind "${d}" "${rootmnt}/live/${d##*/}"
                     ;;
-                *) mount -o move "${d}" "${rootmnt}/casper/${d##*/}"
+                *) mount -o move "${d}" "${rootmnt}/live/${d##*/}"
                     ;;
             esac
         done
-        # shows cow fs on /cow for use by casper-snapshot
+        # shows cow fs on /cow for use by live-snapshot
         mkdir -p "${rootmnt}/cow"
         mount -o bind /cow "${rootmnt}/cow"
     fi
@@ -486,13 +486,13 @@ set_usplash_timeout() {
 mountroot() {
     exec 6>&1
     exec 7>&2
-    exec > casper.log
+    exec > live.log
     exec 2>&1
 
     set_usplash_timeout
-    [ "$quiet" != "y" ] && log_begin_msg "Running /scripts/casper-premount"
+    [ "$quiet" != "y" ] && log_begin_msg "Running /scripts/live-premount"
     pulsate
-    run_scripts /scripts/casper-premount
+    run_scripts /scripts/live-premount
     [ "$quiet" != "y" ] && log_end_msg
 
     # Needed here too because some things (*cough* udev *cough*)
@@ -536,14 +536,14 @@ mountroot() {
 
     log_end_msg
 
-    maybe_break casper-bottom
-    [ "$quiet" != "y" ] && log_begin_msg "Running /scripts/casper-bottom"
+    maybe_break live-bottom
+    [ "$quiet" != "y" ] && log_begin_msg "Running /scripts/live-bottom"
 
     pulsate
-    run_scripts /scripts/casper-bottom
+    run_scripts /scripts/live-bottom
     [ "$quiet" != "y" ] && log_end_msg
 
     exec 1>&6 6>&-
     exec 2>&7 7>&-
-    cp casper.log "${rootmnt}/var/log/"
+    cp live.log "${rootmnt}/var/log/"
 }
similarity index 61%
rename from scripts/casper-bottom/01integrity_check
rename to scripts/live-bottom/01integrity_check
index 637a1ff..d5bc5fe 100755 (executable)
@@ -15,4 +15,4 @@ prereqs)
        ;;
 esac
 
-grep integrity-check /proc/cmdline && casper-md5check /cdrom /cdrom/md5sum.txt < /dev/tty8
+grep integrity-check /proc/cmdline && live-md5check /cdrom /cdrom/md5sum.txt < /dev/tty8
similarity index 74%
rename from scripts/casper-bottom/02_timezone
rename to scripts/live-bottom/02_timezone
index 1cb6402..873c1da 100755 (executable)
@@ -1,9 +1,9 @@
 #! /bin/sh
 
 PREREQ=""
-DESCRIPTION="Adding APT-CDROM source..."
+DESCRIPTION="Setting timezone..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 92%
rename from scripts/casper-bottom/05mountpoints
rename to scripts/live-bottom/05mountpoints
index 7c61de3..411660d 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Moving mount points..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 89%
rename from scripts/casper-bottom/10adduser
rename to scripts/live-bottom/10adduser
index 4fe9378..9179f1b 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Adding live session user..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
@@ -21,7 +21,7 @@ esac
 log_begin_msg "$DESCRIPTION"
 
 # U6aMy0wojraho is just a blank password
-chroot /root debconf-communicate -fnoninteractive casper > /dev/null <<EOF
+chroot /root debconf-communicate -fnoninteractive live-initramfs > /dev/null <<EOF
 set passwd/root-password-crypted *
 set passwd/user-password-crypted U6aMy0wojraho
 set passwd/user-fullname $USERFULLNAME 
@@ -32,7 +32,7 @@ EOF
 chroot /root /usr/lib/user-setup/user-setup-apply > /dev/null
 
 # Clear out debconf database again to avoid confusing ubiquity later.
-chroot /root debconf-communicate -fnoninteractive casper > /dev/null <<EOF
+chroot /root debconf-communicate -fnoninteractive live-initramfs > /dev/null <<EOF
 set passwd/root-password-crypted
 set passwd/user-password-crypted
 set passwd/user-fullname
similarity index 92%
rename from scripts/casper-bottom/12fstab
rename to scripts/live-bottom/12fstab
index 616216a..fa9c642 100755 (executable)
@@ -4,7 +4,7 @@ PREREQ=""
 DESCRIPTION="Configuring fstab..."
 FSTAB=/root/etc/fstab
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 96%
rename from scripts/casper-bottom/13swap
rename to scripts/live-bottom/13swap
index 9c5d0c9..fcef76c 100755 (executable)
@@ -4,7 +4,7 @@ PREREQ=""
 DESCRIPTION="Setting up swap..."
 FSTAB=/root/etc/fstab
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 97%
rename from scripts/casper-bottom/14locales
rename to scripts/live-bottom/14locales
index 3ee3ef0..a03e0d1 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Setting up locales..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 98%
rename from scripts/casper-bottom/15autologin
rename to scripts/live-bottom/15autologin
index 81bd3a4..4b64dc7 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Setting up automatic login..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 95%
rename from scripts/casper-bottom/18hostname
rename to scripts/live-bottom/18hostname
index 19ac61f..591e4ec 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Setting hostname..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 79%
rename from scripts/casper-bottom/19keyboard
rename to scripts/live-bottom/19keyboard
index ef90115..d43e329 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Setting up console keyboard..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
@@ -50,21 +50,21 @@ if [ -x /root/bin/setupcon ] && [ -f /root/etc/default/console-setup ]; then
                         chroot /root sed -i "s/^XKBVARIANT=.*/XKBVARIANT=\"$csvariant\"/" \
                                 /etc/default/console-setup
                 else
-                        casper-preseed /root console-setup/variantcode '' false
+                        live-preseed /root console-setup/variantcode '' false
                 fi
                 if [ "$csmodel" ]; then
                         chroot /root sed -i "s/^XKBMODEL=.*/XKBMODEL=\"$csmodel\"/" \
                                 /etc/default/console-setup
                 else
-                        casper-preseed /root console-setup/modelcode '' false
+                        live-preseed /root console-setup/modelcode '' false
                 fi
         else
-                casper-preseed /root console-setup/layoutcode '' false
-                casper-preseed /root console-setup/variantcode '' false
-                casper-preseed /root console-setup/modelcode '' false
+                live-preseed /root console-setup/layoutcode '' false
+                live-preseed /root console-setup/variantcode '' false
+                live-preseed /root console-setup/modelcode '' false
         fi
 else
         chroot /root /usr/sbin/install-keymap $kbd
-        casper-preseed /root debian-installer/keymap "$kbd"
+        live-preseed /root debian-installer/keymap "$kbd"
 fi
 log_end_msg
similarity index 89%
rename from scripts/casper-bottom/20xconfig
rename to scripts/live-bottom/20xconfig
index c5563ed..93c8722 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Configuring X..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
@@ -48,12 +48,12 @@ if [ -n "${XDEBCONF}" -a -x /root/usr/sbin/xdebconfigurator ]; then
     chroot /root /usr/sbin/xdebconfigurator
 fi
 
-chroot /root debconf-communicate -fnoninteractive casper > /dev/null <<EOF
+chroot /root debconf-communicate -fnoninteractive live-initramfs > /dev/null <<EOF
 set xserver-xorg/autodetect_keyboard true
 fset xserver-xorg/autodetect_keyboard seen true
 EOF
 
-DEBUG_XORG_PACKAGE=1 DEBUG_XORG_DEBCONF=1 LANG=$(grep "^${locale}" /root/usr/share/i18n/SUPPORTED | grep UTF-8 | sed -e 's, .*,,' -e q) casper-reconfigure /root xserver-xorg
+DEBUG_XORG_PACKAGE=1 DEBUG_XORG_DEBCONF=1 LANG=$(grep "^${locale}" /root/usr/share/i18n/SUPPORTED | grep UTF-8 | sed -e 's, .*,,' -e q) live-reconfigure /root xserver-xorg
 umount /root/sys
 umount /root/proc
 umount /root/dev
similarity index 88%
rename from scripts/casper-bottom/22gnome_panel_data
rename to scripts/live-bottom/22gnome_panel_data
index 4dd5d9d..1b4d41b 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Configuring gnome-panel-data..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
@@ -22,7 +22,7 @@ log_begin_msg "$DESCRIPTION"
 
 if [ -x /root/usr/sbin/laptop-detect ]; then
        if chroot /root laptop-detect; then
-           casper-reconfigure /root gnome-panel-data
+           live-reconfigure /root gnome-panel-data
        fi
 fi
 
similarity index 95%
rename from scripts/casper-bottom/22screensaver
rename to scripts/live-bottom/22screensaver
index 39c0f22..6193a41 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Configuring screensaver..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 92%
rename from scripts/casper-bottom/23etc_modules
rename to scripts/live-bottom/23etc_modules
index 754a832..6eec342 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Preconfiguring /etc/modules..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 98%
rename from scripts/casper-bottom/23networking
rename to scripts/live-bottom/23networking
index 1b732d3..988206e 100755 (executable)
@@ -4,7 +4,7 @@ PREREQ=""
 DESCRIPTION="Preconfiguring networking..."
 IFFILE="/root/etc/network/interfaces"
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 81%
rename from scripts/casper-bottom/24preseed
rename to scripts/live-bottom/24preseed
index cd52467..cd530ea 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Loading preseed file..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs ()
 {
@@ -32,11 +32,11 @@ for x in $(cat /proc/cmdline); do
                */*=*)
                        question="${x%%=*}"
                        value="${x#*=}"
-                       casper-preseed /root "$question" "$value"
+                       live-preseed /root "$question" "$value"
                        ;;
                locale=*)
                        value="${x#*=}"
-                       casper-preseed /root debian-installer/locale "$value"
+                       live-preseed /root debian-installer/locale "$value"
                        ;;
        esac
 done
similarity index 98%
rename from scripts/casper-bottom/25configure_init
rename to scripts/live-bottom/25configure_init
index f9a8626..1274990 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Setting up init..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 99%
rename from scripts/casper-bottom/30accessibility
rename to scripts/live-bottom/30accessibility
index 01c2386..127c48f 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Configuring accessibility options..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 96%
rename from scripts/casper-bottom/31disable_update_notifier
rename to scripts/live-bottom/31disable_update_notifier
index 2461c25..6c8b96f 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Disabling update-notifier..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 92%
rename from scripts/casper-bottom/32disable_hibernation
rename to scripts/live-bottom/32disable_hibernation
index ae4badd..813abed 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Configuring power management..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
@@ -23,7 +23,7 @@ log_begin_msg "$DESCRIPTION"
 
 gpm_version=$(chroot /root /usr/bin/dpkg-query -W --showformat='${Version}' gnome-power-manager 2>/dev/null) || panel_version=""
 if [ -n "$gpm_version" ]; then
-#    casper-reconfigure /root gnome-power-manager
+#    live-reconfigure /root gnome-power-manager
     chroot /root sudo -u "$USERNAME" gconftool-2 -s -t bool /apps/gnome-power-manager/can_hibernate false
     chroot /root sudo -u "$USERNAME" gconftool-2 -s -t bool /apps/gnome-power-manager/can_suspend false
 fi
similarity index 95%
rename from scripts/casper-bottom/33enable_apport_crashes
rename to scripts/live-bottom/33enable_apport_crashes
index d1c8829..1fb1145 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Enabling notifications about program crashes..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 87%
rename from scripts/casper-bottom/34disable_kwallet
rename to scripts/live-bottom/34disable_kwallet
index add7cca..9fd0c26 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Disabling kwallet..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
@@ -22,4 +22,4 @@ log_begin_msg "$DESCRIPTION"
 
 rm -f /root/usr/share/services/kded/kwalletd.desktop
 
-log_end_msg
\ No newline at end of file
+log_end_msg
similarity index 95%
rename from scripts/casper-bottom/35fix_language_selector
rename to scripts/live-bottom/35fix_language_selector
index 3a22602..1fb78e5 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Fixing language selector..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 95%
rename from scripts/casper-bottom/40install_driver_updates
rename to scripts/live-bottom/40install_driver_updates
index 272a0ed..5822f8f 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Installing driver updates..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 91%
rename from scripts/casper-bottom/41apt_cdrom
rename to scripts/live-bottom/41apt_cdrom
index b4ab643..97b2cdc 100755 (executable)
@@ -3,7 +3,7 @@
 PREREQ=""
 DESCRIPTION="Adding APT-CDROM source..."
 
-. /scripts/casper-functions
+. /scripts/live-functions
 
 prereqs()
 {
similarity index 100%
rename from scripts/casper-helpers
rename to scripts/live-helpers
similarity index 98%
rename from scripts/casper-premount/10driver_updates
rename to scripts/live-premount/10driver_updates
index 8009849..55aece5 100755 (executable)
@@ -1,8 +1,8 @@
 #!/bin/sh
 
 PREREQ=""
-. /scripts/casper-functions
-. /scripts/casper-helpers
+. /scripts/live-functions
+. /scripts/live-helpers
 
 prereqs()
 {