pax_global_header00006660000000000000000000000064113034322670014513gustar00rootroot0000000000000052 comment=fc6cae7e91f946c2059cdc3ef305229cfee7feb5 cinit-0.3pre19/000077500000000000000000000000001130343226700133445ustar00rootroot00000000000000cinit-0.3pre19/ 000066400000000000000000000002621130343226700134060ustar00rootroot00000000000000This is a non-existing file, how did you find it? ;-) It seems like you know a bit about your system, perhaps you want to join cinit development in #cLinux on irc.freenode.org? cinit-0.3pre19/.ditz-config000066400000000000000000000001621130343226700155610ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/config name: Nico Schottelius email: nico@ikn.schottelius.org issue_dir: bugs cinit-0.3pre19/.ditz-plugins000066400000000000000000000000061130343226700157720ustar00rootroot00000000000000- git cinit-0.3pre19/.gitignore000066400000000000000000000005201130343226700153310ustar00rootroot00000000000000*.o *.a MT ddoc contrib+tools/cinit.graph.text config.h sbin tmp os/current tmpbin src/os/current src/ipc/current src/cinit *.html *.htm *.man *.texi *.texi *.docbook src/halt.kill src/poweroff.kill src/reboot.kill doc/man/*.[0-9] doc/man/*.xml src/cmd .*.swp .exclude src/.configured src/cinit.halt src/cinit.poweroff src/cinit.reboot cinit-0.3pre19/Makefile000066400000000000000000000073571130343226700150200ustar00rootroot00000000000000# # 2005-2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Don't edit Makefiles, use conf/* for configuration. # # Directories and files CDIRS=bin src doc # # Targets # # # Warn per default, make sure the user knows what she does # warn: @cat doc/.buildwarn all: sources documentation dev-all: all install clean dist distclean: @for subdir in ${CDIRS}; do \ echo "Making $@ in $$subdir"; \ (cd $$subdir && ${MAKE} ${MAKEFLAGS} $@) || break; \ done; # Fix installation of conf/, check that bin/ is working and then # release install: .PHONY: sources sources: ${MAKE} -C src all .PHONY: documentation documentation: ${MAKE} -C doc documentation install-miniconf: ./bin/cinit.install.miniconf install-dir: ./bin/cinit.install.dir ################################################################################ # Tests # tests: # does not work, due getting killed, due to design :-) #./scripts/internal/compile_run_as_compiler.sh ./scripts/internal/test_on_hosts.sh ./scripts/internal/compile_test.sh ### User Mode Linux / DIRECTORY UML_DIR_OS_DEBIAN=lenny UML_ROOT_DIR=~/cinit/vm/uml/$(UML_DIR_OS_DEBIAN) UML_ROOT_DIR_ABS=$(shell cd $(UML_ROOT_DIR) && pwd -P) CONFDIR=etc/cinit/ uml-install-debian: mkdir -p $(UML_ROOT_DIR) sudo /usr/sbin/debootstrap $(UML_DIR_OS_DEBIAN) $(UML_ROOT_DIR) me=$$(whoami); sudo chown -R $$me $(UML_ROOT_DIR) # only install binaries, no need to test documentation uml-install-config: rsync -av --delete ./$(CONFDIR) $(UML_ROOT_DIR)/$(CONFDIR) uml-install-cinit: dir=$$(cd $(UML_ROOT_DIR); pwd -P); make -C src DESTDIR=$$dir install uml-dir-start-cinit: uml-install-config dir=$$(cd $(UML_ROOT_DIR); pwd -P); linux root=/dev/root rootflags=$$dir rootfstype=hostfs init=/sbin/cinit uml-dir-start-plain: ./scripts/vm/uml-dir-start-plain.sh $(UML_ROOT_DIR_ABS) ### User Mode Linux / IMAGE UML_IMG_FILE=~/cinit/vm/uml/Debian-3.0r0.ext2 uml-img-start-cinit: ./scripts/vm/uml-img-start-cinit.sh $(UML_IMG_FILE) uml-img-start-plain: ./scripts/vm/uml-img-start-plain.sh $(UML_IMG_FILE) # debian-etch de-install: rsync -av --delete ./ root@de:cinit rsync -av --delete ./etc/cinit/ root@de:/etc/cinit ssh root@de '(cd cinit; make clean install)' de-run: ssh root@de reboot UBUNTUHOST=cinit@192.168.122.107 UBUNTUCONF=./etc/cinit-ubuntu UBUNTUINSTALL="cd cinit && make clean && sudo make install" UBUNTUTEST="sudo reboot" ubuntu-sync: rsync -av --delete ./ $(UBUNTUHOST):cinit ubuntu-install: ubuntu-sync ssh "$(UBUNTUHOST)" $(UBUNTUINSTALL) ubuntu-test: ubuntu-install ssh "$(UBUNTUHOST)" $(UBUNTUTEST) ################################################################################ # # Developer targets # release: ./scripts/internal/cinit.release ./scripts/internal/cinit.release now scripts/internal/cinit.release: ./scripts/internal/test-cmd.sh ./scripts/internal/test-cmd.sh WEBFILE=~/privat/computer/net/netzseiten/www.nico.schottelius.org/src/software/cinit.mdwn .PHONY: web web: README cp $< $(WEBFILE) cinitconfconfdir=../cinit-conf/conf sync-conf: rsync --delete -av ./conf/ $(cinitconfconfdir) cd $(cinitconfconfdir); git add .; git commit -m "sync with cinit/conf" cinit-0.3pre19/README000066400000000000000000000230611130343226700142260ustar00rootroot00000000000000cinit is a fast, small and simple init with support for profiles ## Introduction cinit is a fast init system with dependency features and profile support. It was orientated on the design of Richard Goochs [need concept](http://www.atnf.csiro.au/people/rgooch/linux/boot-scripts/) and Felix von Leitners [minit](http://www.fefe.de/minit/). Minit does not support real dependencies (you don't know whether the service you depend on really started) and the need concept is somehow slow (as seen in gentoo). In addition, minit needs libowfat and dietlibc, which may not be found on every Unix system. ### Cinit main features * portability: it should run on every Unix * true dependencies (soft and hard!) * parallel execution * highly customisable (see conf/*) * profile support (specify what services to start depending on the profile) ### Why should I use cinit? * To significant speedup the startup process * To use highest level of parallelisation at startup * To benefit from real dependencies (so called ***needs*** and ***wants***) * To easily create profiles that can be chosen at startup (even **before** init is started!) ### How does cinit work? Cinit creates a dependency tree at startup and executes the services. A service can have two type of dependencies: * ***wants*** describe soft dependencies (i.e. it's not fatal if the wanted service fails to start) * ***needs*** describe hard dependencies (if the needed service fails, the depending won't be started) Let's have a look at an example: A (wants) / \ |------> B \ C | / \ / \ ^ (needs) (needs) (wants) | D E F | | |------<------(needs)----| Or in words: * B and C do not have dependencies * They will be started at the beginning * A wants B and C * A waits until B and C are executed and started afterwards, independently of the success of B and C * A will also be started, if B and C fail to start. * D needs B * D will only be started, if B is successfully started * E needs B and C * E will only be started, if both B and C are successfully started * F wants C and needs B * F will only be started, if B is successfully started * F waits until C is started and is started afterwards ## Getting cinit ### Development versions You can get the latest (development) version via git: git clone git://git.schottelius.org/cLinux/cinit.git Additionally, the following other git ressources are available: * [Gitweb](http://git.schottelius.org/?p=cLinux/cinit.git;a=summary). * [Mirror at github](http://github.com/telmich/cinit) * [Mirror at gitorious](http://gitorious.org/cinit) ### Archives * [[cinit-0.3pre19.tar.bz2|archives/cinit-0.3pre19.tar.bz2]] ([browse source](browse_source/cinit-0.3pre19/)) [[changes|browse_source/cinit-0.3pre19/doc/changes/0.3pre19]] * [[cinit-0.3pre18.tar.bz2|archives/cinit-0.3pre18.tar.bz2]] ([browse source](browse_source/cinit-0.3pre18/)) [[changes|browse_source/cinit-0.3pre18/doc/changes/0.3pre18]] * [[cinit-0.3pre17.tar.bz2|archives/cinit-0.3pre17.tar.bz2]] ([browse source](browse_source/cinit-0.3pre17/)) [[changes|browse_source/cinit-0.3pre17/doc/changes/0.3pre17]] * [[cinit-0.3pre16.tar.bz2|archives/cinit-0.3pre16.tar.bz2]] ([browse source](browse_source/cinit-0.3pre16/)) [[changes|browse_source/cinit-0.3pre16/doc/changes/0.3pre16]] * [[cinit-0.3pre15.tar.bz2|archives/cinit-0.3pre15.tar.bz2]] ([browse source](browse_source/cinit-0.3pre15/)) [[changes|browse_source/cinit-0.3pre15/doc/changes/0.3pre15]] * [[cinit-0.3pre14.tar.bz2|archives/cinit-0.3pre14.tar.bz2]] ([browse source](browse_source/cinit-0.3pre14/)) [[changes|browse_source/cinit-0.3pre14/CHANGES]] * [[cinit-0.3pre13.tar.bz2|archives/cinit-0.3pre13.tar.bz2]] ([browse source](browse_source/cinit-0.3pre13/)) [[changes|browse_source/cinit-0.3pre13/CHANGES]] * [[cinit-0.3pre12.tar.bz2|archives/cinit-0.3pre12.tar.bz2]] ([browse source](browse_source/cinit-0.3pre12/)) [[changes|browse_source/cinit-0.3pre12/CHANGES]] * [[cinit-0.3pre11.tar.bz2|archives/cinit-0.3pre11.tar.bz2]] ([browse source](browse_source/cinit-0.3pre11/)) [[changes|browse_source/cinit-0.3pre11/CHANGES]] * [[cinit-0.3pre10.tar.bz2|archives/cinit-0.3pre10.tar.bz2]] ([browse source](browse_source/cinit-0.3pre10/)) [[changes|browse_source/cinit-0.3pre10/CHANGES]] * [[cinit-0.3pre9.tar.bz2|archives/cinit-0.3pre9.tar.bz2]] ([browse source](browse_source/cinit-0.3pre9/)) [[changes|browse_source/cinit-0.3pre9/CHANGES]] * [[cinit-0.3pre8.tar.bz2|archives/cinit-0.3pre8.tar.bz2]] ([browse source](browse_source/cinit-0.3pre8/)) [[changes|browse_source/cinit-0.3pre8/CHANGES]] * [[cinit-0.3pre7.tar.bz2|archives/cinit-0.3pre7.tar.bz2]] ([browse source](browse_source/cinit-0.3pre7/)) [[changes|browse_source/cinit-0.3pre7/CHANGES]] * [[cinit-0.3pre6.tar.bz2|archives/cinit-0.3pre6.tar.bz2]] ([browse source](browse_source/cinit-0.3pre6/)) [[changes|browse_source/cinit-0.3pre6/CHANGES]] * [[cinit-0.3pre5.tar.bz2|archives/cinit-0.3pre5.tar.bz2]] ([browse source](browse_source/cinit-0.3pre5/)) [[changes|browse_source/cinit-0.3pre5/CHANGES]] * [[cinit-0.3pre4.tar.bz2|archives/cinit-0.3pre4.tar.bz2]] ([browse source](browse_source/cinit-0.3pre4/)) [[changes|browse_source/cinit-0.3pre4/CHANGES]] * [[cinit-0.3pre3.tar.bz2|archives/cinit-0.3pre3.tar.bz2]] ([browse source](browse_source/cinit-0.3pre3/)) [[changes|browse_source/cinit-0.3pre3/CHANGES]] * [[cinit-0.3pre2.tar.bz2|archives/cinit-0.3pre2.tar.bz2]] ([browse source](browse_source/cinit-0.3pre2/)) [[changes|browse_source/cinit-0.3pre2/CHANGES]] * [[cinit-0.3pre1.tar.bz2|archives/cinit-0.3pre1.tar.bz2]] ([browse source](browse_source/cinit-0.3pre1/)) [[changes|browse_source/cinit-0.3pre1/CHANGES]] * [[cinit-0.2.1.tar.bz2|archives/cinit-0.2.1.tar.bz2]] ([browse source](browse_source/cinit-0.2.1/)) [[changes|browse_source/cinit-0.2.1/CHANGES]] * [[cinit-0.2.tar.bz2|archives/cinit-0.2.tar.bz2]] ([browse source](browse_source/cinit-0.2/)) [[changes|browse_source/cinit-0.2/CHANGES]] * [[cinit-0.1.tar.bz2|archives/cinit-0.1.tar.bz2]] ([browse source](browse_source/cinit-0.1/)) [[changes|browse_source/cinit-0.1/CHANGES]] * [[cinit-0.0.8.tar.bz2|archives/cinit-0.0.8.tar.bz2]] ([browse source](browse_source/cinit-0.0.8/)) [[changes|browse_source/cinit-0.0.8/CHANGES]] * [[cinit-0.0.7.tar.bz2|archives/cinit-0.0.7.tar.bz2]] ([browse source](browse_source/cinit-0.0.7/)) [[changes|browse_source/cinit-0.0.7/CHANGES]] * [[cinit-0.0.6.tar.bz2|archives/cinit-0.0.6.tar.bz2]] ([browse source](browse_source/cinit-0.0.6/)) [[changes|browse_source/cinit-0.0.6/CHANGES]] * [[cinit-0.0.5.tar.bz2|archives/cinit-0.0.5.tar.bz2]] ([browse source](browse_source/cinit-0.0.5/)) [[changes|browse_source/cinit-0.0.5/CHANGES]] * [[cinit-0.0.4.tar.bz2|archives/cinit-0.0.4.tar.bz2]] ([browse source](browse_source/cinit-0.0.4/)) [[changes|browse_source/cinit-0.0.4/CHANGES]] ## Documentation The documentation is currently spread all over the ***doc/*** directory within the tarball and is being cleaned up. Additionally there are two presentations available: * [[2005-10-22: (German) speech at Technophil|software/cinit/speeches/2005-10-22]] * [[2005-08-06: (German) online speech|software/cinit/speeches/2005-08-06]] ### Pre-Configuring If you want to fine tune cinit parameters, add different path names, change the DESTDIR, ... have a look at conf/*. ### Installing cinit You can install cinit parallel to any other init-system, it won't kill other init's config nor /sbin/init, if it exists: # make all install This will create /sbin/cinit. If /sbin/init does not exist, it will be linked to /sbin/cinit. ### Configuring cinit You'll have to configure cinit in /etc/cinit and add services, before you can use it. Please read doc/configuring.cinit for details. Please read doc/FAO if there are still questions open. There are some testing examples below doc/examples/, to be used as a starting point. There are currently no tools to merge your existing init-system to cinit (like sysvinit-merge, bsd-merge or minit-merge) available, but they are in the making (see various bugs in ditz). ### Configuring the OS / Kernel After configuring cinit you need to tell your kernel to boot cinit instead of your current init system. How to do that depends on your system: * Linux/LILO and Linux/yaboot (ppc): * append="init=/sbin/cinit" * grub1 and grub2: * kernel init=/sbin/cinit ## Support ### IRC You can join the development ***IRC channel*** [#cLinux on irc.freenode.org](irc://irc.freenode.org/#cLinux). ### Mailing list Bug reports, questions, patches, etc. should be send to the [cinit mailing list](http://l.schottelius.org/mailman/listinfo/cinit). ## Related websites * [cinit](http://www.nico.schottelius.org/software/cinit/) * [cinit mailing list](http://l.schottelius.org/mailman/listinfo/cinit) * BSD init systems (same codebase): * [FreeBSDs init](http://www.freebsd.org/cgi/cvsweb.cgi/src/sbin/init/) * [NetBSDs init](http://cvsweb.netbsd.org/bsdweb.cgi/src/sbin/init/) * [OpenBSDs init](http://www.openbsd.org/cgi-bin/cvsweb/src/sbin/init/) * [initng](http://www.initng.org/) * [minit](http://www.fefe.de/minit/) * [runit](http://smarden.org/runit/) * [need/simpleinit](http://www.atnf.csiro.au/~rgooch/linux/boot-scripts/) * [sys-v-init](ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/) * [upstart](http://www.netsplit.com/blog/work/canonical/upstart.html) [[!tag unix]] cinit-0.3pre19/bin/000077500000000000000000000000001130343226700141145ustar00rootroot00000000000000cinit-0.3pre19/bin/Makefile000066400000000000000000000017151130343226700155600ustar00rootroot00000000000000# # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Don't edit Makefiles, use conf/* for configuration. # # # Static vars # SBIN=$(shell ls cinit-cmd* cinit-helper*) BIN=$(shell ls cinit-conf*) # # Targets # all clean dist distclean: install: install ${SBIN} ${DESTDIR}/sbin install ${BIN} ${DESTDIR}/bin cinit-0.3pre19/bin/cinit-cmd.reboot000077500000000000000000000002721130343226700172030ustar00rootroot00000000000000#!/bin/sh # Nico Schottelius # reboot system # 2005-06-09 usage() { echo "`basename $0`" echo " Reboot the system:" exit 1 } if [ $# -ne 0 ]; then usage fi kill -HUP 1 cinit-0.3pre19/bin/cinit-cmd.shutdown000077500000000000000000000011301130343226700175560ustar00rootroot00000000000000#!/bin/sh # Nico Schottelius # shutdown system # TODO: use ccontrol! # 2005-05-24 (Last changed: 2005-06-18) usage() { echo "`basename $0` -[ohr]" echo " Shutdown the system:" echo " -p|--power-off: Power off" echo " -h|--halt: Halt" echo " -r|--reboot: Reboot" echo " -s|--rescue: Rescue mode" echo " " exit 1 } if [ $# -ne 1 ]; then usage fi case $1 in -r|--reboot) kill -HUP 1 ;; -p|--power-off) kill -TERM 1 ;; -h|--halt) kill -USR1 1 ;; -s|--rescue) kill -USR2 1 ;; *) usage ;; esac cinit-0.3pre19/bin/cinit-conf.config.shell000077500000000000000000000017261130343226700204530ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Create a minimal "usable" config # set -e . "$(dirname $0)/cinit-conf.read-conf" cinit-conf.svc.init cinit-conf.svc.categories cinit-conf.svc.mount.proc cinit-conf.svc.mount.root cinit-conf.svc.shell cinit-conf.svc-boot-enable "local-services/shell" cinit-0.3pre19/bin/cinit-conf.dump.as.c.header000077500000000000000000000033161130343226700211140ustar00rootroot00000000000000#!/bin/sh # # 2005-2009 Nico Schottelius (nico-cinit-conf at schottelius.org) # # This file is part of cinit-conf. # # cinit-conf is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit-conf is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit-conf. If not, see . # # # Dump configuration usable as a c-header file. # ################################################################################ # standard vars stolen from cconf set -e __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set +e CONFS="$(cinit-conf.get-confdir)" echo "/* Warning: Autogenerated by $0, do not edit. */" for conf in "${CONFS}/"*; do NAME="$(basename ${conf} | tr a-z A-Z)" value=$(head -n 1 ${conf}) # check if numeric: no quotes needed is_numeric=$(echo $value | awk '/^((0[xX])[0-9a-fA-F]+)|([0-9]+)$/ { print }') is_string="$(echo $value | grep '^"')" # # Check for quote type # if [ ! "$is_numeric" -a ! "$is_string" ]; then one_char=$(echo -n $value | wc -c) if [ "$one_char" -eq 1 ]; then value="'$value'" else # is a string value="\"$value\"" fi fi echo "#define" "$NAME" "$value" done cinit-0.3pre19/bin/cinit-conf.get-confdir000077500000000000000000000031211130343226700202700ustar00rootroot00000000000000#!/bin/sh # # 2005-2009 Nico Schottelius (nico-cinit-conf at schottelius.org) # # This file is part of cinit-conf. # # cinit-conf is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit-conf is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit-conf. If not, see . # # cinit: read configuration into variables # Date: 2005-05-24 (Last Changed: 2005-08-08) # set -x ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" # try environment first if [ "$CINIT_CONF_CONF_DIR" ]; then CONFDIR="$CINIT_CONF_CONF_DIR" elif [ -d "${__abs_mydir}/../conf/" ]; then CONFDIR="${__abs_mydir}/../conf/" elif [ -d "${HOME}/.cinit-conf/" ]; then CONFDIR="${HOME}/.cinit-conf/" elif [ -d "/etc/cinit/build-conf/" ]; then CONFDIR="/etc/cinit/build-conf/" else echo 'Did not find cinit-conf configuration!' >&2 echo "Please set the variable CINIT_CONF_CONF_DIR" >&2 exit 1 fi CONFDIR=$(cd "${CONFDIR}" && pwd -P) echo $CONFDIR cinit-0.3pre19/bin/cinit-conf.migrate.archlinux000077500000000000000000000344661130343226700215330ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Try to migrate archlinux to cinit # set -e ################################################################################ # # Base layout, same for every OS # cinit-conf.svc.init cinit-conf.svc.categories # Arch Linux has a minimal /etc/inittab, nice to migrate! # Arch only starts /etc/rc.sysinit. Even nicer to migrate! # These are covered already by our existing scripts #/bin/mount -n -t tmpfs none /dev -o mode=0755 #/bin/mount -n -t proc none /proc #/bin/mount -n -t sysfs none /sys # Copy static device nodes to /dev # /bin/cp -a /lib/udev/devices/* /dev/ cinit-conf.svc.udev.copy-static # start up our mini logger until syslog takes over /sbin/minilogd # anything more serious than KERN_WARNING goes to the console # 'verbose' cmdline parameter enables more messages if /bin/grep -q " verbose" /proc/cmdline; then /bin/dmesg -n 8 else /bin/dmesg -n 3 fi # enable rtc access /sbin/modprobe rtc-cmos >/dev/null 2>&1 RTC_MAJOR=$(/bin/grep -w rtc /proc/devices 2>/dev/null) RTC_MAJOR="${RTC_MAJOR%% *}" if [ -n "$RTC_MAJOR" ]; then /bin/mknod /dev/rtc0 c $RTC_MAJOR 0 /bin/ln -s /dev/rtc0 /dev/rtc fi HWCLOCK_PARAMS="--hctosys" if [ "$HARDWARECLOCK" = "UTC" ]; then HWCLOCK_PARAMS="$HWCLOCK_PARAMS --utc" elif [ "$HARDWARECLOCK" = "localtime" ]; then HWCLOCK_PARAMS="$HWCLOCK_PARAMS --localtime" else HWCLOCK_PARAMS="" fi # Set clock early to fix some bugs with filesystem checks # Clock is set again later to match rc.conf if [ -n "$HWCLOCK_PARAMS" -a -f /etc/localtime ]; then /sbin/hwclock $HWCLOCK_PARAMS --noadjfile fi echo > /proc/sys/kernel/hotplug if [ -x /sbin/udevadm ]; then stat_busy "Starting UDev Daemon" /sbin/udevd --daemon stat_done else # Static /dev, our last resort status "Using static /dev filesystem" true fi # Trigger udev uevents if /bin/pidof -o %PPID /sbin/udevd >/dev/null; then stat_busy "Triggering UDev uevents" /sbin/udevadm trigger stat_done fi # Load modules from the MODULES array defined in rc.conf if ! [ "$load_modules" = "off" ]; then if [ -f /proc/modules ]; then stat_busy "Loading Modules" for mod in "${MODULES[@]}"; do if [ "$mod" = "${mod#!}" ]; then /sbin/modprobe $mod fi done stat_done fi if [ -d /proc/acpi ]; then stat_busy "Loading standard ACPI modules" ACPI_MODULES="ac battery button fan processor thermal" k="$(echo $BLACKLIST ${MOD_BLACKLIST[@]} | /bin/sed 's|-|_|g')" j="$(echo ${MODULES[@]} | /bin/sed 's|-|_|g')" #add disabled MODULES (!) to blacklist - much requested feature for m in ${j}; do [ "$m" != "${m#!}" ] && k="${k} ${m#!}" done # add disablemodules= from commandline to blacklist k="${k} $(echo ${disablemodules} | /bin/sed 's|-|_|g' | /bin/sed 's|,| |g')" for n in ${ACPI_MODULES}; do if ! echo ${k} | /bin/grep "\<$n\>" 2>&1 >/dev/null; then /sbin/modprobe $n > /dev/null 2>&1 fi done stat_done fi fi # Wait for udev uevents if /bin/pidof -o %PPID /sbin/udevd >/dev/null; then stat_busy "Waiting for UDev uevents to be processed" udevstart="$(/bin/date +%s%0N)" /sbin/udevadm settle stat_done udevend="$(/bin/date +%s%0N)" printhl " UDev uevent processing time: $((($udevend-$udevstart)/1000000))ms" fi # bring up the loopback interface if [ -d /sys/class/net/lo ]; then stat_busy "Bringing up loopback interface" /sbin/ifconfig lo 127.0.0.1 up if [ $? -ne 0 ]; then stat_fail else stat_done fi fi # If necessary, find md devices and manually assemble RAID arrays if [ -f /etc/mdadm.conf -a "$(/bin/grep ^ARRAY /etc/mdadm.conf 2>/dev/null)" ]; then # udev won't create these md nodes, so we do it ourselves for dev in $(/bin/grep ^ARRAY /etc/mdadm.conf | /bin/awk '{print $2}'); do path=$(echo $dev | /bin/sed 's|/[^/]*$||') node=$(echo $dev | /bin/sed "s|^$path/||") minor=$(echo $node | /bin/sed 's|^[^0-9]*||') [ ! -e $path/$node ] && /bin/mknod $path/$node b 9 $minor done status "Activating RAID arrays" /sbin/mdadm --assemble --scan fi if [ "$USELVM" = "yes" -o "$USELVM" = "YES" ]; then if [ -x /sbin/lvm -a -d /sys/block ]; then # Kernel 2.6.x, LVM2 groups /sbin/modprobe -q dm-mod 2>/dev/null stat_busy "Activating LVM2 groups" /sbin/lvm vgscan --ignorelockingfailure --mknodes >/dev/null /sbin/lvm vgchange --ignorelockingfailure -a y >/dev/null if [ $? -ne 0 ]; then stat_fail else stat_done fi fi fi # Set up non-root encrypted partition mappings if [ -f /etc/crypttab -a -n "$(/bin/grep -v ^# /etc/crypttab | /bin/grep -v ^$)" ]; then /sbin/modprobe -q dm-mod 2>/dev/null stat_busy "Unlocking encrypted volumes:" csfailed=0 CS=/sbin/cryptsetup.static do_crypt() { if [ $# -ge 3 ]; then cname="$1" csrc="$2" cpass="$3" shift 3 copts="$*" stat_append "${cname}.." # For some fun reason, the parameter ordering varies for # LUKS and non-LUKS devices. Joy. if [ "${cpass}" = "SWAP" ]; then # This is DANGEROUS! The only possible safety check # is to not proceed in case we find a LUKS device # This may cause dataloss if it is not used carefully if $CS isLuks $csrc 2>/dev/null; then false else $CS -d /dev/urandom $copts create $cname $csrc >/dev/null if [ $? -eq 0 ]; then stat_append "creating swapspace.." /sbin/mkswap -f -L $cname /dev/mapper/$cname >/dev/null fi fi elif [ "${cpass}" = "ASK" ]; then printf "\nOpening '${cname}' volume:\n" if $CS isLuks $csrc 2>/dev/null; then $CS $copts luksOpen $csrc $cname < /dev/console else $CS $copts create $cname $csrc < /dev/console fi elif [ "${cpass:0:1}" != "/" ]; then if $CS isLuks $csrc 2>/dev/null; then echo "$cpass" | $CS $copts luksOpen $csrc $cname >/dev/null else echo "$cpass" | $CS $copts create $cname $csrc >/dev/null fi else if $CS isLuks $csrc 2>/dev/null; then $CS -d $cpass $copts luksOpen $csrc $cname >/dev/null else $CS -d $cpass $copts create $cname $csrc >/dev/null fi fi if [ $? -ne 0 ]; then csfailed=1 stat_append "failed " else stat_append "ok " fi fi } while read line; do eval do_crypt "$line" done /dev/null /sbin/lvm vgchange --ignorelockingfailure -a y >/dev/null fi fi fi status "Mounting Root Read-only" /bin/mount -n -o remount,ro / FORCEFSCK= [ -f /forcefsck ] && FORCEFSCK="-- -f" NETFS="nonfs,nonfs4,nosmbfs,nocifs,nocodafs,noncpfs,nosysfs,noshfs,nofuse,nofuseblk,noglusterfs" fsck_reboot() { echo "Automatic reboot in progress..." /bin/umount -a /bin/mount -n -o remount,ro / /sbin/reboot -f exit 0 } if [ -x /sbin/fsck ]; then stat_busy "Checking Filesystems" FSCK_OUT=/dev/stdout FSCK_ERR=/dev/null /sbin/fsck -A -T -C -a -t $NETFS $FORCEFSCK >$FSCK_OUT 2>$FSCK_ERR fsckret=$? if [ ${fsckret} -gt 1 ]; then stat_fail fi if [ $((${fsckret}&2)) -eq 2 ]; then echo echo "********************** REBOOT REQUIRED *********************" echo "* *" echo "* The system will be rebooted automatically in 15 seconds. *" echo "* *" echo "************************************************************" echo /bin/sleep 15 fsck_reboot fi if [ ${fsckret} -gt 1 -a ${fsckret} -ne 32 ]; then echo echo "***************** FILESYSTEM CHECK FAILED ****************" echo "* *" echo "* Please repair manually and reboot. Note that the root *" echo "* file system is currently mounted read-only. To remount *" echo "* it read-write type: mount -n -o remount,rw / *" echo "* When you exit the maintenance shell the system will *" echo "* reboot automatically. *" echo "* *" echo "************************************************************" echo /sbin/sulogin -p fsck_reboot fi stat_done fi stat_busy "Mounting Local Filesystems" /bin/mount -n -o remount,rw / /bin/rm -f /etc/mtab* # make sure / gets written to /etc/mtab /bin/mount -o remount,rw / # Write /proc, /sys and /dev to /etc/mtab if [ -e /proc/mounts ]; then /bin/grep -e "/proc " -e "/sys " -e "/dev " /proc/mounts >> /etc/mtab fi # now mount all the local filesystems /bin/mount -a -t $NETFS -O no_netdev stat_done status "Activating Swap" /sbin/swapon -a stat_busy "Configuring System Clock" if [ ! -f /var/lib/hwclock/adjtime ]; then echo "0.0 0 0.0" > /var/lib/hwclock/adjtime fi if [ "$TIMEZONE" != "" -a -e "/usr/share/zoneinfo/$TIMEZONE" ]; then /bin/rm -f /etc/localtime /bin/cp "/usr/share/zoneinfo/$TIMEZONE" /etc/localtime fi if [ -n "$HWCLOCK_PARAMS" ]; then /sbin/hwclock --adjust #Adjust for system drift /sbin/hwclock $HWCLOCK_PARAMS fi stat_done RANDOM_SEED=/var/lib/misc/random-seed if [ -f $RANDOM_SEED ]; then stat_busy "Initializing Random Seed" /bin/cat $RANDOM_SEED > /dev/urandom stat_done fi stat_busy "Removing Leftover Files" /bin/rm -f /etc/nologin &>/dev/null /bin/rm -f /etc/shutdownpid &>/dev/null /bin/rm -f /var/lock/* &>/dev/null /bin/rm -rf /tmp/* /tmp/.* &>/dev/null /bin/rm -f /forcefsck &>/dev/null (cd /var/run && /usr/bin/find . ! -type d -exec /bin/rm -f -- {} \; ) : > /var/run/utmp /bin/chmod 0664 /var/run/utmp # Keep {x,k,g}dm happy with xorg /bin/mkdir /tmp/.ICE-unix && /bin/chmod 1777 /tmp/.ICE-unix /bin/mkdir /tmp/.X11-unix && /bin/chmod 1777 /tmp/.X11-unix stat_done #status "Updating Shared Library Links" /sbin/ldconfig if [ "$HOSTNAME" != "" ]; then status "Setting Hostname: $HOSTNAME" /bin/hostname $HOSTNAME fi # Set the NIS domain name, if necessary [ -f /etc/conf.d/nisdomainname ] && . /etc/conf.d/nisdomainname if [ "$NISDOMAINNAME" != "" ]; then status "Setting NIS Domain Name: $NISDOMAINNAME" /bin/nisdomainname $NISDOMAINNAME fi status "Updating Module Dependencies" /sbin/depmod -A # Flush old locale settings : >/etc/profile.d/locale.sh /bin/chmod 755 /etc/profile.d/locale.sh # Set user defined locale [ -z "$LOCALE" ] && LOCALE="en_US" stat_busy "Setting Locale: $LOCALE" echo "export LANG=$LOCALE" >>/etc/profile.d/locale.sh stat_done # Adding persistent network/cdrom generated rules if [ -f "/dev/.udev/tmp-rules--70-persistent-cd.rules" ]; then stat_busy "Adding persistent cdrom udev rules" /bin/cat /dev/.udev/tmp-rules--70-persistent-cd.rules >> /etc/udev/rules.d/70-persistent-cd.rules stat_done fi if [ -f "/dev/.udev/tmp-rules--70-persistent-net.rules" ]; then stat_busy "Adding persistent network udev rules" /bin/cat /dev/.udev/tmp-rules--70-persistent-net.rules >> /etc/udev/rules.d/70-persistent-net.rules stat_done fi /bin/dmesg >| /var/log/dmesg.log # End of file # vim: set ts=2 noet: # The part before here is migrated, the rest came from the template exit 0 # /etc/event.d/rc-default guesses 2, so we also assume it's 2. default_runlevel=2 ################################################################################ # Sys-v-init on Linux and variants (=upstart) execute rcS before rc2. # # Upstart on jaunty is starts /etc/event.d/rc-default, which # starts /etc/event.d/rcS which starts /etc/init.d/rcS which # starts /etc/init.d/rc S which starts the shell scripts in # /etc/rcS.d/ (does not sound very efficient to me). # cinit@cinit-desktop:/etc/event.d$ ls -1 /etc/rcS.d/ | sed 's/^/# /' # README: not migrated: # S01mountkernfs.sh: sysfs, proc; ignored spufs, /var/run, /lib/init: migrated cinit-conf.svc.mount.proc cinit-conf.svc.mount.sys # S01readahead: ignored # S02hostname.sh: migrated cinit-conf.svc.hostname.linux $(hostname) # S06keyboard-setup: migrated cinit-conf.svc.keymap.linux # S07linux-restricted-modules-common: ignored # S10udev: migrated cinit-conf.svc.mount.udev cinit-conf.svc.local-tuning.udev.ubuntu # S11mountdevsubfs.sh: migrated! cinit-conf.svc.mount.dev-shm cinit-conf.svc.mount.dev-pts # S13pcmciautils: ignored # S15module-init-tools: not migrated: I think modules should be put into services # S17procps: migrated cinit-conf.svc.sysctl.linux # S20checkroot.sh: migrated for / cinit-conf.svc.mount.root # S22mtab.sh: manually create mtab; migrated (though a little bit hacky) cinit-conf.svc.mtab-clean.linux # S25brltty: ignored: don't have a braille terminal here to test it # S30checkfs.sh: ignored, not yet supported, have to find other mountpoints first # S35mountall.sh: ignored: same as S30checkfs.sh # S36mountall-bootclean.sh: migrated # /var/run is not a tempdir, do not clean it cinit-conf.svc.tmp.clean "/tmp" "/var/tmp" "/var/lock" cinit-conf.svc.tmp.create "/tmp" "/var/tmp" "/var/lock" # S37apparmor: ignored # S37mountoverflowtmp: ignored, that's a boottime bugfix # S37udev-finish: no need to migrate, if having correct dependencies. # S39readahead-desktop: ignored, as it seems not to work here # S39ufw: disabled here by default -> skip # S40networking cinit-conf.svc.network.debian # S45mountnfs.sh: migrated, only much smaller cinit-conf.svc.mount.nfs # S46mountnfs-bootclean.sh: already done (cinit-conf.svc.tmp.*) # S49console-setup: migrated cinit-conf.svc.setup.console.linux # S55bootmisc.sh # S55urandom # S70screen-cleanup # S70x11-common cat << eof Ubuntu upstart migration completed. WARNING: This is a "lazy" migration: Ubuntu init scripts are migrated similar, but not identical. Some services have been skipped, because they are not necessary with cinit or in general. Check /etc/cinit before rebooting with cinit! KNOWN BUGS: S20checkroot.sh: Only / is being fscked, other partitions are ignored. HINT: Make sure init=/sbin/cinit is set in your bootloader. eof cinit-0.3pre19/bin/cinit-conf.migrate.upstart.ubuntu.jaunty000077500000000000000000000113431130343226700240570ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Try to migrate upstarts config from ubuntu jaunty to cinit config # set -e # /etc/event.d/rc-default guesses 2, so we also assume it's 2. default_runlevel=2 ################################################################################ # # Base layout, same for every OS # cinit-conf.svc.init cinit-conf.svc.categories cinit-conf.svc.init.dependencies ################################################################################ # Sys-v-init on Linux and variants (=upstart) execute rcS before rc2. # # Upstart on jaunty is starts /etc/event.d/rc-default, which # starts /etc/event.d/rcS which starts /etc/init.d/rcS which # starts /etc/init.d/rc S which starts the shell scripts in # /etc/rcS.d/ (does not sound very efficient to me). # cinit@cinit-desktop:/etc/event.d$ ls -1 /etc/rcS.d/ | sed 's/^/# /' # README: not migrated: # S01mountkernfs.sh: sysfs, proc; ignored spufs, /var/run, /lib/init: migrated cinit-conf.svc.mount.proc cinit-conf.svc.mount.sys # S01readahead: ignored # S02hostname.sh: migrated cinit-conf.svc.hostname.linux $(hostname) # S06keyboard-setup: migrated cinit-conf.svc.keymap.linux # S07linux-restricted-modules-common: ignored # S10udev: migrated cinit-conf.svc.mount.udev cinit-conf.svc.local-tuning.udev.ubuntu # S11mountdevsubfs.sh: migrated! cinit-conf.svc.mount.dev-shm cinit-conf.svc.mount.dev-pts # S13pcmciautils: ignored # S15module-init-tools: not migrated: I think modules should be put into services # S17procps: migrated cinit-conf.svc.sysctl.linux # S20checkroot.sh: migrated for / cinit-conf.svc.mount.root # S22mtab.sh: manually create mtab; migrated (though a little bit hacky) cinit-conf.svc.mtab-clean.linux # S25brltty: ignored: don't have a braille terminal here to test it # S30checkfs.sh: ignored, not yet supported, have to find other mountpoints first # S35mountall.sh: ignored: same as S30checkfs.sh # S36mountall-bootclean.sh: migrated # /var/run is not a tempdir, do not clean it cinit-conf.svc.tmp.clean "/tmp" "/var/tmp" "/var/lock" cinit-conf.svc.tmp.create "/tmp" "/var/tmp" "/var/lock" # S37apparmor: ignored # S37mountoverflowtmp: ignored, that's a boottime bugfix # S37udev-finish: no need to migrate, if having correct dependencies. # S39readahead-desktop: ignored, as it seems not to work here # S39ufw: disabled here by default -> skip # S40networking cinit-conf.svc.network.debian # S45mountnfs.sh: migrated, only much smaller cinit-conf.svc.mount.nfs # S46mountnfs-bootclean.sh: already done (cinit-conf.svc.tmp.*) # S49console-setup: migrated cinit-conf.svc.setup.console.linux # S55bootmisc.sh: skipped # S55urandom: skipped, should be done later! # S70screen-cleanup: skipped, unclean, should be done later! # S70x11-common: also skipped, want to finish this script. ################################################################################ # # /etc/rc2.d/ migration # # cinit@cinit-desktop:/etc/rc2.d$ ls -1 # README # S01policykit: ignored # S10acpid: migrated (without module loading) cinit-conf.svc.acpid # Skipping the following ones currently # S10sysklogd # S11klogd # S12dbus # S16ssh cinit-conf.svc.sshd # S20apport # S20hotkey-setup # S24hal # S25bluetooth # S30gdm # S50NetworkManager # S50avahi-daemon # S50cups # S50pulseaudio # S50rsync # S50saned # S50system-tools-backends # S70bootlogs.sh # S70dns-clean # S70pppd-dns # S89anacron # S89atd # S89cron # S90binfmt-support # S98usplash # S99acpi-support # S99laptop-mode # S99ondemand # S99rc.local # S99rmnologin # S99stop-readahead ################################################################################ # # Enable local login with six getties # cinit-conf.svc.agetty 6 cat << eof Ubuntu upstart migration completed. WARNING: This is a "lazy" migration: Ubuntu init scripts are migrated similar, but not identical. Some services have been skipped, because they are not necessary with cinit or in general. Check /etc/cinit before rebooting with cinit! KNOWN BUGS: S20checkroot.sh: Only / is being fscked, other partitions are ignored. HINT: Make sure init=/sbin/cinit is set in your bootloader. eof cinit-0.3pre19/bin/cinit-conf.read-conf000077500000000000000000000040401130343226700177260ustar00rootroot00000000000000#!/bin/sh # # 2008 Nico Schottelius (nico-cinit-conf at schottelius.org) # # This file is part of cinit-conf. # # cinit-conf is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit-conf is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit-conf. If not, see . # hier="${0%/*}" : ${CONFDIR:="$(cinit-conf.get-confdir)"} # read general values and overwrite specific ones later for conf in ${CONFDIR}/*; do NAME="$(basename $conf | tr a-z A-Z)" # short version eval : \${$NAME:=$(head -n1 "${conf}")} # long version #if eval test -z \$$NAME; then # eval $NAME=\"$(head -n 1 $conf)\" # eval export $NAME #fi # eval echo $NAME = \$$NAME done # comment out: generated automatically now #: ${DESTDIR="$(head -n1 "${CONFDIR}/destdir")"} #: ${SERVICE_CATEGORIES="$(head -n1 "${CONFDIR}/service_categories")"} #: ${GETTYDIR="${SVCDIR}/$(head -n1 "${CONFDIR}/gettydir")"} #: ${INSTALL_PROG="$(head -n1 "${CONFDIR}/install_prog")"} #: ${INSTALL_DIRECTORY="$(head -n1 "${CONFDIR}/install_directory")"} #: ${C_ON="$(head -n1 "${CONFDIR}/c_on")"} #: ${C_PARAMS="$(head -n1 "${CONFDIR}/c_params")"} #: ${C_RESPAWN="$(head -n1 "${CONFDIR}/c_respawn")"} # overwrite or set: add destdir and put things together # R_* = real = should be used in scripts : ${R_CINIT_DIR:="${DESTDIR}/${CINIT_DIR}"} : ${R_CINITCONF_DIR:="${R_CINIT_DIR}/${CINITCONFDIR}"} : ${R_SVC_DIR:="${R_CINIT_DIR}/${SVCDIR}"} # T_*: theorethic (not real, usable for linking) : ${T_CINIT_DIR:="${CINIT_DIR}"} : ${T_CINITCONF_DIR:="${T_CINIT_DIR}/${CINITCONFDIR}"} : ${T_SVC_DIR:="${T_CINIT_DIR}/${SVCDIR}"} cinit-0.3pre19/bin/cinit-conf.svc-boot-enable000077500000000000000000000024571130343226700210620ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit-conf. If not, see . # # Enable a service at boottime: add it to init wants list # set -e ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" . "${__abs_mydir}/cinit-conf.read-conf" if [ $# -lt 1 ]; then echo "${__myname}: services... " echo "" echo " I add the services to init, so they will be started at boot." echo "" exit 1 fi SVC="init" cinit-conf.svc.dependency.add "${SVC}" "wants" "$@" exit 0 cinit-0.3pre19/bin/cinit-conf.svc-create.template000077500000000000000000000032771130343226700217510ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Create an almost empty service # set -e # init variables . "$(dirname $0)/cinit-conf.read-conf" if [ $# -lt 1 ]; then echo "`basename $0`: service-name(s)" echo " I create templates for your services" exit 1 fi for svc in $@; do INSTDIR="${R_SVC_DIR}/${svc}" if [ -e "$INSTDIR" ]; then echo "$svc already exists, skipping." continue fi echo -n "Creating template $svc ..." "$INSTALL_PROG" "$INSTALL_DIRECTORY" "${INSTDIR}" # needs "$INSTALL_PROG" "$INSTALL_DIRECTORY" "${INSTDIR}/${C_NEEDS}" # wants "$INSTALL_PROG" "$INSTALL_DIRECTORY" "${INSTDIR}/${C_WANTS}" # README cat << eof > "${INSTDIR}/README" This service was created by $0. Please update this README to match the real content. Add entries to ${C_NEEDS} for the services this services really needs (it will not start if one failed to start). Add services to ${C_WANTS} for the services this services wants (it will start if one or more fail)." eof echo "done." done cinit-0.3pre19/bin/cinit-conf.svc-delete000077500000000000000000000022131130343226700201230ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Delete services # set -e # init variables . "$(dirname $0)/cinit-conf.read-conf" if [ $# -lt 1 ]; then echo "`basename $0`: service-name(s)" echo " I delete your services" exit 1 fi for svc in "$@"; do SERVICE="${R_SVC_DIR}/${svc}" if [ ! -e "$SERVICE" ]; then echo "${svc}: does not exists, cannot remove.." continue fi echo -n "Removing $svc ..." rm -rf "${SERVICE}" echo "done." done cinit-0.3pre19/bin/cinit-conf.svc-off000077500000000000000000000024121130343226700174340ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Select program to start on service stop # ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e . "${__abs_mydir}/cinit-conf.read-conf" if [ $# -ne 2 ]; then echo "${__myname}: service path-to-executable" exit 1 fi svc="$1"; shift executable="$1"; shift echo "${svc}:${C_OFF}->${executable}" ln -sf "${executable}" "${R_SVC_DIR}/${svc}/${C_OFF}" cinit-0.3pre19/bin/cinit-conf.svc-on000077500000000000000000000020421130343226700172750ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Select program to start on service start # set -e # init variables . "$(dirname $0)/cinit-conf.read-conf" if [ $# -ne 2 ]; then echo "$(basename $0): service path-to-executable" exit 1 fi svc="$1"; shift executable="$1"; shift echo "${svc}:${C_ON}->${executable}" ln -sf "${executable}" "${R_SVC_DIR}/${svc}/${C_ON}" cinit-0.3pre19/bin/cinit-conf.svc-param.add000077500000000000000000000021511130343226700205110ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Select program to start on service start # set -e # init variables . "$(dirname $0)/cinit-conf.read-conf" if [ $# -lt 3 ]; then echo "$(basename $0): service (${C_ON}|${C_OFF}) params..." exit 1 fi svc="$1"; shift type="$1"; shift while [ $# -gt 0 ]; do param="$1"; shift file="${svc}/${type}${C_PARAMS}" echo "${file}+=${param}" echo "${param}" >> "${R_SVC_DIR}/${file}" done cinit-0.3pre19/bin/cinit-conf.svc-respawn.off000077500000000000000000000024551130343226700211210ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Disable respawing for a service # set -e ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" # init variables . "${__mydir}/cinit-conf.read-conf" if [ $# -lt 1 ]; then echo "${__myname}: service-name(s)" echo " Services will lose their respawn mark" exit 1 fi for svc in "$@"; do echo -n "${svc}:respaw->off" rm -f "${R_SVC_DIR}/${svc}/${C_RESPAWN}" echo "finished." done cinit-0.3pre19/bin/cinit-conf.svc-respawn.on000077500000000000000000000024501130343226700207560ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Enable respawing for a service # set -e ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" # init variables . "${__mydir}/cinit-conf.read-conf" if [ $# -lt 1 ]; then echo "${__myname}: service-name(s)" echo " Services will be marked respawning" exit 1 fi for svc in "$@"; do echo -n "${svc}:respaw->on" touch "${R_SVC_DIR}/${svc}/${C_RESPAWN}" echo "finished." done cinit-0.3pre19/bin/cinit-conf.svc.acpid000077500000000000000000000026551130343226700177540ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Start acpid # ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e . "${__abs_mydir}/cinit-conf.read-conf" if [ $# -ne 0 ]; then echo "${__myname}: " echo "" echo " I start the old acpid" echo "" exit 23 fi SVC="local-services/acpid" BINARY_PATH="$(which acpid)" NEEDS="mount/root mount/proc" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-f" cinit-conf.svc.dependency.add "${SVC}" "needs" $NEEDS exit 0 cinit-0.3pre19/bin/cinit-conf.svc.agetty000077500000000000000000000037261130343226700201710ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Enable agetty (6 times is fine) # ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e . "$(dirname $0)/cinit-conf.read-conf" if [ $# -ne 1 ]; then echo "${__myname}: " echo "" echo " Allow login to your system using agetty" echo "" exit 23 fi num_getties="$1"; shift SVCBASE="local-services/agetty" # agetty is called getty within debian/ubuntu -> FIXME: also search for agetty BINARY_PATH="$(which getty)" NEEDS="mount/root mount/proc" # Create container to hold all the getties cinit-conf.svc-create.template "${SVCBASE}" i=0 while [ "$i" -lt "$num_getties" ]; do SVC="${SVCBASE}/$i" tty="tty${i}" speed="38400" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc.respawn.on "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "${speed}" "${tty}" cinit-conf.svc.dependency.add "${SVC}" "needs" $NEEDS # add each getty to the "super-getty-service" cinit-conf.svc.dependency.add "${SVCBASE}" "needs" "${SVC}" i=$(($i+1)) done exit 0 cinit-0.3pre19/bin/cinit-conf.svc.categories000077500000000000000000000015211130343226700210100ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Create default categories # . "$(dirname $0)/cinit-conf.read-conf" cinit-conf.svc-create.template $SERVICE_CATEGORIES cinit-0.3pre19/bin/cinit-conf.svc.dependency.add000077500000000000000000000035671130343226700215440ustar00rootroot00000000000000#!/bin/sh # # 2008-2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit-conf. If not, see . # # cinit: create dependency: service a needs or wants service b # set -e . "$(dirname $0)/cinit-conf.read-conf" if [ $# -lt 3 ]; then echo "`basename $0`: service_A [wants|needs] service_B" echo "" echo " Service A needs or wants Service B." echo " You must specify whether to use wants or needs." echo "" exit 23 fi SVC_A="$1"; shift DEP="$1"; shift # adding 'wishes' for x-mas and requires for 'the mass' and 'tv' case "${DEP}" in wishes|wants) DEP="$C_WANTS" ;; needs|requires) DEP="$C_NEEDS" ;; *) echo "Use \"want\" or \"need\" as type of dependency." esac SVC_A_LDIR="${R_SVC_DIR}/${SVC_A}/${DEP}" # Try to create dependency directory, if it does not exist if [ ! -d "${SVC_A_LDIR}" ]; then echo "${SVC_A}:+${DEP}" mkdir "${SVC_A_LDIR}" fi # allow multiple dependencies to be added in one run while [ $# -gt 0 ]; do SVC_B="$1"; shift # remove slashes in the name for destination SVC_B_LNAME="$(echo "$SVC_B" | sed 's#/#-#g')" SVC_B_SOURCE="${T_SVC_DIR}/${SVC_B}" SVC_A_LDEST="${SVC_A_LDIR}/${SVC_B_LNAME}" echo "${SVC_A} ${DEP} ${SVC_B} (${SVC_B_LNAME})" ln -sf "${SVC_B_SOURCE}" "${SVC_A_LDEST}" done exit 0 cinit-0.3pre19/bin/cinit-conf.svc.fsck.linux000077500000000000000000000030501130343226700207460ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Filesystemcheck # Warning: Ubuntu has UUIDs: # root@ubuntu:~# cat /etc/fstab # /etc/fstab: static file system information. # # Use 'vol_id --uuid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # [...] # UUID=405998e4-63ba-4190-8a69-488bd81b9d39 / ext3 relatime,errors=remount-ro 0 1 # # But the mtab of the running system contains the useful entry # set -e . "$(dirname $0)/cinit-conf.read-conf" if [ $# -ne 2 ]; then echo "$(basename $0): servicename device" exit 1 fi SVC="$1"; shift DEVICE="$1"; shift BINARY_PATH="$(which fsck)" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "${DEVICE}" cinit-0.3pre19/bin/cinit-conf.svc.getty.add000077500000000000000000000031021130343226700205430ustar00rootroot00000000000000#!/bin/sh # Nico Schottelius # cinit: create gettys # Date: 2005-05-24 (Last changed: 2005-08-07) # set -e # init variables . "$(dirname $0)/cinit-conf.read-conf" BASEDIR="${R_SVC_DIR}/${GETTYDIR}" LAST_NUMBER=$(cd "$BASEDIR" && ls | awk '/^((0[xX])[0-9a-fA-F]+)|([0-9]+)$/ { print }' | sort -n | tail -n 1) [ ! "$LAST_NUMBER" ] && LAST_NUMBER=0 NUMBER=$(echo $LAST_NUMBER + 1 | bc) [ ! "$NUMBER" ] && NUMBER=1 DDIR=$BASEDIR/$NUMBER #echo "Creating getty number $NUMBER in $DDIR ..." if [ "$USE_THIS_GETTY" ]; then GETTYS="$USE_THIS_GETTY" else GETTYS=`echo /sbin/*getty*` fi for getty in $GETTYS; do case $getty in */fgetty|*/mingetty) mygetty=$getty params="/dev/tty${NUMBER}" ;; */agetty|*/getty) mygetty=$getty params="38400 tty${NUMBER} linux" ;; */mgetty) mygetty=$getty params="38400 tty${NUMBER}" ;; *) echo "Unknown Getty type $getty" echo "Please report standard parameters to me." esac [ "$mygetty" ] && break done # check input if [ ! "$mygetty" ]; then read -p "Getty to use [$mygetty]: " rgetty fi if [ ! "$params" ]; then read -p "Parameters to pass [$params]: " rparams fi if [ ! "$params" -o ! "$mygetty" ]; then echo "Sorry, either getty or parameters are not supplied." exit 23 fi echo -n "Creating $mygetty ($params) in $DDIR ... " "$INSTALL_PROG" "$INSTALL_DIRECTORY" "$DDIR" ln -s "$mygetty" "$DDIR/$C_ON" for param in $params; do echo $param >> "$DDIR/${C_ON}${C_PARAMS}" done touch "$DDIR/$C_RESPAWN" echo "finished." cinit-0.3pre19/bin/cinit-conf.svc.getty.remove000077500000000000000000000010001130343226700213030ustar00rootroot00000000000000#!/bin/sh # Nico Schottelius # cinit: create gettys # init variables . "$(dirname $0)/cinit-conf.read-conf" BASEDIR="$DESTDIR/$CINIT_DIR/$GETTY_DIR" NUMBER=$(cd $BASEDIR && ls | awk '/^((0[xX])[0-9a-fA-F]+)|([0-9]+)$/ { print }' | tail -n 1) if [ ! "$NUMBER" ]; then echo "There is no getty to remove." exit 1 fi DDIR="$BASEDIR/$NUMBER" echo "Removing getty number $NUMBER located in $DDIR ..." read -p "Are you sure [y/N]? " yes if [ "$yes" = "y" ]; then rm -r "$DDIR" else echo "Aborted." fi cinit-0.3pre19/bin/cinit-conf.svc.hostname.linux000077500000000000000000000022121130343226700216350ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Setup the hostname # set -e . "$(dirname $0)/cinit-conf.read-conf" if [ $# -ne 1 ]; then echo "$(basename $0): hostname" exit 1 fi HOSTNAME="$1" : ${HOSTNAME_BIN:=/bin/hostname} SVC="network/hostname" cinit-conf.svc-create.template "${SVC}" ln -sf "$HOSTNAME_BIN" "${R_SVC_DIR}/${SVC}/${C_ON}" echo "$HOSTNAME" > "${R_SVC_DIR}/${SVC}/${C_ON}${C_PARAMS}" cinit-conf.svc.dependency.add "${SVC}" needs "mount/proc" cinit-0.3pre19/bin/cinit-conf.svc.init000077500000000000000000000005401130343226700176260ustar00rootroot00000000000000#!/bin/sh # Nico Schottelius # cinit: install needed directories # Date: - (Last Modified: 2005-08-06) # . "$(dirname $0)/cinit-conf.read-conf" set -e "$INSTALL_PROG" "$INSTALL_DIRECTORY" "${R_CINITCONF_DIR}" "$INSTALL_PROG" "$INSTALL_DIRECTORY" "${R_SVC_DIR}" # init must be there. always. "$INSTALL_PROG" "$INSTALL_DIRECTORY" "${R_SVC_DIR}/init" cinit-0.3pre19/bin/cinit-conf.svc.init.dependencies000077500000000000000000000021111130343226700222470ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # cinit: add standard sub-configuration directories to init wants # set -e . "$(dirname $0)/cinit-conf.read-conf" cinit-conf.svc.dependency.add init wants getty cinit-conf.svc.dependency.add init wants local-services cinit-conf.svc.dependency.add init wants local-tuning cinit-conf.svc.dependency.add init wants mount cinit-conf.svc.dependency.add init wants network cinit-0.3pre19/bin/cinit-conf.svc.keymap.linux000077500000000000000000000022171130343226700213120ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Setup console keymap # . "$(dirname $0)/cinit-conf.read-conf" set -e if [ $# -ne 0 ]; then echo "$(basename $0) (no args)" exit 1 fi SVC="local-tuning/keymap" BINARY_PATH="$(which setupcon)" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-k" # FIXME: what are the correct dependencies? cinit-conf.svc.dependency.add "${SVC}" "needs" "mount/proc" cinit-0.3pre19/bin/cinit-conf.svc.linux.debian.ntpdate000077500000000000000000000025261130343226700227070ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Start ntpdate # ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e . "${__abs_mydir}/cinit-conf.read-conf" if [ $# -ne 0 ]; then echo "${__myname}: (no args)" exit 1 fi . /etc/default/ntpdate if [ -z "$NTPSERVERS" ]; then echo "No ntp servers found, aborting" exit 1 fi BINARY_PATH="$(which ntpdate)" SVC="local-services/ntpdate" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-0.3pre19/bin/cinit-conf.svc.linux.network.lo000077500000000000000000000010401130343226700221170ustar00rootroot00000000000000#!/bin/sh # Nico Schottelius # cinit: install service: loopback device # Date: 2005-08-07 # . "$(dirname $0)/cinit-conf.read-conf" set -e # - mount /proc "$INSTALL_PROG" "$INSTALL_DIRECTORY" "${DESTDIR}/${CINIT_DIR}/network/lo" ln -sf /sbin/ifconfig "${DESTDIR}/${CINIT_DIR}/network/lo/$C_ON" echo lo > "${DESTDIR}/${CINIT_DIR}/network/lo/${C_ON}${C_PARAMS}" echo 127.0.0.1/8 >> "${DESTDIR}/${CINIT_DIR}/network/lo/${C_ON}${C_PARAMS}" echo up >> "${DESTDIR}/${CINIT_DIR}/network/lo/${C_ON}${C_PARAMS}" exit 0 cinit-0.3pre19/bin/cinit-conf.svc.local-tuning.udev.ubuntu000077500000000000000000000023221130343226700235420ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Configure the udev service # . "$(dirname $0)/cinit-conf.read-conf" set -e if [ $# -ne 0 ]; then echo "$(basename $0) (no args)" exit 1 fi BINARY_PATH="$(which udevadm)" SVC="local-tuning/udev" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "settle" # dependencies cinit-conf.svc.dependency.add "${SVC}" needs "mount/sys" cinit-conf.svc.dependency.add "${SVC}" needs "mount/udev" exit 0 cinit-0.3pre19/bin/cinit-conf.svc.mount.dev-pts000077500000000000000000000031261130343226700214110ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Mount /dev/shm, as specified in Ubuntu: # # domount tmpfs shmfs /dev/shm tmpfs -onosuid,nodev$SHM_OPT # # . "$(dirname $0)/cinit-conf.read-conf" set -e if [ $# -ne 0 ]; then echo "$(basename $0) (no args)" exit 1 fi SVC="mount/dev-pts" BINARY_PATH="$(which mount)" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" # Ubuntu: domount devpts "" /dev/pts devpts -onoexec,nosuid,gid=$TTYGRP,mode=$TTYMODE # root@cinit-desktop:/home/cinit/cinit# grep -e TTYGRP -e TTYMODE /etc/default/* # /etc/default/devpts:TTYGRP=5 # /etc/default/devpts:TTYMODE=620 # root@cinit-desktop:/home/cinit/cinit# awk -F: '$3 ~ /^5$/ { print $1 }' /etc/group # tty cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-n" "-t" "devpts" "devpts" "/dev/pts" "-onoexec,nosuid,gid=5,mode=620" cinit-conf.svc.dependency.add "${SVC}" "needs" "mount/udev" exit 0 cinit-0.3pre19/bin/cinit-conf.svc.mount.dev-shm000077500000000000000000000023551130343226700213750ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Mount /dev/shm, as specified in Ubuntu: # # domount tmpfs shmfs /dev/shm tmpfs -onosuid,nodev$SHM_OPT # # . "$(dirname $0)/cinit-conf.read-conf" set -e if [ $# -ne 0 ]; then echo "$(basename $0) (no args)" exit 1 fi SVC="mount/dev-shm" BINARY_PATH="$(which mount)" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-n" "-t" "tmpfs" "-onosuid,nodev" "shmfs" "/dev/shm" cinit-conf.svc.dependency.add "${SVC}" "needs" "mount/udev" exit 0 cinit-0.3pre19/bin/cinit-conf.svc.mount.getsource000077500000000000000000000015071130343226700220300ustar00rootroot00000000000000#!/bin/sh # # 2008 Nico Schottelius (nico-cinit-conf at schottelius.org) # # This file is part of cinit-conf. # # cinit-conf is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit-conf is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit-conf. If not, see . # # FIXME: Skip ^#!, make for generic mounts! awk '$2 ~ /^\/$/ { print $0 }' < /etc/fstab cinit-0.3pre19/bin/cinit-conf.svc.mount.nfs000077500000000000000000000031211130343226700206100ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Mount NFS shares # ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e . "$(dirname $0)/cinit-conf.read-conf" if [ $# -ne 0 ]; then echo "${__myname}: " echo "" echo " Enable NFS mounts" echo "" exit 23 fi SVC="mount/nfs" BINARY_PATH="$(which mount)" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-a" "-t" "nfs" BINARY_PATH="$(which umount)" cinit-conf.svc-off "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_OFF}" "-a" "-t" "nfs" # NFS mounts always need the network to be up cinit-conf.svc.dependency.add "${SVC}" "needs" $NEEDS "network" exit 0 cinit-0.3pre19/bin/cinit-conf.svc.mount.proc000077500000000000000000000022551130343226700207740ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Mount /proc # . "$(dirname $0)/cinit-conf.read-conf" set -e # - mount /proc SVC="mount/proc" "$INSTALL_PROG" "$INSTALL_DIRECTORY" "${R_SVC_DIR}/${SVC}" ln -sf /bin/mount "${R_SVC_DIR}/${SVC}/${C_ON}" echo proc > "${R_SVC_DIR}/${SVC}/${C_ON}${C_PARAMS}" echo -t >> "${R_SVC_DIR}/${SVC}/${C_ON}${C_PARAMS}" echo proc >> "${R_SVC_DIR}/${SVC}/${C_ON}${C_PARAMS}" echo /proc >> "${R_SVC_DIR}/${SVC}/${C_ON}${C_PARAMS}" exit 0 cinit-0.3pre19/bin/cinit-conf.svc.mount.root000077500000000000000000000023501130343226700210100ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # mount / read/write (and fsck it before) # set -e . "$(dirname $0)/cinit-conf.read-conf" # mount root read/write SVC="mount/root" BINARY_PATH="$(which mount)" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-n" "-o" "remount,rw" "/" SVC_FSCK="${SVC}/fsck" BINARY_PATH="$(which fsck)" DEV="$(mount | awk '$3 ~ /\/$/ { print $1 }')" cinit-conf.svc.fsck.linux "${SVC_FSCK}" "${DEV}" cinit-conf.svc.dependency.add "${SVC}" "needs" "${SVC_FSCK}" cinit-0.3pre19/bin/cinit-conf.svc.mount.swap000077500000000000000000000017121130343226700210000ustar00rootroot00000000000000#!/bin/sh # Nico Schottelius # cinit: install swap # Date: 2005-10-15 # . "$(dirname $0)/cinit-conf.read-conf" SERVICE=mount/swap if [ $# -ne 0 ]; then echo "$(basename $0) (no args)" exit 1 fi BINARY=swapon BINARY_PATH=$($(dirname $0)/cinit.path-find $BINARY) if [ $? -ne 0 ]; then echo "Did not find binary $BINARY." exit 1 fi HAS_SWAP=$(awk '$3 ~ /swap/ { print $3 }' /etc/fstab) if [ -z "$HAS_SWAP" ]; then echo "Seems you have no swap, service not installing" exit 1 fi if [ -d "${DESTDIR}/${CINIT_DIR}/${SERVICE}" ]; then echo "Service ${SERVICE} already exists." exit 1 fi echo -n "Installing ${SERVICE} to ${DESTDIR}${CINIT_DIR}/${SERVICE} ..." "$INSTALL_PROG" "$INSTALL_DIRECTORY" \ "${DESTDIR}/${CINIT_DIR}/${SERVICE}" ln -sf "$BINARY_PATH" "${DESTDIR}/${CINIT_DIR}/${SERVICE}/$C_ON" echo "-a" >> "${DESTDIR}/${CINIT_DIR}/${SERVICE}/$C_ON$C_PARAMS" echo "finished." exit 0 cinit-0.3pre19/bin/cinit-conf.svc.mount.sys000077500000000000000000000011351130343226700206430ustar00rootroot00000000000000#!/bin/sh # Nico Schottelius # cinit: install service: mount /sys # Date: 2005-08-07 # . "$(dirname $0)/cinit-conf.read-conf" set -e # - mount /sys "$INSTALL_PROG" "$INSTALL_DIRECTORY" "${DESTDIR}/${CINIT_DIR}/mount/sys" ln -sf /bin/mount "${DESTDIR}/${CINIT_DIR}/mount/sys/$C_ON" echo sys > "${DESTDIR}/${CINIT_DIR}/mount/sys/${C_ON}${C_PARAMS}" echo -t >> "${DESTDIR}/${CINIT_DIR}/mount/sys/${C_ON}${C_PARAMS}" echo sysfs >> "${DESTDIR}/${CINIT_DIR}/mount/sys/${C_ON}${C_PARAMS}" echo /sys >> "${DESTDIR}/${CINIT_DIR}/mount/sys/${C_ON}${C_PARAMS}" exit 0 cinit-0.3pre19/bin/cinit-conf.svc.mount.sysfs000077500000000000000000000021561130343226700212000ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Mount sysfs # . "$(dirname $0)/cinit-conf.read-conf" set -e DDIR="${R_SVC_DIR}/mount/sys/" # - mount /sys "$INSTALL_PROG" "$INSTALL_DIRECTORY" "${DDIR}" ln -sf /bin/mount "${DDIR}${C_ON}" echo sysfs > "${DDIR}${C_ON}${C_PARAMS}" echo -t >> "${DDIR}${C_ON}${C_PARAMS}" echo sysfs >> "${DDIR}${C_ON}${C_PARAMS}" echo /sys >> "${DDIR}${C_ON}${C_PARAMS}" exit 0 cinit-0.3pre19/bin/cinit-conf.svc.mount.udev000077500000000000000000000021161130343226700207700ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Setup console keymap # . "$(dirname $0)/cinit-conf.read-conf" set -e if [ $# -ne 0 ]; then echo "$(basename $0) (no args)" exit 1 fi SVC="mount/udev" BINARY_PATH="$(which mount)" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-n" "-t" "tmpfs" "-o" "mode=0755" "udev" "/dev" exit 0 cinit-0.3pre19/bin/cinit-conf.svc.mtab-clean.linux000077500000000000000000000027741130343226700220370ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Initialise the /etc/mtab file on Linux: # Ubuntu Jaunty manually creates it, we just ignore it # and link it to /proc/mounts. # # This is probably not the perfect way, as /proc/mounts # contains more stuff than useful. Maybe we can add a # "add mount to mtab" dependency to all mount/X/ services, # that depends on mount/root. # # . "$(dirname $0)/cinit-conf.read-conf" set -e SVC="local-tuning/cleanup-mtab" BINARY_PATH="$(which ln)" # Is mount/proc needed or is it sane to link to an empty /etc/mtab # by linking that to a non-existing file? NEEDS="mount/root mount/proc" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-sf" "/proc/mounts" "/etc/mtab" cinit-conf.svc.dependency.add "${SVC}" "needs" $NEEDS exit 0 cinit-0.3pre19/bin/cinit-conf.svc.network.debian000077500000000000000000000032401130343226700215750ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Start network # ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e . "$(dirname $0)/cinit-conf.read-conf" if [ $# -ne 0 ]; then echo "${__myname}: " echo "" echo " I start all your network devices" echo "" exit 23 fi SVC="network/devices" BINARY_PATH="$(which ifup)" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-a" # FIXME: Is it really senseful to call ifdown at shutdown? # Or is that useless anyway? Besides some DHCP_RELEASEs BINARY_PATH="$(which ifdown)" cinit-conf.svc-off "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_OFF}" "-a" # no known dependencies #cinit-conf.svc.dependency.add "${SVC}" "needs" $NEEDS exit 0 cinit-0.3pre19/bin/cinit-conf.svc.setup.console.linux000077500000000000000000000025561130343226700226330ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # Setup the Linux console # ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e . "$(dirname $0)/cinit-conf.read-conf" if [ $# -ne 0 ]; then echo "${__myname}: " echo "" echo " Setup Linux console" echo "" exit 23 fi SVC="local-tuning/setup-console" BINARY_PATH="$(which setupcon)" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "--force" exit 0 cinit-0.3pre19/bin/cinit-conf.svc.shell000077500000000000000000000027471130343226700200050ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Start a shell - the debugging example # ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e . "$(dirname $0)/cinit-conf.read-conf" if [ $# -ne 0 ]; then echo "${__myname}: " echo "" echo " I start a local shell" echo "" exit 23 fi SVC="local-services/shell" BINARY_PATH="$(which sh)" WANTS="mount/root mount/proc" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-i" cinit-conf.svc-respawn.on "${SVC}" cinit-conf.svc.dependency.add "${SVC}" "wants" $WANTS exit 0 cinit-0.3pre19/bin/cinit-conf.svc.sshd000077500000000000000000000027411130343226700176310ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Start sshd # ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e . "$(dirname $0)/cinit-conf.read-conf" if [ $# -ne 0 ]; then echo "${__myname}: " echo "" echo " I start the OpenSSH server (not just sshd, Mike)." echo "" exit 23 fi SVC="remote-services/sshd" BINARY_PATH="$(which sshd)" #NEEDS="mount/root mount/proc" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-D" # no known dependencies #cinit-conf.svc.dependency.add "${SVC}" "needs" $NEEDS exit 0 cinit-0.3pre19/bin/cinit-conf.svc.sysctl.linux000077500000000000000000000034031130343226700213430ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Load sysctl values # # Ubuntu: for file in /etc/sysctl.conf /etc/sysctl.d/*.conf # . "$(dirname $0)/cinit-conf.read-conf" ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e if [ $# -ne 0 ]; then echo "$(basename $0) (no args)" exit 1 fi SVC="local-tuning/sysctl" BINARY_PATH="$(which sysctl)" # main service cinit-conf.svc-delete "${SVC}" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-p" "/etc/sysctl.conf" # create "sub"-services for file in /etc/sysctl.d/*.conf; do bsvc="${file##*/}" bsvc="${bsvc%*.conf}" svc="${SVC}/${bsvc}" cinit-conf.svc-create.template "${svc}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${svc}" "${C_ON}" "-p" "${file}" cinit-conf.svc.dependency.add "${SVC}" "needs" "${svc}" done exit 0 cinit-0.3pre19/bin/cinit-conf.svc.tmp.clean000077500000000000000000000032541130343226700205510ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Cleanup temp directories # ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e . "$(dirname $0)/cinit-conf.read-conf" if [ $# -lt 1 ]; then echo "${__myname}: tmpdirs... " echo "" echo " I remove those tempdirs on bootup." echo "" exit 23 fi SVC="local-tuning/tmp-clean" BINARY_PATH="$(which rm)" # FIXME: We would need all the related partions to be r/w # So probably add a warning somewhere or add another argument, # specifyng other needs NEEDS="mount/root" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-rf" cinit-conf.svc.dependency.add "${SVC}" "needs" $NEEDS # all other arguments are temp directories cinit-conf.svc-param.add "${SVC}" "${C_ON}" "$@" exit 0 cinit-0.3pre19/bin/cinit-conf.svc.tmp.create000077500000000000000000000032141130343226700207260ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Recreate temp directories # ################################################################################ # standard vars stolen from cconf __pwd="$(pwd -P)" __mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" __myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" set -e . "$(dirname $0)/cinit-conf.read-conf" if [ $# -lt 1 ]; then echo "${__myname}: tmpdirs... " echo "" echo " I create those tempdirs on bootup." echo "" exit 23 fi SVC="local-tuning/tmp/create" BINARY_PATH="$(which mkdir)" # FIXME: We would need all the related partions to be r/w # So probably add a warning somewhere or add another argument, # specifyng other needs NEEDS="mount/root" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" # all other arguments are temp directories cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-m" "1777" "$@" cinit-conf.svc.dependency.add "${SVC}" "needs" $NEEDS exit 0 cinit-0.3pre19/bin/cinit-conf.svc.udev.copy-static000077500000000000000000000021251130343226700220650ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Copny static files to /dev # . "$(dirname $0)/cinit-conf.read-conf" set -e if [ $# -ne 0 ]; then echo "$(basename $0) (no args)" exit 1 fi SVC="local-tuning/udev/copy-static" BINARY_PATH="$(which cp)" cinit-conf.svc-create.template "${SVC}" cinit-conf.svc-on "${SVC}" "${BINARY_PATH}" cinit-conf.svc-param.add "${SVC}" "${C_ON}" "-a" "/lib/udev/devices/" "/dev/" exit 0 cinit-0.3pre19/bin/cinit-conf.sys-v-init.get-current-runlevel000077500000000000000000000014111130343226700242010ustar00rootroot00000000000000#!/bin/sh # # 2008 Nico Schottelius (nico-cinit-conf at schottelius.org) # # This file is part of cinit-conf. # # cinit-conf is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit-conf is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit-conf. If not, see . # runlevel | cut -d " " -f2 cinit-0.3pre19/bin/cinit-conf.sys-v-init.migrate-fstab000077500000000000000000000015611130343226700226430ustar00rootroot00000000000000#!/bin/sh # # 2008 Nico Schottelius (nico-cinit-conf at schottelius.org) # # This file is part of cinit-conf. # # cinit-conf is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit-conf is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit-conf. If not, see . # # read root # read swap # FIXME: read others: later echo "Warning: Only configuring / and swap, ignoring other devices for now" cinit-0.3pre19/bin/cinit-helper.wait.for.daemon000077500000000000000000000011711130343226700214170ustar00rootroot00000000000000#!/bin/sh # Nico Schottelius # wait for daemon to terminate # the pidfile is our first argument, # the dameon the second and all others are for the daemon # 2005-06-12 (Last Changed: 2005-06-17) # how long to sleep before rechecking SLEEP=5 if [ $# -lt 2 ]; then echo "`basename $0` [daemon arguments]" exit 1 fi PIDFILE=$1; shift DAEMON=$1; shift # remove old pidfile [ -e "$PIDFILE" ] && rm -f $PIDFILE $DAEMON $@ PID=$(cat "$PIDFILE") ISALIVE=$(ps ax | awk '{ print $1 }' | grep "^$PID\$") while [ "$ISALIVE" ]; do sleep ${SLEEP} ISALIVE=$(ps ax | awk '{ print $1 }' | grep "^$PID\$") done cinit-0.3pre19/bugs/000077500000000000000000000000001130343226700143045ustar00rootroot00000000000000cinit-0.3pre19/bugs/README000066400000000000000000000000461130343226700151640ustar00rootroot00000000000000This directory is maintained by ditz. cinit-0.3pre19/bugs/issue-0c63a541a2261c7322d6c59a6adb091301020c8d.yaml000066400000000000000000000015121130343226700234700ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Create minimal sample configurations for different OS desc: |- Similar to what I thought todo in cinit.install.test: [ -e /etc/gentoo-release ] && TAR=${TARDIR}/gentoo.tar [ -e /etc/debian_version ] && TAR=${TARDIR}/debian.tar [ -e /etc/SuSE-release ] && TAR=${TARDIR}/suse.tar [ -e /etc/mandrake-release ] && TAR=${TARDIR}/mandrake.tar [ -e /etc/fedora-release ] && TAR=${TARDIR}/fedora.tar type: :task component: portability release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-24 20:14:42.832701 Z references: [] id: 0c63a541a2261c7322d6c59a6adb091301020c8d log_events: - - 2009-09-24 20:14:44.120614 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-0d8142c646aa04e8e713fc8f886a44475581c670.yaml000066400000000000000000000011601130343226700234700ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: How to handle OS specific signal handlers desc: |- -- cinit ignores the Keyboard request - Currently there is no support to react on 'ctr+alt+del': Maybe allow signal handlers to be passed to something like services? type: :task component: core release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 05:29:28.589652 Z references: [] id: 0d8142c646aa04e8e713fc8f886a44475581c670 log_events: - - 2009-09-28 05:29:31.033914 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-120cbf62dbdd9a7a026bcbb7d2863599c7183f70.yaml000066400000000000000000000015611130343226700240370ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Add install targets desc: |- install: make install => does not overwrite critical targets * cinit * *.kill (see client/*) * cmd make force-install => overwrites /sbin/{halt,poweroff,reboot}? => with script that wraps cmd make install-template: * creates categories make install-miniconf: * creates categories * creates one service starting a shell (depending on the OS!) type: :task component: build release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 05:42:21.470333 Z references: [] id: 120cbf62dbdd9a7a026bcbb7d2863599c7183f70 log_events: - - 2009-09-28 05:42:22.146097 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-1cc421b885608485f73c9041c5c0af71df76331a.yaml000066400000000000000000000007351130343226700235400ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Documentate, how to write an init system desc: So others can redo it. type: :task component: documentation release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-29 05:17:05.878201 Z references: [] id: 1cc421b885608485f73c9041c5c0af71df76331a log_events: - - 2009-09-29 05:17:06.729534 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-1e83dca921062d97b96830caf24e7898ad4fbbe2.yaml000066400000000000000000000007541130343226700240570ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: add error handling to cinit.install.binary desc: Double check the whole installation process type: :task component: build release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 05:32:13.897529 Z references: [] id: 1e83dca921062d97b96830caf24e7898ad4fbbe2 log_events: - - 2009-09-28 05:32:14.581391 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-25822475f5d01c35eb9edd8d75c065c83032701b.yaml000066400000000000000000000010211130343226700235250ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: "Documentate: How to cross compile" desc: |- conf/os to destination os conf/cc conf/ld conf/cflags conf/ldflags type: :task component: documentation release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-07 06:31:53.866741 Z references: [] id: 25822475f5d01c35eb9edd8d75c065c83032701b log_events: - - 2009-09-07 06:31:54.990478 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-278e5a7b4c338f18f92d5bb1a2789d76d0e11ad9.yaml000066400000000000000000000025661130343226700240030ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Add reason, why service was not started desc: |- -------------------------------------------------------------------------------- csvc: 11:09 < folken23> telmich: oder service allready started. -------------------------------------------------------------------------------- cinit: 11:09 < folken23> telmich: zsb. eine grund angabe warum ein dienst nicht gestartet werden konnte. 11:09 < folken23> telmich: e.g. file nicht gefunden, service hat nicht 0 zurueckgeworfen. ---> errno in execute_sth! type: :task component: cinit release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 05:36:51.093468 Z references: [] id: 278e5a7b4c338f18f92d5bb1a2789d76d0e11ad9 log_events: - - 2009-09-28 05:36:51.957356 Z - Nico Schottelius - created - "" - - 2009-09-29 05:15:14.622132 Z - Nico Schottelius - commented - |- And add better status messages: -> starting [ started once ] [ respawning ] [ failed ] (+ REASON!) [ needs failed ] (which ones) -> stopping [ stopping ] (for dependencies) [ stopped ] ? [ not running ] ? cinit-0.3pre19/bugs/issue-29d45f06044e5329dca7f351a17676e65d4e3b38.yaml000066400000000000000000000011111130343226700235420ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: "Bugfix: SIGCHLD not handled carefully" desc: "" type: :task component: core release: "0.3" reporter: Nico Schottelius status: :in_progress disposition: creation_time: 2009-09-29 05:34:17.833638 Z references: [] id: 29d45f06044e5329dca7f351a17676e65d4e3b38 log_events: - - 2009-09-29 05:34:18.397430 Z - Nico Schottelius - created - "" - - 2009-09-29 05:35:28.338069 Z - Nico Schottelius - changed status from unstarted to in_progress - "" cinit-0.3pre19/bugs/issue-2a4a3675810b44b05ce51c021690fb3f21725e55.yaml000066400000000000000000000010601130343226700234250ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: write sys-v-init-shutdown-wrapper desc: |- So people can use their known tools: * shutdown * halt * reboot * poweroff type: :task component: user interface release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 18:35:44.468421 Z references: [] id: 2a4a3675810b44b05ce51c021690fb3f21725e55 log_events: - - 2009-09-28 18:35:45.292294 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-2fda514da472aa15fa57d2df06e8d5cc909016d0.yaml000066400000000000000000000010021130343226700240710ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Write a small manual desc: |- How to - install - configure - boot (different OS) type: :task component: documentation release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 18:37:34.300443 Z references: [] id: 2fda514da472aa15fa57d2df06e8d5cc909016d0 log_events: - - 2009-09-28 18:37:35.280232 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-3a620ff450d0c685a5567d25d77230763c835c8e.yaml000066400000000000000000000010021130343226700234560ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Allow non-parallel bootup desc: For easier debugging and people who are confused with parallel startup type: :task component: core release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-10-24 14:18:44.270577 Z references: [] id: 3a620ff450d0c685a5567d25d77230763c835c8e log_events: - - 2009-10-24 14:18:44.990439 Z - Nico Schottelius - created - "" git_branch: cinit-0.3pre19/bugs/issue-3cc14c82109544e198e5cce002c0d94a66e6f4d7.yaml000066400000000000000000000007041130343226700236770ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Export service information desc: Like pid, path, ... type: :task component: cinit release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-29 05:18:47.901610 Z references: [] id: 3cc14c82109544e198e5cce002c0d94a66e6f4d7 log_events: - - 2009-09-29 05:18:48.369488 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-40bb0e1478cb8e1fd7ef577b0acf8f7b2f516d6d.yaml000066400000000000000000000013411130343226700242640ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Add service start/stop desc: Hack cinit_svc_disable.c type: :task component: cinit release: "0.3" reporter: Nico Schottelius status: :in_progress disposition: creation_time: 2009-09-29 05:31:38.533662 Z references: [] id: 40bb0e1478cb8e1fd7ef577b0acf8f7b2f516d6d log_events: - - 2009-09-29 05:31:39.209477 Z - Nico Schottelius - created - "" - - 2009-09-29 05:32:40.681588 Z - Nico Schottelius - commented - "svc_stop vs. svc_disable: coded tired?" - - 2009-09-29 05:33:27.666143 Z - Nico Schottelius - changed status from unstarted to in_progress - on it... cinit-0.3pre19/bugs/issue-4e460e6061fb5d39549b85d42fc33f57de7a1396.yaml000066400000000000000000000007061130343226700236420ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Maybe create libcinit? desc: At least for use in cmd() type: :task component: cinit release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 05:43:27.689712 Z references: [] id: 4e460e6061fb5d39549b85d42fc33f57de7a1396 log_events: - - 2009-09-28 05:43:28.069533 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-5bd7befd45553864b1d2ebc12509e06440a402d0.yaml000066400000000000000000000007241130343226700236550ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Documentate how to migrate from another init system desc: "" type: :task component: documentation release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 20:00:00.854675 Z references: [] id: 5bd7befd45553864b1d2ebc12509e06440a402d0 log_events: - - 2009-09-28 20:00:01.450291 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-5c4769f4f4f23b8a544ae3e20866d8fc2676a7e7.yaml000066400000000000000000000007501130343226700237320ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: add code do implement stopping / restarting service with/without dependency tree desc: "" type: :task component: cinit release: 0.3.1 reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 05:33:24.966097 Z references: [] id: 5c4769f4f4f23b8a544ae3e20866d8fc2676a7e7 log_events: - - 2009-09-28 05:33:25.929966 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-638fcf34a8d68c88ed48313ffd3b8a9ecb2fbbd4.yaml000066400000000000000000000007461130343226700243720ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Export cinit.mkheader to cconf desc: To buid up the complete build suite. type: :task component: build release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-11-18 16:03:16.116135 Z references: [] id: 638fcf34a8d68c88ed48313ffd3b8a9ecb2fbbd4 log_events: - - 2009-11-18 16:03:16.685812 Z - Nico Schottelius - created - "" git_branch: cinit-0.3pre19/bugs/issue-8391cdbcb30d007bfb692504d9469a93f7c15b97.yaml000066400000000000000000000010021130343226700237000ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Mase sure cinit runs on POSIX desc: Double check that there are no linux deps in it anymore (from cinit-0.2) type: :task component: portability release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-29 05:16:19.961614 Z references: [] id: 8391cdbcb30d007bfb692504d9469a93f7c15b97 log_events: - - 2009-09-29 05:16:20.858087 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-85687a7f79046db51429db38e7b1da5234a3675e.yaml000066400000000000000000000013021130343226700235540ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: write examples for profiles desc: |- o switch ssh known_hosts based on profile o different proxy settings in browsers - environment - mozilla settings o start samba (for lan) o start samba (for company lan) o use nis and nfs (company profile) type: :task component: documentation release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-29 05:19:26.941625 Z references: [] id: 85687a7f79046db51429db38e7b1da5234a3675e log_events: - - 2009-09-29 05:19:27.345506 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-863a9d56ed460fb45e91d2c555d57133d2286f72.yaml000066400000000000000000000013311130343226700235540ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Add speedup part in documentation desc: |- - cinit will start a little bit faster if you omit non needed 'wants' and 'needs' dirs as they need to be scanned if they do not exist - Dependencies beginning with a '.' (dot) are ignored. So you can temporarily disable a dependency moving it to want/.name type: :task component: documentation release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 05:30:01.562097 Z references: [] id: 863a9d56ed460fb45e91d2c555d57133d2286f72 log_events: - - 2009-09-28 05:30:02.433805 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-8d5e1aee59a52ab1b3b0b02b02f07823d4f4b8d8.yaml000066400000000000000000000014541130343226700240760ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Create cinit-conf framework or libexec desc: |- Maybe include - cinit_service_modify(name|path) - cinit_service_create() - interactive - cinit_service_delete(name|path) - interactive * has to take care about needs / wants! - cinit_magic_configuration_generation() * tries to build a completly fresh configuration, by analysing your system Non interactive tools - cinit_svc_del type: :task component: user interface release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-29 05:28:48.049604 Z references: [] id: 8d5e1aee59a52ab1b3b0b02b02f07823d4f4b8d8 log_events: - - 2009-09-29 05:28:48.665510 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-b5428a5e8b064827fac8f1bc905cd5b304961f77.yaml000066400000000000000000000011251130343226700237060ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Add dumpstate function desc: |- It should write a cconfig tree similar to the configuration Additionally it should contain a "state" field This feature is the base for hot-upgrading cinit. type: :task component: cinit release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-10-05 20:57:25.373348 Z references: [] id: b5428a5e8b064827fac8f1bc905cd5b304961f77 log_events: - - 2009-10-05 20:57:25.943152 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-bb27c9b51f82dd54eba8baa40aa5e8bba326ea01.yaml000066400000000000000000000007141130343226700243640ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: export profile information desc: Possible via $CINIT_PROFILE type: :task component: cinit release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-29 05:19:54.965525 Z references: [] id: bb27c9b51f82dd54eba8baa40aa5e8bba326ea01 log_events: - - 2009-09-29 05:19:55.929526 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-c8d020845511594b4b90bb38a2a839ef6ce4c9c8.yaml000066400000000000000000000010141130343226700237000ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Cleanup environment before starting child desc: |- Close fds, free mem, ... Chcek what's necessary, what's senseful, ... type: :task component: cinit release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 05:41:22.857702 Z references: [] id: c8d020845511594b4b90bb38a2a839ef6ce4c9c8 log_events: - - 2009-09-28 05:41:23.909476 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-d3732fffad054c5a1f781f28a60015346ad28dd6.yaml000066400000000000000000000010061130343226700237440ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: write cinit-conf.check desc: |- * report broken links in needs/wants * report circular dependencies type: :task component: user interface release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 18:36:27.892997 Z references: [] id: d3732fffad054c5a1f781f28a60015346ad28dd6 log_events: - - 2009-09-28 18:36:28.504859 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-d7a7970bd20e1dc0b04f314fee5f39ba90d3d904.yaml000066400000000000000000000007341130343226700241100ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Cleanup contrib+tools desc: Tools may be old or not even compiling. Cleanup! type: :task component: cinit release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-29 05:22:54.298139 Z references: [] id: d7a7970bd20e1dc0b04f314fee5f39ba90d3d904 log_events: - - 2009-09-29 05:22:55.166003 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-dbc5e27c03e3dd22add144409f6dfe8b81d2c8d1.yaml000066400000000000000000000012041130343226700242430ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Documentate sleeping behaviour (when respawing processes) desc: |- - cinit will sleep after respawing if ... a) the service did not terminate normally (!WIFEXITED(status)) b) the service did return a non-zero exit status type: :task component: documentation release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 05:27:32.721481 Z references: [] id: dbc5e27c03e3dd22add144409f6dfe8b81d2c8d1 log_events: - - 2009-09-28 05:27:33.821345 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-e40b9f0761d0a1e0ca47cc8e0e52d4ec16f51669.yaml000066400000000000000000000010211130343226700240200ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: define service status in one document, so repeatition stops desc: |- maybe use doxygen? Chose focus: user | developer type: :task component: documentation release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 05:31:11.886061 Z references: [] id: e40b9f0761d0a1e0ca47cc8e0e52d4ec16f51669 log_events: - - 2009-09-28 05:31:12.802016 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-e435cb93810ea790f795fedc2e9afc6475c9c0a8.yaml000066400000000000000000000007421130343226700241460ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: "FAQ: what happens when a service does not terminate...." desc: write faq! type: :task component: documentation release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-28 20:11:41.130314 Z references: [] id: e435cb93810ea790f795fedc2e9afc6475c9c0a8 log_events: - - 2009-09-28 20:11:41.862145 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-f10682d63b1059f876c6cdde2323a596dba89d3c.yaml000066400000000000000000000026771130343226700240030ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Test new build sytem desc: |- Migrate conf/ to general conf/-buildsystem (write documentation for it). gpm2 may be an example for this! conf/targets: targets to make available in Makefile and their dependencies abstract the build-process somehow, so one can create build-targets? c-programs/ (includes cc / ld) cinit (link to conf/object_listings cinit?) conf/object_listings lists of dependencies: conf/object_listings/cinit contains all objects needed for cinit conf/programs/ like cc, ld, install, ... conf/built-options/ like --... in ./configure conf/install/ options/ destdir (prefixed before everything) prefix (standard prefix) bin (relative to prefix, if not beginning with a /) sbin (relative to prefix, if not beginning with a /) lib (relative to prefix, if not beginning with a /) targets/ cinit/ built-target (link to conf/targets/cinit) destination (relative to type: :task component: build release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-29 05:21:55.313650 Z references: [] id: f10682d63b1059f876c6cdde2323a596dba89d3c log_events: - - 2009-09-29 05:21:55.845402 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-fa88d3f9dca2df7ccaf8fb9ce2daab3e9255dae3.yaml000066400000000000000000000006771130343226700247410ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: Check shutdown code desc: To verify the right way type: :task component: core release: "0.3" reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-29 05:34:46.305951 Z references: [] id: fa88d3f9dca2df7ccaf8fb9ce2daab3e9255dae3 log_events: - - 2009-09-29 05:34:46.774065 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/issue-fea40277e32b0bd747d7f47a68d41009fc046fd9.yaml000066400000000000000000000007261130343226700237710ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/issue title: add logging support for services desc: Similar to DJB tools? multilog? type: :task component: cinit release: future reporter: Nico Schottelius status: :unstarted disposition: creation_time: 2009-09-29 05:18:00.717667 Z references: [] id: fea40277e32b0bd747d7f47a68d41009fc046fd9 log_events: - - 2009-09-29 05:18:01.146029 Z - Nico Schottelius - created - "" cinit-0.3pre19/bugs/project.yaml000066400000000000000000000022501130343226700166350ustar00rootroot00000000000000--- !ditz.rubyforge.org,2008-03-06/project name: cinit version: "0.5" components: - !ditz.rubyforge.org,2008-03-06/component name: cinit - !ditz.rubyforge.org,2008-03-06/component name: core - !ditz.rubyforge.org,2008-03-06/component name: user interface - !ditz.rubyforge.org,2008-03-06/component name: portability - !ditz.rubyforge.org,2008-03-06/component name: documentation - !ditz.rubyforge.org,2008-03-06/component name: build releases: - !ditz.rubyforge.org,2008-03-06/release name: "0.3" status: :unreleased release_time: log_events: - - 2009-09-07 06:28:02.974644 Z - Nico Schottelius - created - The first cleaned up version - !ditz.rubyforge.org,2008-03-06/release name: future status: :unreleased release_time: log_events: - - 2009-09-07 06:29:14.264777 Z - Nico Schottelius - created - All things to be fixed in the future. - !ditz.rubyforge.org,2008-03-06/release name: 0.3.1 status: :unreleased release_time: log_events: - - 2009-09-28 05:32:55.870041 Z - Nico Schottelius - created - Bugfix of 0.3 cinit-0.3pre19/conf/000077500000000000000000000000001130343226700142715ustar00rootroot00000000000000cinit-0.3pre19/conf/.README000066400000000000000000000004521130343226700152300ustar00rootroot00000000000000This is an example for a cinit and cinit-conf configuration. The first line of a file contains the configuration value, the rest of the file may contain a description. The conf/ directory is shared by cinit and cinit-conf and may contain files that are only relevant for one of the two projects. cinit-0.3pre19/conf/c_confdir000066400000000000000000000000751130343226700161440ustar00rootroot00000000000000conf The directory below cinit_dir for cinit configuration. cinit-0.3pre19/conf/c_delay000066400000000000000000000001611130343226700156120ustar00rootroot00000000000000delay Name of the file which contains the delay between sending SIGKILL after SIGTERM for respawning processes. cinit-0.3pre19/conf/c_desaster000066400000000000000000000002511130343226700163260ustar00rootroot00000000000000/bin/sh The path to a program, that we execute if nothing else helps. We'll execute it, if the standard panic action fails (as specified in cinit_dir/c_confdir/panic). cinit-0.3pre19/conf/c_env000066400000000000000000000002201130343226700153000ustar00rootroot00000000000000.env The extension to c_on and c_off, which will contain the environment \n seperated. For instance: CLIENT_IP=192.168.23.42 ACCEPT_CONN=32 cinit-0.3pre19/conf/c_init000066400000000000000000000000441130343226700154570ustar00rootroot00000000000000init The name of the init service. cinit-0.3pre19/conf/c_last000066400000000000000000000003431130343226700154610ustar00rootroot00000000000000last Name of the file below cinit_dir/c_confdir/ to execute right before reboot/halt/poweroff. This maybe a shellscript with the OS-specific umount procedure (like umount -a), see doc/user/configuring.cinit for more details. cinit-0.3pre19/conf/c_needs000066400000000000000000000001111130343226700156050ustar00rootroot00000000000000needs Name of the service sub-directory containing the needed services. cinit-0.3pre19/conf/c_off000066400000000000000000000000731130343226700152700ustar00rootroot00000000000000off Name of the file we start, when stopping the service. cinit-0.3pre19/conf/c_on000066400000000000000000000000721130343226700151310ustar00rootroot00000000000000on Name of the file we start, when starting the service. cinit-0.3pre19/conf/c_panic000066400000000000000000000002441130343226700156100ustar00rootroot00000000000000panic Name of the file below cinit_dir/c_confdir/ to execute on panic. This name .params (normally panic.params) will be passed as parameters/ argumunts to panic. cinit-0.3pre19/conf/c_params000066400000000000000000000001321130343226700157750ustar00rootroot00000000000000.params The extension to c_on and c_off, which will contain the parameters \n seperated. cinit-0.3pre19/conf/c_respawn000066400000000000000000000001251130343226700161730ustar00rootroot00000000000000respawn If this file exists in a service directory, cinit will respawn the service. cinit-0.3pre19/conf/c_sock000066400000000000000000000001371130343226700154560ustar00rootroot00000000000000coala The name of the socket cinit will use (currently: below tmpdir, see doc/ipc.thoughts). cinit-0.3pre19/conf/c_tmp000066400000000000000000000001271130343226700153160ustar00rootroot00000000000000tmp The name of the temporary directory, where we'll mount tmpfs to create the socket cinit-0.3pre19/conf/c_tmpfs000066400000000000000000000001411130343226700156430ustar00rootroot00000000000000tmpfs The name of the filesystem to use to mount a memory filesystem. On Linux this is "tmpfs". cinit-0.3pre19/conf/c_tmpmount000066400000000000000000000002321130343226700163760ustar00rootroot00000000000000tmpfs The name of the mount target, we'll mount with c_tmpfs on the c_tmp directory. On Linux this can be anything, but we will use the default "tmpfs". cinit-0.3pre19/conf/c_wants000066400000000000000000000001111130343226700156430ustar00rootroot00000000000000wants Name of the service sub-directory containing the wanted services. cinit-0.3pre19/conf/cc000066400000000000000000000000341130343226700145760ustar00rootroot00000000000000gcc The c-compiler to use. cinit-0.3pre19/conf/cflags000066400000000000000000000003401130343226700154500ustar00rootroot00000000000000-pipe -W -Wall -Werror -Iinclude -g -D_XOPEN_SOURCE=600 -D_USE_POSIX Standard flags to pass to (g)cc. -D_XOPEN_SOURCE=600 must be used on glibc to select the right standard. -D_USE_POSIX is needed for sigemptyset on glibc cinit-0.3pre19/conf/cinit_dir000066400000000000000000000001061130343226700161550ustar00rootroot00000000000000/etc/cinit This is where all configuration for cinit will be stored. cinit-0.3pre19/conf/cinitconfdir000066400000000000000000000000631130343226700166660ustar00rootroot00000000000000conf General cinit-configuration (below cinitdir) cinit-0.3pre19/conf/destdir000066400000000000000000000003011130343226700156440ustar00rootroot00000000000000 The destination to install to. This is not used when running cinit, but only for installing it. Normally the first line is blank. cinit-conf uses this file for installing the configuration. cinit-0.3pre19/conf/gettydir000066400000000000000000000002201130343226700160410ustar00rootroot00000000000000getty This is the subdirectry in which the scripts will create the gettys, if you are using 'install-conf'. It's not used be cinit internally. cinit-0.3pre19/conf/install_directory000066400000000000000000000000751130343226700177500ustar00rootroot00000000000000-d Parameter to pass to install_prog to create directories. cinit-0.3pre19/conf/install_prog000066400000000000000000000001471130343226700167130ustar00rootroot00000000000000/usr/bin/install Program we use to install. install_directory contains parameter to create directory. cinit-0.3pre19/conf/ipc_method000066400000000000000000000001641130343226700163300ustar00rootroot00000000000000msgq The type of IPC (inter process communication) to use. Valid values can be optained by issuing `ls src/ipc/`. cinit-0.3pre19/conf/ld000066400000000000000000000000261130343226700146110ustar00rootroot00000000000000gcc Comment missing. cinit-0.3pre19/conf/ldflags000066400000000000000000000000371130343226700156300ustar00rootroot00000000000000 No flags specified normally. cinit-0.3pre19/conf/max_delay000066400000000000000000000001241130343226700161540ustar00rootroot0000000000000030 Maximum number of seconds to sleep between retrying to start it (respawn only). cinit-0.3pre19/conf/max_deps000066400000000000000000000002121130343226700160070ustar00rootroot0000000000000032 Maximum number of direct dependencies (in each wants and needs, that way doubling this number) a service may have. The default is 32. cinit-0.3pre19/conf/msgq_pathname000066400000000000000000000001231130343226700170340ustar00rootroot00000000000000/bin/sh Used to generate an unique identifier for the message queue. See ftok(3). cinit-0.3pre19/conf/msgq_to_clients000066400000000000000000000001531130343226700174050ustar00rootroot00000000000000o This is use in ftok to generate a key_t for the message queue use to write to the clients. See ftok(3). cinit-0.3pre19/conf/msgq_to_server000066400000000000000000000001521130343226700172510ustar00rootroot00000000000000i This is use in ftok to generate a key_t for the message queue use to write to the server. See ftok(3). cinit-0.3pre19/conf/os000066400000000000000000000002401130343226700146310ustar00rootroot00000000000000linux Select the operating system compiling for. Current possibilities: - linux Currently Planned possibilities: - freebsd - openbsd - netbsd cinit-0.3pre19/conf/p_asciidoc000066400000000000000000000001661130343226700163140ustar00rootroot00000000000000asciidoc The binary on your system (with or without path) which does what I expect asciidoc todo. Default: asciidoc cinit-0.3pre19/conf/p_docbooktoman000066400000000000000000000001741130343226700172140ustar00rootroot00000000000000docbook2x-man The binary on your system (with or without path) which converts docbook to manpages. Default: docbook2x-man cinit-0.3pre19/conf/p_docbooktotexi000066400000000000000000000001751130343226700174130ustar00rootroot00000000000000docbook2x-texi The binary on your system (with or without path) which converts docbook to texinfo. Default: docbook2x-texi cinit-0.3pre19/conf/prefix000066400000000000000000000003001130343226700155020ustar00rootroot00000000000000 Where to install cinit. Normally this will be /, but you can put it anywhere. The subdirectory 'sbin' under this prefix must be readable by the kernel. This is normally either empty or "/". cinit-0.3pre19/conf/profile000066400000000000000000000004701130343226700156550ustar00rootroot00000000000000cprofile: The argument should be passed to cinit to recognize that a profile will follow. "cprofile:" is the standard, as the Linux kernel eats everything in the form 'var=parm'. The old (pre cinit-0.1) option "cprofile=" should therefore NOT be used. Under Linux you tell it the bootloader like grub or LILO. cinit-0.3pre19/conf/service_categories000066400000000000000000000002141130343226700200560ustar00rootroot00000000000000local-tuning local-services mount network remote-services List of directories normally created below /etc/cinit/svc/ as 'pseudo-services'. cinit-0.3pre19/conf/sleep_before_kill000066400000000000000000000003471130343226700176650ustar00rootroot00000000000000sleep_before_kill The file that specifies how long to sleep after sending SIGTERM, before sending SIGKILL to every process. If this file is non-existing the builtin value from 'sleep_kill'. The file should be located below conf/ cinit-0.3pre19/conf/sleep_kill000066400000000000000000000003771130343226700163460ustar00rootroot000000000000002 Seconds to sleep after sending SIGTERM, before sending SIGKILL to every process. 5 is a good working value, but makes me tired. Testing with 2 currently. Note: This does NOT affect terminating services, they are shutdown by their own 'off' functions. cinit-0.3pre19/conf/sleep_kill_svc000066400000000000000000000002551130343226700172140ustar00rootroot000000000000001 Seconds to sleep after sending SIGTERM, before sending SIGKILL to the service we are shutting down. This is only used for bringing down respawning processes. Default: 1. cinit-0.3pre19/conf/sleep_rerun000066400000000000000000000001371130343226700165400ustar00rootroot000000000000001 How many seconds to sleep before rechecking if the service was executed. Used by run_svc(). cinit-0.3pre19/conf/sleep_svc000066400000000000000000000001011130343226700161670ustar00rootroot000000000000005 How many seconds to sleep before respawning a failed process. cinit-0.3pre19/conf/sock_queue000066400000000000000000000001271130343226700163570ustar00rootroot0000000000000032 Maximum process waiting in the socket queue. The default is much more than enough. cinit-0.3pre19/conf/strip000066400000000000000000000001101130343226700153450ustar00rootroot00000000000000strip -R .comment -R .note Strip out unecessary parts of the binaries. cinit-0.3pre19/conf/sulogin000066400000000000000000000002741130343226700156770ustar00rootroot00000000000000/sbin/sulogin The path to sulogin. We'll execute it, if the standard panic action fails (as specified in cinit_dir/c_confdir/panic). If you need arguments, you tave to hack serv/panic.c cinit-0.3pre19/conf/svcdir000066400000000000000000000000741130343226700155070ustar00rootroot00000000000000svc Directory below /etc/cinit that contains the services. cinit-0.3pre19/conf/version000066400000000000000000000000411130343226700156740ustar00rootroot00000000000000"0.3pre19" The version of cinit cinit-0.3pre19/contrib+tools/000077500000000000000000000000001130343226700161405ustar00rootroot00000000000000cinit-0.3pre19/contrib+tools/Makefile000066400000000000000000000023011130343226700175740ustar00rootroot00000000000000# # (c) 2005 Peter Portmann (pp at bluewin.ch) # cinit/contrib+tools # # This script is written for the clinux-System and published # under the terms of GPL 2.0 # # Version: 0.2 # clean with a single command instead of two commands. # # ChangeLog: # 0.1 initial version # # Todo: # # Features: # # compile/link options # # do not use DEBUG and OPTIMIZE at the same time! #DEBUG=-DDEBUG #OPTIMIZE=-Werror DEBUG=-g -DDEBUG #OPTIMIZE=-pipe -Os -Werror # init should be static per default! LDFLAGS= # programs CC=gcc $(DEBUG) $(OPTIMIZE) $(TIMEME) CFLAGS=-Wall -I. -I../ LD=gcc STRIP=strip -R .comment -R .note INSTALL = install prefix = /usr bindir = $(prefix)/bin # objects CLIENT=cinit.graph.text.o COMMUNICATION=error.o usage.o mini_printf.o OBJ=$(CLIENT) $(COMMUNICATION) # PROGRAMS=cinit.graph.text SCRIPTS=cconfig.graph.xml.rb \ make.cconfig.from.xml.rb \ cinit-vis.pl # targets all: $(PROGRAMS) cinit.graph.text: $(OBJ) $(LD) $(LDFLAGS) $(OBJ) -o $@ $(STRIP) $@ clean: rm -f *.o $(PROGRAMS) install: all @echo '*** Installing contrib+tools ***' $(INSTALL) -d -m755 $(DESTDIR)$(bindir) for bin in $(SCRIPTS) $(PROGRAMS); do \ $(INSTALL) $$bin $(DESTDIR)/$(bindir); \ done cinit-0.3pre19/contrib+tools/README000066400000000000000000000006631130343226700170250ustar00rootroot00000000000000contrib+tools/ programs written by others and external tools not necessary needed but (very) nice to have cinit-vis.pl - draw an ascii graph of cinit configuration [perl] cinit.graph.text - draw an ascii graph of cinit configuration [c] cconfig.graph.xml.rb - creates a xml file from a cconfig [ruby] make.cconfig.from.xml.rb - creates a cconfig from a xml file [ruby] cinit-0.3pre19/contrib+tools/README.ruby000066400000000000000000000004161130343226700200010ustar00rootroot00000000000000The ruby tools for general cconfig [0] are written by René Nussbaumer [1]. You can find the documentation for them at [2]. [0]: http://nico.schotteli.us/papers/linux/cconfig/ [1]: http://killerfox.forkbomb.ch/ [2]: http://killerfox.forkbomb.ch/articles/cconfig/tools cinit-0.3pre19/contrib+tools/cconfig.graph.xml.rb000077500000000000000000000066751130343226700220150ustar00rootroot00000000000000#!/usr/bin/env ruby =begin Writes an XML-Tree for a cconfig directory Idea by Nico Schottelius aka telmich Implemented and (C) by René Nussbaumer aka KillerFox This script is written for the clinux-System and published under the terms of GPL 2.0 Version: 0.3 ChangeLog: Version 0.3 (René Nussbaumer): * Added support for binary files * Added sha1 checksum for binary files Version 0.2 (René Nussbaumer): * Changed checking order: symlink, directory, file. Because of a logical bug -> directory follows symlink so, when a symlink points to a directory no «link» element is created. Version 0.1 (René Nussbaumer): * Holy hack for directory scanning (needs to be optimized) * Hack for rexml to print out «lost» tags. This rexml sux. Todo: * Optimize scanning. * Use another xml library instead of rexml crap. Problem: Produce dependencies -> no std-lib Features: * Create a flat (no deepnes without directory) and 1:1 image of an cconfig directory =end require 'rexml/document' require 'base64' require 'digest/sha1' require 'filemagic' @version = '0.3' def determineTarget(entry) return 'external' if(!File.expand_path(entry).index(@initpath)) return 'link' if(FileTest.symlink?(entry)) return 'object' if(FileTest.directory?(entry)) return 'attribute' if(FileTest.file?(entry)) return 'unknown' # Should never be reached end def createTree(dir, parent) dir.each { |entry| next if(entry =~ /^(\.|\.\.)$/) if(FileTest.symlink?(entry)) e = parent.add_element('link') # Much fun with links e.add_attributes( { 'name' => entry, 'target' => determineTarget(File.readlink(entry)) } ) e.add_text(File.readlink(entry)) elsif(FileTest.directory?(entry)) e = parent.add_element('object') e.add_attribute('name', entry) # Bad, that we need to change the directory every time. oldPwd = Dir.pwd Dir.chdir(entry) createTree(Dir.new('.'), e) Dir.chdir(oldPwd) elsif(FileTest.file?(entry)) e = parent.add_element('attribute') e.add_attribute('name', entry) if(File.stat(entry).size?) # Yeah, we got one WITH content! W00h00, let's party. fm = FileMagic.new(FileMagic::MAGIC_MIME) if(fm.file(entry) =~ /executable/) e.add_attribute('type', 'binary') text = File.new(entry).read e.add_attribute('sha1', Digest::SHA1.hexdigest(text)) e.add_text(Base64.encode64(text)) else e.add_text(File.new(entry).read) end fm.close() end end } end if(!ARGV[0] || !FileTest.directory?(ARGV[0])) puts 'You need to specify a directory' Kernel.exit(-1) end doc = REXML::Document.new e = doc.add_element('cconfig') e.add_attribute('name', File.basename(ARGV[0])) e.add_attribute('version', @version) @initpath = File.expand_path(ARGV[0]) Dir.chdir(ARGV[0]) createTree(Dir.new('.'), doc.root) out = '' doc.write(out, 0, false, true) REXML::XMLDecl.new('1.0', 'utf-8').write($stdout) # This should automatically printed by rexml. Damn bugs. puts '' puts out # Workaround for a buggy rexml cinit-0.3pre19/contrib+tools/cinit-vis.pl000077500000000000000000000031121130343226700204020ustar00rootroot00000000000000#!/usr/bin/perl -w # (c) by Marcus Przyklink (downhill-clinux@burningchaos.org) # written for cinit and published under GPL # beautified a bit by Nico Schottelius # optimized by René Nussbaumer # Version: 0.1 use strict; use warnings; # # Variables for location and output # # cinit-directory my $path = "/etc/cinit/svc/"; # started profile my $starting_point = "init"; # the spaces for each level (integer: amount of spaces) my $space = 3; # marker for need my $need = "-->"; # marker for want my $want = "==>"; # # main function, recursively list the components of the cinit system # if (@ARGV) { if( $ARGV[0] =~ /-(h|-help)/ ) { print "Usage: " . __FILE__ . " without parameters for standard-use (check variables in file)\n"; print " Parameters:\n"; print " -h for this help\n"; print " profile-name for a profile\n"; exit(0); } else { $starting_point = $ARGV[0]; } } # # start first instance # sub get_deeper { my ($point, $tmp_counter, $need_want) = splice @_; print " " x ($space * $tmp_counter) . ($need_want ? $need : $want) . " " . $point . "\n"; opendir(DIR, "${path}${point}/needs") and my @next_need = sort grep(!/^\./, readdir(DIR)) and closedir(DIR); opendir(DIR, "${path}${point}/wants") and my @next_want = sort grep(!/^\./, readdir(DIR)) and closedir(DIR); for(@next_need) { get_deeper($_, $tmp_counter + 1, 1); } for(@next_want) { get_deeper($_, $tmp_counter + 1, 0); } } # # start first instance # get_deeper($starting_point, 0, 0); # # work done, go home # exit(0); cinit-0.3pre19/contrib+tools/cinit.graph.text.c000066400000000000000000000124711130343226700215020ustar00rootroot00000000000000/** (c) 2005 Peter Portmann (pp at bluewin.ch) cinit.graph.text.c This script is written for the clinux-System and published under the terms of GPL 2.0 Version: 0.2 ChangeLog: Version 0.2 (Peter Portmann): * Not assigned link destinies are marked by (!). * Not readable directories are marked by "directory not readable". Version 0.1 (Peter Portmann): * Print of the directory structure of the contained files and links without following the links. Todo: Features: */ //#include #include #include #include #include #include #include #include //#include "cinit.h" #include "error.h" #define FTW_F 1 /* file isn't a directory */ #define FTW_D 2 /* file is a directory */ #define FTW_DNR 3 /* not readable directory */ #define FTW_NS 4 /* unsuccesfully stat on this file */ #define MAX_CHAR 4096 /*********************************************************************** * cinit.graph.text - textual representation of the cinit directory */ #define CSERVICE_BANNER "cinit.graph.text - textual representatio of the cinit directory\n\n" #define USAGE_TEXT "\n\nUsage:\n\ncinit.graph.text \n" \ "\tpath\t- cinit installationpath\n" typedef int EACH_ENTRY(const char *, const struct stat *, int); typedef enum { FALSE=0, TRUE=1 } bool; static char dirpath[PATH_MAX]; static int depth = 0; static long int filecount = 0; static EACH_ENTRY each_entry; static int pp_ftw(char *, EACH_ENTRY *); static int each_getinfo(EACH_ENTRY *); /*********************************************************************** * pp_ftw: file tree walk */ static int pp_ftw(char *filepath, EACH_ENTRY *function) { int n; if(chdir(filepath) < 0) /* In angegebenen Pfad wechseln */ err_msg(FATAL_SYS, "can't change to %s", filepath); if(getcwd(dirpath, PATH_MAX) == 0) /* Absoluten Pfadnamen ermitteln */ err_msg(FATAL_SYS, "error using getcwd for %s", filepath); n = each_getinfo(function); return(n); } /*********************************************************************** * each_getinfo: get more info for each file. */ static int each_getinfo(EACH_ENTRY *function) { struct stat statpuff; struct dirent *direntz; DIR *dirz; int n; char *zgr; if(lstat(dirpath, &statpuff) < 0) return(function(dirpath, &statpuff, FTW_NS)); /* Error on stat */ if(S_ISDIR(statpuff.st_mode) == 0) return(function(dirpath, &statpuff, FTW_F)); /* no directory */ /* It's a directory. * Call function() for it. After that handel each file in the directory. */ if((dirz = opendir(dirpath)) == NULL) { /* Directory not readable */ closedir(dirz); return(function(dirpath, &statpuff, FTW_DNR)); } if((n = function(dirpath, &statpuff, FTW_D)) != 0) /* return the directorydirpath */ return(n); zgr = dirpath + strlen(dirpath); /* append slash to the dirpathname */ *zgr++ = '/'; *zgr = '\0'; while((direntz = readdir(dirz)) != NULL) { /* ignor . and .. */ if(strcmp(direntz->d_name, ".") && strcmp(direntz->d_name, "..")) { strcpy(zgr, direntz->d_name); /* append filename after slash */ depth++; if(each_getinfo(function) != 0) { /* Recursion */ depth--; break; } depth--; } } *(zgr-1) = '\0'; /* deleting evrything after the slash */ if(closedir(dirz) < 0) err_msg(WARNING, "closedir for %s failed", dirpath); return(n); } /*********************************************************************** * each_entry: handling each file and build the graph step by step. */ static int each_entry(const char *filepath, const struct stat *statzgr, int filetype) { struct stat statpuff; static bool erstemal=TRUE; int i; char link[MAX_CHAR]; filecount++; if(!erstemal) { for(i=1 ; i<=depth ; i++) printf("%4c|", ' '); printf("----%s", strrchr(filepath, '/')+1); } else { printf("%s", filepath); erstemal = FALSE; } switch(filetype) { case FTW_F: switch(statzgr->st_mode & S_IFMT) { case S_IFREG: break; case S_IFCHR: printf(" c"); break; case S_IFBLK: printf(" b"); break; case S_IFIFO: printf(" f"); break; case S_IFLNK: printf(" -> "); if(( i=readlink(filepath, link, MAX_CHAR)) != -1) printf("%.*s", i, link); if(stat(filepath, &statpuff) < 0) printf(" (!)"); break; case S_IFSOCK: printf(" s"); break; default: printf(" ?"); break; } printf("\n"); break; case FTW_D: printf("/\n"); break; case FTW_DNR: printf("/ directory not readable\n"); break; case FTW_NS: err_msg(WARNING_SYS, "Error using 'stat' on file %s", filepath); break; default: err_msg(FATAL_SYS, "Unknown Filetype (%d) by file %s", filetype, filepath); break; } return(0); } /*********************************************************************** * main: */ int main(int argc, char *argv[]) { if(argc != 2) usage(CSERVICE_BANNER, USAGE_TEXT); exit(pp_ftw(argv[1], each_entry)); } cinit-0.3pre19/contrib+tools/cinit.h000066400000000000000000000005651130343226700174250ustar00rootroot00000000000000/*********************************************************************** * * 2007 Nico Schottelius (nico-cinit //@\\ schottelius.org) * * part of cLinux/cinit * * Dummy header file to intgrate mini_printf and usage */ #ifndef CINIT_DUMMY_HEADER #define CINIT_DUMMY_HEADER void usage(char *banner, char *text); void mini_printf(char *str,int fd); #endif cinit-0.3pre19/contrib+tools/error.c000066400000000000000000000057071130343226700174460ustar00rootroot00000000000000/** (c) 2005 Peter Portmann (pp at bluewin.ch) error.c This script is written for the clinux-System and published under the terms of GPL 2.0 Version: 0.1 ChangeLog: Todo: Features: */ #include "error.h" #include #include #include #include #include #include #define MAX_CHAR 4096 int debug; /* Aufrufer von log_msg oder log_open muss debug setzen: 0, wenn interaktiv; 1, wenn Daemon-Prozess */ /*---- Lokale Routinen zur Abarbeitung der Argumentliste --------------------*/ static void msg_err(int sys_msg, const char *fmt, va_list az) { int fehler_nr = errno; char puffer[MAX_CHAR]; vsprintf(puffer, fmt, az); if (sys_msg) sprintf(puffer+strlen(puffer), ": %s ", strerror(fehler_nr)); fflush(stdout); /* fuer Fall, dass stdout und stderr gleich sind */ fprintf(stderr, "%s\n", puffer); fflush(NULL); /* alle Ausgabepuffer flushen */ return; } static void msg_log(int sys_msg, int prio, const char *fmt, va_list az) { int fehler_nr = errno; char puffer[MAX_CHAR]; vsprintf(puffer, fmt, az); if (sys_msg) sprintf(puffer+strlen(puffer), ": %s ", strerror(fehler_nr)); if (debug) { fflush(stdout); /* fuer Fall, dass stdout und stderr gleich sind */ fprintf(stderr, "%s\n", puffer); fflush(NULL); /* alle Ausgabepuffer flushen */ } else { strcat(puffer, "\n"); syslog(prio, puffer); } return; } /*---- Global aufrufbare Fehlerroutinen -------------------------------------*/ void err_msg(int kennung, const char *fmt, ...) { va_list az; va_start(az, fmt); switch (kennung) { case WARNING: case FATAL: msg_err(0, fmt, az); break; case WARNING_SYS: case FATAL_SYS: case DUMP: msg_err(1, fmt, az); break; default: msg_err(1, "Falscher Aufruf von err_msg...", az); exit(3); } va_end(az); if (kennung==WARNING || kennung==WARNING_SYS) return; else if (kennung==DUMP) abort(); /* core dump */ exit(1); } void log_msg(int kennung, const char *fmt, ...) { va_list az; va_start(az, fmt); switch (kennung) { case WARNING: case FATAL: msg_log(0, LOG_ERR, fmt, az); break; case WARNING_SYS: case FATAL_SYS: msg_log(1, LOG_ERR, fmt, az); break; default: msg_log(1, LOG_ERR, "Falscher Aufruf von log_msg...", az); exit(3); } va_end(az); if (kennung==WARNING || kennung==WARNING_SYS) return; exit(2); } /*---- log_open --------------------------------------------------------------- initialisiert syslog() bei einem Daemon-Prozess */ void log_open(const char *kennung, int option, int facility) { if (debug==0) openlog(kennung, option, facility); } cinit-0.3pre19/contrib+tools/error.h000066400000000000000000000007331130343226700174450ustar00rootroot00000000000000#ifndef ERROR_H #define ERROR_H /** (c) 2005 Peter Portmann (pp at bluewin.ch) error.h This script is written for the clinux-System and published under the terms of GPL 2.0 Version: 0.1 ChangeLog: Todo: Features: */ #define WARNING 0 #define WARNING_SYS 1 #define FATAL 2 #define FATAL_SYS 3 #define DUMP 4 void log_msg(int kennung, const char *fmt, ...); void err_msg(int kennung, const char *fmt, ...); #endif cinit-0.3pre19/contrib+tools/make.cconfig.from.xml.rb000077500000000000000000000145031130343226700225600ustar00rootroot00000000000000#!/usr/bin/env ruby =begin Create a cconfig directory based on a xml input. (C) 2005 by René Nussbaumer aka KillerFox This script is written for the clinux-System and published under the terms of GPL 2.0 Version: 0.3 ChangeLog: Version 0.3 (René Nussbaumer): * Added binary file support * Added sha1 checksum for binary files Version 0.2 (René Nussbaumer): * Added some commandline options * Added «level» so control the restrictivity of the program * Added more «intelligence» to the program, to detect internal broken dependcies. * Support «debug»-Levels. * Print statistic at the end of the programs about warnings and errors. Version 0.1 (René Nussbaumer): * Initial Todo: * Use an rexml alternative * Some cleanup * Optimize * Testing? Features: * Create a cconfig directory based on a xml =end require 'rexml/document' require 'getoptlong' require 'base64' require 'digest/sha1' @verbose = 0 @level = 1 @version = '0.3' @warnings = 0 @errors = 0 @checklist = Array.new def printMsg(prefix, msg) puts '%-12s %s' % [prefix + ':', msg] end def error(msg, fatal = 0) @errors += 1 fatal = 0 if(@level < 1) fatal = 255 if(@level > 1 && !fatal) printMsg(fatal != 0 ? 'PANIC' : 'ERROR', msg) Kernel.exit(-fatal) if(fatal != 0) end def warn(msg) error(msg, 1) if(@level > 1) @warnings += 1 printMsg('WARNING', msg) end def info(msg) printMsg('INFO', msg) end def debug(msg, verbosity = 1) if(@verbose >= verbosity) printMsg("DEBUG(#{verbosity})", msg) end end def createObject(name) error("#{name} already exists.", 1) if(FileTest.exists?(name)) begin Dir.mkdir(name) rescue error("Could not create directory #{name}: #{$!}. Abort.", 7) end debug("Object #{File.expand_path(name)} has been created.", 4) end def createAttribute(name, content = nil) warn("#{name} already exists. Overwrite.") if(FileTest.exists?(name)) begin file = File.new(name, 'w') file.print content if(content && !content.empty?) file.close debug("Attribute #{File.expand_path(name)} has been created", 4) rescue error("Could not create file #{name}: #{$!}. Skipped.") end end def createLink(name, target, type) warn("#{name} already exists. Overwrite.") if(FileTest.exists?(name)) error("Broken dependencies! Please take a look if #{target} exists on your system", 2) if(type == 'external' && !FileTest.exists?(target)) if(!FileTest.exists?(target) && type != 'external') #info("Possible break. But maybe the target #{target} does not yet exists. Checking later.") exptarget = File.expand_path(target) @checklist << exptarget debug("Adding #{target} to the list of internal dependcies to check.", 2) end begin error('You\'ve a system which does not support symbolic links. Abort.', 3) if(File.symlink(target, name) != 0) rescue error("Could not create symlink #{name} => #{target}: #{$!}.", 3) end debug("Link #{File.expand_path(name)} has been created", 4) end def doWork(elm) name = elm.name attrname = elm.attributes['name'] error("XML Tag with missing name attribute!", 5) if(!attrname) if(name =~ /(object|cconfig)/) if(name == 'cconfig') if(elm.attributes['version']) info("Found a version string: #{elm.attributes['version']}") warn("This XML is maybe incompatible with this programm. I'm a version #{@version} script. The XML is generated with a version #{elm.attributes['version']} script. Please update.") if(elm.attributes['version'] > @version) end end createObject(attrname) if(elm.has_elements?) pwd = Dir.pwd Dir.chdir(attrname) elm.each_element { |e| doWork(e) } Dir.chdir(pwd) end elsif(name == 'attribute') text = nil e = nil text = e.value if((e = elm.get_text)) if(text && elm.attributes['type'] && elm.attributes['type'] == 'binary') text = Base64.decode64(text) if(Digest::SHA1.hexdigest(text) != elm.attributes['sha1']) warn("SHA1 differs from file: #{Dir.pwd}#{attrname}") end end createAttribute(attrname, text) elsif(name == 'link') error("link-Tag without content.", 6) if(!elm.has_text?) error("link with missing target. Skipped.") if(!elm.attributes['target']) createLink(attrname, elm.get_text.value, elm.attributes['target']) end end puts "This is #{File.basename(__FILE__)} v#{@version} by René Nussbaumer" puts opts = GetoptLong.new( ['--verbose', '-v', GetoptLong::OPTIONAL_ARGUMENT], ['--level', '-l', GetoptLong::REQUIRED_ARGUMENT], ['--version', '-V', GetoptLong::NO_ARGUMENT] ) opts.each { |arg,value| case arg when '--verbose' @verbose += 1 value.each_byte { |x| if(x.chr == 'v') @verbose += 1 end } debug("Verbosity set to: #{@verbose}") when '--level' debug("Setting level to: #{value}", 3) case value when 'low' @level = 0 when 'normal' @level = 1 when 'paranoid' @level = 2 else warn('Unknown level: ' + value) end when '--version' Kernel.exit(0) else warn("Unknown option #{arg}#{value && !value.empty? ? ('with value ' + value) : ''}") end } if(!ARGV[0]) puts 'Need at least one argument' puts "Usage: #{__FILE__} " Kernel.exit(1) end filedesc = $stdin if(ARGV[0] != '-') filedesc = File.new(ARGV[0]) end doc = REXML::Document.new filedesc doWork(doc.root) if(!@checklist.empty?) info('Now checking all broken internal dependcies again') broken = 0 @checklist.each { |path| debug("Checking #{path}.", 2) if(!FileTest.exists?(path)) broken += 1 warn("Broken dependcies. #{path} does not exist. Please fix.") end } info('Looks good.') if(broken == 0) info('Bad, bad.') if(broken > 0) end info("Successed. #{@warnings} warnings, #{@errors} errors") cinit-0.3pre19/contrib+tools/mini_printf.c000077700000000000000000000000001130343226700257152../src/generic/mini_printf.custar00rootroot00000000000000cinit-0.3pre19/contrib+tools/usage.c000077700000000000000000000000001130343226700232712../src/generic/usage.custar00rootroot00000000000000cinit-0.3pre19/doc/000077500000000000000000000000001130343226700141115ustar00rootroot00000000000000cinit-0.3pre19/doc/.buildwarn000066400000000000000000000010571130343226700161040ustar00rootroot00000000000000 Welcome to the cinit ******************** Hints: ------ - Settings can be found in conf/* (also used for compiling) - Cinit configuration is normally found in /etc/cinit Documentation ------------- The documentation can be found in doc/: - doc/user/ contains documentation for users - doc/devel/ contains documentation for developers Please read doc/user/installing-cinit.text BEFORE installing. Building cinit -------------- "make all" - to build cinit "make install" - to install cinit, documentation and core tools cinit-0.3pre19/doc/COPYING000066400000000000000000001045131130343226700151500ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . cinit-0.3pre19/doc/CREDITS000066400000000000000000000016441130343226700151360ustar00rootroot00000000000000-------------------------------------------------------------------------------- Credits - People contributed to cinit Nico Schottelius, 2005-05-17 (Last Change: ls -l) -------------------------------------------------------------------------------- The following list is sorted chronological, new contributors are added at the end of the list. René Nussbaumer * helping with the general IPC idea * testing and proof-reading code Marcus Przyklink * coding linear lists, making MAX_SVC obsolete * providing cinit-vs.pl to visualize the cinit-tree Matteo Croce * finding good strip parameters to save about 30KiB (on glibc) Sandro Koechli * testing, testing and testing cinit and cinit documentation Marcus Wagner * building and maintaining the Debian package Peter Portmann * testing cinit and documentation, writing cinit.graph.text in C, other coding Tonnerre Lombard * NetBSD support (host + hints) cinit-0.3pre19/doc/Makefile000066400000000000000000000050201130343226700155460ustar00rootroot00000000000000# # Makefile stolen from ccollect # Nico Schottelius, Fri Jan 13 12:13:08 CET 2006 # A2X=a2x ASCIIDOC=asciidoc DOCBOOKTOTEXI=docbook2x-texi DOCBOOKTOMAN=docbook2x-man XSLTPROC=xsltproc XSL=/usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl # # Asciidoc will be used to generate other formats later # MANDOCS = man/cinit.text man/halt.kill.text man/poweroff.kill.text \ man/reboot.kill.text man/cmd.text USERDOCS = user/compiles.on.text user/configuring.cinit.text \ user/conf-system.text \ user/cross-compiling.text user/current-init-problems.text \ user/daemons.backgrounding.text user/dependencies.text \ user/example-directory-structure.text \ user/installing-cinit.text user/paths.text \ user/profiles.text user/README.text DEVELDOCS = devel/codingguideline.text DOCS = $(MANDOCS) $(USERDOCS) $(DEVELDOCS) # # Doku # HTMLDOCS = $(DOCS:.text=.html) DBHTMLDOCS = $(DOCS:.text=.htm) #TEXIDOCS = $(DOCS:.text=.texi) MANPDOCS = $(MANDOCS:.text=.man) DOCBDOCS = $(DOCS:.text=.docbook) DOC_ALL = $(HTMLDOCS) $(DBHTMLDOCS) $(TEXIDOCS) $(MANPDOCS) # # End user targets # help: @echo "----------- documentation make targets --------------" @echo "documentation: generate HTML, Texinfo and manpage" @echo "html: only generate HTML (via asciidoc/docbook/xsltproc)" @echo "htm: only generate HTML (via asciidoc)" @echo "info: only generate Texinfo" @echo "man: only generate manpages" @echo "pdf: only generate pdfs (requires: fop)" install: $(DOC_ALL) @echo "===> Copy " man/*.[0-9] "to the correct manpaths" # # Internal targets # html: $(HTMLDOCS) htm: $(DBHTMLDOCS) info: $(TEXIDOCS) man: $(MANPDOCS) documentation: $(DOC_ALL) # # Generic targets # # docbook gets .htm, asciidoc directly .html (or the other way round) %.html: %.docbook ${XSLTPROC} -o $@ ${XSL} $< %.htm: %.text ${ASCIIDOC} -n -o $@ $< %.docbook: %.text ${ASCIIDOC} -n -b docbook -o $@ $< %.texi: %.docbook ${DOCBOOKTOTEXI} --to-stdout $< > $@ %.mandocbook: %.text ${ASCIIDOC} -b docbook -d manpage -o $@ $< #%.man: %.mandocbook # ${DOCBOOKTOMAN} --to-stdout $< > $@ %.man: %.text ${A2X} -f manpage $< %.pdf: %.text ${A2X} -f pdf $< # # Distribution # clean distclean: rm -f $(DOC_ALL) rm -f man/*.texi man/*.xml man/*.[0-9] rm -f */*.docbook # # Be nice with the users and generate documentation for them # dist: distclean documentation cinit-0.3pre19/doc/README.text000066400000000000000000000024521130343226700157570ustar00rootroot00000000000000cinit documentation ==================== Nico Schottelius 0.1, Initial Version from 2006-11-30 :Author Initials: NS This directory contains the cinit documentation. Files and directories in this directory ---------------------------------------- changes/ ~~~~~~~~ Changelogs from this and previous releases. devel/ ~~~~~~ Developer related documents. Contains information for adding code, for developing external tools to cinit or code guidelines for writing patches to cinit. examples/ ~~~~~~~~~ Example configurations to start with. man/ ~~~~ Manpages for cinit and the utilities. todo/ ~~~~~ Stuff that should be done, that has not yet been migrated to ditz. user/ ~~~~~ The most important part: Documentation for users (aka sysadmins, hackers, endusers?): Explains howto install, configure, use and debug cinit. do-not-read/ ~~~~~~~~~~~~ Stuff that is only kept for various strange reasons. Do not read it. do-not-read/ancient ^^^^^^^^^^^^^^^^^^^ Old documents, only thought to irritate you. They are not interesting for most people and may contain obsoleted or wrong information. do-not-read/braindumps ^^^^^^^^^^^^^^^^^^^^^^ Files I used to make the situation clear to myself. They are not interesting for most people and may contain obsoleted or wrong information. cinit-0.3pre19/doc/changes/000077500000000000000000000000001130343226700155215ustar00rootroot00000000000000cinit-0.3pre19/doc/changes/0.1000066400000000000000000000000571130343226700157440ustar00rootroot00000000000000* Initial release * Support for adding getties cinit-0.3pre19/doc/changes/0.3pre15000066400000000000000000000001531130343226700166200ustar00rootroot00000000000000Released: 2009-09-23 Changes: * Changed child handling (no function calls in sig_child handler anymore) cinit-0.3pre19/doc/changes/0.3pre16000066400000000000000000000002731130343226700166240ustar00rootroot00000000000000Released: 2009-09-29 Changes: * Re-integrated cinit-conf * Merged READE and cinit website * Cleaned up bin/: Executables can now be installed * Cleaned up top level directory cinit-0.3pre19/doc/changes/0.3pre17000066400000000000000000000001531130343226700166220ustar00rootroot00000000000000Released: 2009-10-05 Changes: * Populated bin/ with a lot of scripts to migrate ubuntu/upstart to cinit cinit-0.3pre19/doc/changes/0.3pre18000066400000000000000000000002711130343226700166240ustar00rootroot00000000000000Released: 2009-11-05 Changes: * Added script to partially migrate Ubuntu Jaunty almost completly to cinit * Added script to create minimal configuration (cinit-conf.config.shell) cinit-0.3pre19/doc/changes/0.3pre19000066400000000000000000000003741130343226700166310ustar00rootroot00000000000000Released: 2009-11-26 Changes: * Add install target for bin/ * Consistent naming in bin/ (conf, cmd, helper) * Cleanup up some cinit-conf scripts * Cleanup documentation directory * Cleanup scripts directory * Cleanup src installation cinit-0.3pre19/doc/changes/00-before-0.3pre15000066400000000000000000000102241130343226700202750ustar00rootroot00000000000000cinit-0.3pre14: 2008-03-17 - Added test-suite for cmd - Added support to shutdown services in cinit and cmd (without needs and wants) - Added linux-sysvinit wrapper for shutdown (See scripts/wrapper/linux-sysvinit/shutdown) - Rewrote most parts of cmd (to make it more beautiful) - Changed license to GPL 3.0 cinit-0.3pre13: 2007-09-26 - Added -V (get cmd version), -h (help), -p (get pid) to cmd - Cleaned up namemsage in msgq.h - Added global service lock - Splitted of svc.h to svc.h, svc-intern.h and svc-messages.h - Prepared logic splitoff from cinit_ipc_listen() - Fixed bug: fork() has a general race condition (see src/test/fork-latency.c) through use of global lock cinit-0.3pre12: 2007-09-06 - Added DESTDIR support - Added support to get service status via cmd: cmd -s * also supports relative paths to CINIT_DIR ("/etc/cinit") - Fixed git clone problem: hooks are needed for dumb git - Fixed bug: We did not wait for services to finsh, which we depend on being ran once. cinit-0.3pre11: 2007-09-01 - Added basic communication: * client binary "cmd" with argument -v returns cinit-version - Updated {halt,reboot,poweroff}.kill cinit-0.3pre10: - Fixed make install target - Added halt.kill, poweroff.kill and reboot.kill (including manpages!) - Fixed invalid comparision in core/cinit.c - Be verbose: Print what we execute - Updated documentation cinit-0.3pre9: 2007-05-15 - Implemented sleeping before respawn (static delay) - Report broken links on execution, but ignore empty services - Cleaned up message queue error reporting cinit-0.3pre8: 2007-04-06 - Updated and merged documentation: Codingstyle and Codingguide - Cleaned sigaction-code (fixes segfault on glibc) - Cleaned object listings - Added notifications at shutdown - Fixed status check cinit-0.3pre7: 2007-02-17 - Many code cleanups - Fixed glibc problem with sigaction (for details view src/core/set_signals.c) - Added general shutdown support (will *NOT* yet stop services, but still stop your system) cinit-0.3pre6: - Many code cleanups - Added user documentation and cleaned up documentation in general cinit-0.3pre5: - Finished new SIGCHLD handler - First cleanups for real release. - This version is the first 0.3pre version that can handle respawn! cinit-0.3pre4: - Re-implemented execution of services. - This version is the first 0.3pre version that COULD bootup your system! cinit-0.3pre3: - Finished execution all services via the reversed service tree. cinit-0.3pre2: - Finished generation of the dependency tree. cinit-0.3pre1: - cinit should now compile on mostly all unices - introduced much new code - THIS IS A DEVELOPER RELEASE, NOT USABLE IN PRODUCTION ENVIRONMENTS. cinit-0.2.1: (Bugfix release) - Fixed problem in contrib+tools/Makefile when installing - added many new scripts to convert sys-v-init, which are still early beta (see bin/cinit.merge.sysvinit-debian-sid) cinit-0.2: - Much more verbose error reporting - You can now also disable 'once ran' services, - You can restart services with csevice -r - Online speech in German is available - C_DELAY support - variable delay for sending SIGKILL after SIGTERM - First /etc/csys configuration example (wasserstoff) is available - a Mailing list was created - Added tools to analyze cinit configuration (cinit-vis.pl, cinit.graph.text.c) - Added tools to import and export configuration to XML (make.cconfig.from.xml.rb,cconfig.graph.xml.rb) - Removed unecessary signalling - Added many helper scripts to install services (cinit.install.service*) - Fixed many small bugs in old helper scripts (cinit.add.getty, cinit.get-conf, ...) - Added ccontrol, which allows to control cinit - Added update (-u) via ccontrol - Stripped cservice, which now "only" controls services - Removed swapoff from cinit code, should be handled by off - Much better error and processing descriptions - A bit more verbose reporting - Restructured run_svc, now with better error detection - Removed Kernel panic, when halting system cinit-0.3pre19/doc/devel/000077500000000000000000000000001130343226700152105ustar00rootroot00000000000000cinit-0.3pre19/doc/devel/Doxyfile000066400000000000000000000261011130343226700167160ustar00rootroot00000000000000# Doxyfile 1.5.6 #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = cinit PROJECT_NUMBER = 0.3pre15 OUTPUT_DIRECTORY = /home/user/nico/oeffentlich/computer/projekte/cinit/doxygen CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English BRIEF_MEMBER_DESC = YES REPEAT_BRIEF = YES ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the ALWAYS_DETAILED_SEC = NO INLINE_INHERITED_MEMB = NO FULL_PATH_NAMES = YES STRIP_FROM_PATH = /home/user/nico/oeffentlich/computer/projekte/cinit/cinit/src STRIP_FROM_INC_PATH = SHORT_NAMES = NO JAVADOC_AUTOBRIEF = NO QT_AUTOBRIEF = NO MULTILINE_CPP_IS_BRIEF = NO DETAILS_AT_TOP = NO INHERIT_DOCS = YES SEPARATE_MEMBER_PAGES = NO TAB_SIZE = 3 ALIASES = OPTIMIZE_OUTPUT_FOR_C = YES OPTIMIZE_OUTPUT_JAVA = NO OPTIMIZE_FOR_FORTRAN = NO OPTIMIZE_OUTPUT_VHDL = NO BUILTIN_STL_SUPPORT = NO CPP_CLI_SUPPORT = NO SIP_SUPPORT = NO IDL_PROPERTY_SUPPORT = YES DISTRIBUTE_GROUP_DOC = NO SUBGROUPING = YES TYPEDEF_HIDES_STRUCT = NO #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- EXTRACT_ALL = YES EXTRACT_PRIVATE = YES EXTRACT_STATIC = YES EXTRACT_LOCAL_CLASSES = YES EXTRACT_LOCAL_METHODS = NO EXTRACT_ANON_NSPACES = NO HIDE_UNDOC_MEMBERS = NO HIDE_UNDOC_CLASSES = NO HIDE_FRIEND_COMPOUNDS = NO HIDE_IN_BODY_DOCS = NO INTERNAL_DOCS = NO CASE_SENSE_NAMES = YES HIDE_SCOPE_NAMES = NO SHOW_INCLUDE_FILES = YES INLINE_INFO = YES SORT_MEMBER_DOCS = YES SORT_BRIEF_DOCS = NO SORT_GROUP_NAMES = NO SORT_BY_SCOPE_NAME = NO GENERATE_TODOLIST = YES GENERATE_TESTLIST = YES GENERATE_BUGLIST = YES GENERATE_DEPRECATEDLIST= YES ENABLED_SECTIONS = MAX_INITIALIZER_LINES = 30 SHOW_USED_FILES = YES SHOW_DIRECTORIES = NO SHOW_FILES = YES SHOW_NAMESPACES = YES FILE_VERSION_FILTER = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- QUIET = NO WARNINGS = YES WARN_IF_UNDOCUMENTED = YES WARN_IF_DOC_ERROR = YES WARN_NO_PARAMDOC = NO WARN_FORMAT = "$file:$line: $text" WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- INPUT = /home/user/nico/oeffentlich/computer/projekte/cinit/cinit/src INPUT_ENCODING = UTF-8 FILE_PATTERNS = *.c \ *.cc \ *.cxx \ *.cpp \ *.c++ \ *.d \ *.java \ *.ii \ *.ixx \ *.ipp \ *.i++ \ *.inl \ *.h \ *.hh \ *.hxx \ *.hpp \ *.h++ \ *.idl \ *.odl \ *.cs \ *.php \ *.php3 \ *.inc \ *.m \ *.mm \ *.dox \ *.py \ *.f90 \ *.f \ *.vhd \ *.vhdl \ *.C \ *.CC \ *.C++ \ *.II \ *.I++ \ *.H \ *.HH \ *.H++ \ *.CS \ *.PHP \ *.PHP3 \ *.M \ *.MM \ *.PY \ *.F90 \ *.F \ *.VHD \ *.VHDL RECURSIVE = YES EXCLUDE = /home/user/nico/oeffentlich/computer/projekte/cinit/cinit/src/ancient/ \ /home/user/nico/oeffentlich/computer/projekte/cinit/cinit/src/test/ EXCLUDE_SYMLINKS = NO EXCLUDE_PATTERNS = EXCLUDE_SYMBOLS = EXAMPLE_PATH = EXAMPLE_PATTERNS = * EXAMPLE_RECURSIVE = NO IMAGE_PATH = INPUT_FILTER = FILTER_PATTERNS = FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- SOURCE_BROWSER = YES INLINE_SOURCES = NO STRIP_CODE_COMMENTS = YES REFERENCED_BY_RELATION = YES REFERENCES_RELATION = YES REFERENCES_LINK_SOURCE = YES USE_HTAGS = NO VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- ALPHABETICAL_INDEX = NO COLS_IN_ALPHA_INDEX = 5 IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- GENERATE_HTML = YES HTML_OUTPUT = html HTML_FILE_EXTENSION = .html HTML_HEADER = HTML_FOOTER = HTML_STYLESHEET = HTML_ALIGN_MEMBERS = YES GENERATE_HTMLHELP = NO GENERATE_DOCSET = NO DOCSET_FEEDNAME = "Doxygen generated docs" DOCSET_BUNDLE_ID = org.doxygen.Project HTML_DYNAMIC_SECTIONS = NO CHM_FILE = HHC_LOCATION = GENERATE_CHI = NO CHM_INDEX_ENCODING = BINARY_TOC = NO TOC_EXPAND = NO DISABLE_INDEX = NO ENUM_VALUES_PER_LINE = 4 GENERATE_TREEVIEW = NONE TREEVIEW_WIDTH = 250 FORMULA_FONTSIZE = 10 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- GENERATE_LATEX = YES LATEX_OUTPUT = latex LATEX_CMD_NAME = latex MAKEINDEX_CMD_NAME = makeindex COMPACT_LATEX = NO PAPER_TYPE = a4wide EXTRA_PACKAGES = LATEX_HEADER = PDF_HYPERLINKS = YES USE_PDFLATEX = YES LATEX_BATCHMODE = NO LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- GENERATE_RTF = NO RTF_OUTPUT = rtf COMPACT_RTF = NO RTF_HYPERLINKS = NO RTF_STYLESHEET_FILE = RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- GENERATE_MAN = YES MAN_OUTPUT = man MAN_EXTENSION = .3 MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- GENERATE_XML = NO XML_OUTPUT = xml XML_SCHEMA = XML_DTD = XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- GENERATE_PERLMOD = NO PERLMOD_LATEX = NO PERLMOD_PRETTY = YES PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- ENABLE_PREPROCESSING = YES MACRO_EXPANSION = NO EXPAND_ONLY_PREDEF = NO SEARCH_INCLUDES = YES INCLUDE_PATH = INCLUDE_FILE_PATTERNS = PREDEFINED = EXPAND_AS_DEFINED = SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- TAGFILES = GENERATE_TAGFILE = ALLEXTERNALS = NO EXTERNAL_GROUPS = YES PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- CLASS_DIAGRAMS = NO MSCGEN_PATH = HIDE_UNDOC_RELATIONS = YES HAVE_DOT = YES DOT_FONTNAME = FreeSans DOT_FONTPATH = CLASS_GRAPH = YES COLLABORATION_GRAPH = YES GROUP_GRAPHS = YES UML_LOOK = NO TEMPLATE_RELATIONS = NO INCLUDE_GRAPH = YES INCLUDED_BY_GRAPH = YES CALL_GRAPH = NO CALLER_GRAPH = NO GRAPHICAL_HIERARCHY = YES DIRECTORY_GRAPH = YES DOT_IMAGE_FORMAT = png DOT_PATH = DOTFILE_DIRS = DOT_GRAPH_MAX_NODES = 50 MAX_DOT_GRAPH_DEPTH = 1000 DOT_TRANSPARENT = YES DOT_MULTI_TARGETS = NO GENERATE_LEGEND = YES DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- SEARCHENGINE = NO cinit-0.3pre19/doc/devel/README.text000066400000000000000000000006171130343226700170570ustar00rootroot00000000000000cinit/doc/devel =============== Nico Schottelius 0.1, Initial Version from 2006-07-09 :Author Initials: NS This directory contains cinit development documents. Introduction ------------ This file describes the related documents in the current directory. Who should read those documents? -------------------------------- (cinit-)developers. Content ------- cinit-0.3pre19/doc/devel/cinit-0.4.text000066400000000000000000000052431130343226700175270ustar00rootroot00000000000000cinit 0.4 - Redesign of cinit ============================================ Nico Schottelius 0.4.0, for cinit 0.4, Initial Version from 2006-03-11 :Author Initials: NS cinit 0.2 ran fine and the general project of developing a parallel executing init system is finished. With cinit 0.4 there are new aims to reach. Introduction ------------ . AIMS - portability: no Linux-dependency anymore - cleaner signal handling - better documentation so more people can use it Current problems ---------------- Temporary filesystem and socket problematic ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The mount(2) system call is os-specific. The temporary fs is os-specific. Signal handlers are not clean ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Race conditions when multiple signals arrive Reboot code is os specific ~~~~~~~~~~~~~~~~~~~~~~~~~~ serv/sig_reboot.c contains umount, remount hard coded. Solutions --------- Temporary filesystem and socket problematic ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Remove - the mount call - do not create an initial socket Wait until we recieve a signal, then we create a socket under the configured socket directory (see `conf/sockdir`). Signal handlers are not clean ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Reboot code is os specific ~~~~~~~~~~~~~~~~~~~~~~~~~~ Misc ~~~~ - Configuration /etc/cinit/config/ init -> link to initial service pre_boot pre_boot_args post_boot post_boot_args /etc/cinit/services/ /etc/cinit/profiles/ links to the starting services cinit - Internals ================= Nico Schottelius 0.1 for cinit-0.3, Initial version: So Feb 19 10:25:46 CET 2006 :Author Initials: NS Introduction ------------ This document describes the internals of cinit. It is thought to be read by developers. Child handler code in cinit-0.3 ------------------------------- In cinit versions <= cinit-0.2.1 the respawning services where handled by an extra child handler, which was a fork of cinit. This had some problems: - We allocated more memory than necessary, unecessary parts of cinit were copied - The SIG_CHILD-handler was not written very clean, in some versions it was completly missing. . So in `cinit-0.3` we changed it the following way: - no extra child handlers - handle everything in the SIG_CHILD handling function - when sig_child is recieved do: - check against respawn list - if it is a respawning service, [do the following in a seperate fork?] check whether it successfully stoped - if yes: restart immediatly - if no: sleep $sleep_time and then restart cinit-0.3pre19/doc/devel/cinit-status-translation.dia000066400000000000000000000117421130343226700226570ustar00rootroot00000000000000‹í]msÛF’þî_ÁR¾ÜUQãyÌrí-'ÑÞ¦vÏvÅNíGDÂ.¡!˺ںß~ÓPâ;A †äa%aH5ÑDs¦»Ÿ~›?ÿåÛítð5Éçi6{sF>$³q6Ig×oÎ~ûü×óèì/o_ýy’Æ2ÿ^çñíÀ|b6‡WoÎnŠâîO¯_?<< éã<.²MÓ{4O^ÿ_<Ư Ñë³·¯ƒå Lâ"†÷ªwã¢ÈÓ«û"ÌâÛäÍÙU<þý:Ïîg“³’ª¢gÓ,|§oÎ~øbg¯«Ë¼^¹ÎžkßÅ×ÉUžÄ¿ï¾46­›\ú.É×/{{—ÍSCR<Þmì¸üw‰¦¢š¢ÙõÛÞñʯT½ñ|­m_t'“â6ίÓÙ&#›i)Š"J©†Ð‘ÆŠ+²Éñì®NËnzZvùiÙ¥óË»,/ò8-6Y^eÙ4‰g%×"¿Ošó™ã©YbûnËá.¾¤E‘øþ_âé¼Î ”o?í¶cwîužNöoÜŠWyH'ÅÍå7Oâ*¯þèéê_Óyz5M¶}ûtV´vùÇv.¿þëXíýüqÇÕP^m§y˜D‰HÄñæáú>$óËl•fÇ•n*²×‡¤¾NWW0å[kÆÚ²˜ÆI¾Ðé™ÙÀ·gƒêÇ]Ö6´?>›ô5úA<.Ò¯‹WKòË®þ'•`>ñlç“Áùàsò­8[rXÎéäÍÙ¼*ÙuY˜«¥¹!Ú»ìiý $Åðœ !Ö¶©nvq¸ºZg›{ˆg×Ód™ EŒ)1¢a,YC–ˆâÀÞX£Ù¥ê­3±B·æwü”ÎÒb0Oò¯é8Ì‹¸¸ŸŒ šÍ§qa~‰Y+w7;|“=z—uÈfŶ¯ï¾Ä·éôñÍÙm6Ëæwñج¢yñKÊ8¯åçÊîó4É—÷Èñ_â&I¯o¶~%¥‹°ˆcTS‰×T¹ñ\]¤ujN«zn3Œ±#ãE\Ïn“í?h2»¿-yÕå²U‹·q¾Ú¯´¾už¿ ;°Ë7K µKeýößÿ0ÚÊ(.Ãõs’ß.é,\é,⪳G|Èüª,à `2"q1äH6ãv›ñ!m5IÇE³«'Óäörœå³M€ÕžÀ,ë‰m m‹vô¥7N;×6^|r »ú>ßüvïõcX|I§Ó,Vaûq, ìù’Îâéúõ÷!ÇÝû£±oã›-;—:ï\†ôP!¯—Ì©™áÂqÒ°}µÂj¨‘0O¤Ç›ØIvuö0õ¸‡éw±‡ëï±ÏàC¦àB.í3Zí3Ö‚…Ô`²0^vÌ|IFR Lؘ X¡]ÝgY^Ü\Z)/;Gº•}[‡æèûÊŒã?+v;wxƒÿóßÈž¿a‡ïß™¿E²×x­†ëŽE‚žµÃ yu}½©út+¸<æújÈfÞ.}çoW¯„siê°€/×(£f¿„½•Ú¬„ «I ºÔü.—éÌèÿ"™8;xOËr6+/=ßX°‹¿ nâÙ¤Š™Ådƒç¿¾9‹6–ϒê³tõ³d3ò¶ö…êXÉá/îl$åû4ŽÒXFŽÅˆb¤™IíAÌkíïͬËÓ·æÆ-ÚŒký-™~MŠtûlaáÕ÷ÚZ]ˆ!¨Õå ÖT,\³ê|‚bpÑ-“!ˆ2j^P¤ú‹…$V +D"*–”€×øоç×Ió9¿¼ÿåóå'óÏß.?¼ÿé"7ßÆÍ ZM@á¤ù ËÝÓ™9ó]òÇKÏPn’ùæ|K‹Öx¸›néŽ!Ö´J¿é(×|°M¡©¬Xô8¤í.½:Æ;¬Š´³Ï1ŒüfÑL¨°!8¡¬‹ŠqŸ’úó›ì~:äÉü.~˜å=·¿eaÕCEœ[í(ô‘xVQÐP„"Fú«¡®l»øõƒl6N‚¦òØÝ\žAQu´io”´Ñ`§Aq0¿½Üv Œ(AÌf ({Þ9°&¶ÝDrÑ"ÉR“̦…% ñÏÿ ñÏÆñO…8‰ˆ1Äwð³â¤›rêHìs¿”>â—¥¡{c2Òâq[¹{7*AbHØJ»};GÀΗ‘ùÝ!Y%zÝJî(³:õ:RËêu^B½ÎÅ·dlé“d2€Î{èÉŽ°€tI¨»=ŒéÚ_Ì=«V5PPƒ>M“4+£*Í6OzC„]0Tô„íßR¶VÊÖº£Ð"Ä MØEuE-*Û <ÔèÏHê‰uàÖ±JáЊMÖÊPp‹Pl¿ÙsîÆ~ŠeÙž¯ˆLÁÔ³@1Uê9úØo³·S|{Hš=ƒWƒÙ f/˜½ƒ†Èì)VuEH£U<›½'nÔ[ÇÌžlÑìÑÍÞÎaxD´0 ºô[@i¸P¥ðæÙöP¬†$2>V½ˆç&¾0¯G3ñˆl!«Ílø]xÞnÒ8“#;"Ê,ήî±Ú)íM™¹’ɵ‚ÝZda ^pJƒSz\F›¡¨¬÷Ð.5NlvmÞš;)òE…qxûÇXçžWôbfQÛb؈8žZ‰!%ka»à~ºˆ¬ÞÔŠˆ«0‚êÅeÁÿ=xš[ñþââçË¿¾ûå?‡tø)Òá”E v° ñ0¹¢s“+HÔļG”D$õ)ZGu+㮵è=Öê¡S¨¹÷C„ pŽ#Õ\‹ï²; Þ€zÛB½¬ÔNjeÛyƒ¾–[äÀ­køW8 ³0Xô™fAÜ{È1Dluã2€z¶Ó2c0§Ö”ð^thf³d`TÝm–W5¼O¤Ó0!þØeËÒ Í™=ì"§¸…H¢rH©_ÿ™ .5­^F½j&H§ÓÁ,+–ÚɃ¶ò­­¶/Ñ ¯:ÚL¾§ÇŽ’z옢jHyÓsÝ.;FK6J@£Ö˜iórGzíeW¯ÛNJÅõóC„<ÃKê¶{ˆgEè¶;Ezb)†T (¤NÖoGiKU˜Ê¯?-‘ûd{F†%ãD{,ß&µm :R•·]‹Îlu mÒ}G¥aaÚIˆ’·Ô§GìFÂæYxïÒ+y‘æ¼:!ÇG—Jv†×ý6éQ÷sÅÅ)l%p©,¥Y3Ôâ:ÙtY'Œ¥¨e,í©c-„àkî5—E›tÁ\sÌåÑý}²²—” ÿí}²2˜™uÜ`Ò¶«¢Ÿ“üv[Ó½1]—¡E¨Íñ9¹WCŠÅ²‰Äˆá è`¤{Át—]¦×Âèï9\™Î/¿¤³xê¬:Úr`E ç(­"»¯üž`Ù˜çh›@3Þݽ\Ó‰Ý*ºæt ÝÐŒ.´6ø°Çù° ‰©­7óíÁV¬Ìžå/ÃUã)Œºòaqš¹T¶PYÆ"ä¹&2¢%.FD"™Wà÷9yï,»:®¯DX®ä9CòþE%ï«:¶¾÷ž¾gHcØ®‰¾?]ú^µ¾×U†€úíy#² ¥Sa‡»TKˆ^'ñ·ÈnZ1É{vQmÂæžEèv  .€:(%"UŠOøïu+yÉÆ¼:vr •þ†µìH#÷“mª€Á‘m^¤˜h |LäˆqÆÉq$z=9Ð]~at`FRçÖPÔ†$ˆç-§T‰BhDÙH iùRÔc/s—ðvSÂHnº÷=Víàú”º2xšÁÓ ž&CR3-@7E+{΋¯¹àư·Ž%8s˜+h¼Æ“Ïd-t+³Jû ¿ÝÊ6E llóŸP ¼TÞçé‚®‚«ã¢*$Ùr럎Búà…Íüðþ§‹Ë„d43cºÂ{a¾`÷æ 2çn~^)æ7ðÄ˦@wbd-!—À´ÏåsÛE·I!BÛ¤³®Q)>.BH@À7ï™”•ZÒþ[&qåþÉ_F È:€¥Ç _ƒD½1¿ý:8¥¯Ø²ÆíêuÌå9L-ÙH12¼Ì‚¢Çås7c߃eüàïK„¿0b?`ßø›-Ë#;ƒ+”ÐÜAÌÚª¼ð €Ï âJQcÄG´ m÷ýÒšè×èCGë‚›s€®TJôÐo@¿Ñï9L#€§ö>2è‰YÔœYÇñïQ3ƒØî#éüá_ÞB·µ°XÊä…ß~kA+FØØL…0/KŽ8îsY ò«ƒ9Y9jŽüpð þõâÓÇwÿ|ÿËûÿ 0Ø7 ¦©HÚ:)Pp@ÁÝCÁîST$Ò¬jÑöiÕ%ÔþÙn2cí)Ær[Øã¦»­ÂÛBgîšaR›Îè~àøuë%ñ Ê0K%€á†k»SˆÚM!¦¼£á'nÚ[×àðZë: ó?æ9æ3&j’ ‚â:…âÚµVƒêêß©sÌ}@‡ Ú6ëëYu'Zq"\À°×HÁôS…pãVñNÌHhC„õΟ#b¥/$^Dòáã²Y Ð{ÚA!*0³³¼Â»ÓM°cÎÃEžF¼ök¬( 8Ý.ÁXq¤¬ñ‚ü2ïsyÙ.î!Ýôýx-N Añïò€qŠhµµãÞOÉYp“Ü:ß×®ß]`æ÷\9Ž[8c'¢€š$ÒžñšD\ &ƒ „ìªå!‰ûlwIp©BòÀ@.¸š•Ö¤.µ~ýž´J­ƒ!mÇB_¢;Š¥;ªGó€U×ÌhÔbn™žæ´NZ˜„NÍ1…¨ß)•0êF•œAa–•lȴÂíDÁu"¬ôÄšòô|iAÏOEv7È“Ý'ó"Ä<½ÜHIM†Ìèbž'‹yrÚVÌÓòäÕT)0M†t±2h ^¾„ˆçº÷P2óÌ£ÂÌ ëR'g#LVp/À=ŠØž³@W¶¯ÓÅKnÌ[Çã¦GMV6ÈËïÙäÛОó$ RNT€p›g°Wc„ŠPÀzâaUv¯ôêµ ¿š#–£•òÞ‹ê­µ¦~ýí}€{¾á^u<4Ö´Zk;ØZËykG.k¯ýAÒ`ÅáœF¬èÈp-xÔH“>ÃâíâÛ6YWª¤.94ŽYᔡ·6Àᇂð…Êš££¨g4¼`90ëxg-; ¯QÄOVD$ZÈ–ppÄ1ö ‰á0¹*¤Ša0+ëh{UÞ)Â=¤Âuˆ´ÌªAÂÊÁŽ;ê6£‚íZŠƒ“ï}FÅ‚›pàÖµ°2v(Ç]+ãS„•çS*rŒ”ßĬaD+FؘP—´«u¸5ÃÊ-ȯ^XYé•è[8ºà¥]ðéó‡ÃÈÆSÕ)³iÍBqåWî^\Ùy–ËS©œv(ó®gØ…áq€pJhcÙ¥ņ³µˆ½Ç»D¸—4ZkÆÞ¥{Ž µ.SÇpÜ £•@KEˆ ïÇù=qÓܺvš=q©¹’§?ÏG-€c ÙEγúÇ6kIaÁ±€ó ¸lÞ[Ùpì,¿zàXЕîÀñKÇ?l| lÌø dqç±n«EäÙ72†¾nN`%.¾ÜÍuoàR†$;DZ§.øID±"†¾ ³ ;¶¼Xc^]CÃÒ%UyFÃÏI~» çÉM‹sX „/½‰‹á ’#Û£ù0Ò}N·!¾:ˆØ+þžáo:¿ü’Î⩳òiɤ…]ž˜Ìò{Ä5†#m 7Lå˜Ò’i]áí²ÛCG3wˆÔž„{©UŠ,xÃÁÞpÓÓ®![mÕS´²ëüœv]1#̺V:¹v`59ÆØŸ?ünlÔÈ6WØ}¦@LÂ`…ì}Œ7—¶ÔVˆŒ.”-°ˆD¿Oœ ä'šŸÚ]ǦHxô†Ío¢WÂÁV¸lÚꃄTÔiRQߊ$7~ÿôq1î-™„d”÷C.*kT Ù¨M{¬…ioÆ`Qÿ–‘DˆÚA¤èª0ŽJÆ’ô|ÜÛV nïDZGy¨žq1ím4´·dåqy¤ÝvÆØ(ß™–7åÀ­cØRÐÛòø)°¥óXÊC†¤W\IЄ 1Ò#ãi ECÙt M'%Eön˜ `²Ë`rþu|96¿D‘üÇéDZ]*á¡×¯ ¹tùÙ·möÏ}¶‹UäÄï˜S1„Ѹ#Š6$¿ãGn¨–aHŸnîè:³†%ñWY>1^tmKE¸Æ„HÒppÓü&{¸¼ŠÇ¿_ø7›´žÃ/_OãÇ$ûª|aþ½ÎãÛ·¯þ  Ü‚lcinit-0.3pre19/doc/devel/cinit-status-translation.png000066400000000000000000001722331130343226700227110ustar00rootroot00000000000000‰PNG  IHDR¶ˆ¬f%ÒsBITÛáOà pHYsÐй‹çŸ IDATxœìÝw@÷ÿ?ð÷‘0"#`­"ÈPÀ((|@Ô{Ôªb©­bµ¶îj­V묃ª¸‹–Z·â¨¶ ZÅ»" (  ²÷Hî÷Ç}›_ I+—Àóñ×år÷¾×û’ OÞwÉQ4M€Ób»PGˆÐ-]º”¢(¶VWOͲS 1fÌêüñGSl¢E½…öîÝKQTJJ Û…4-Dh†®_¿þßÿþ×ÄÄDWW×ÍÍmÛ¶m*Ûô7–/_^RR¢²-6o ÙŸ,¾jø6øî»ï.]º´yóæz· †‚&G4/'Nœàp8vvvß~ûíúõë‡ æèèXm™ÊÊÊÒÒÒzoBÁê6l „¼ÿ¾Þ³¥û¤‰4d²øZ¨íÛ &&†ráÂ…z¬[k§Ôó-ÔDöìÙCyõêÛ…4-.‹é ÑåååM›6ÍÙÙùæÍ›„ùóç'$$T[ŒËår¹õó7puõÔ,;ª„·P3ÄvFhLaaa„cÇŽÉ[ÀÚÚZÞ›Ÿù· ::zàÀ­ZµjӦͺuë”_] Ô<¾.\¨dåIIIÇ766ær¹:t®¨¨<›““3sæLKKK—ß~û­Úê•••„%K–?~ÜÙÙ™Ãᘙ™íÞ½»¨¨ˆÇã}ùå—Ò ÿüóÏ„{÷îÕÚ)FLLÌÀù|¾®®®§§çáÇ•/¬Þ½V¼?ß¿?sæÌN:éèèöíÛ7&&FÒ¬âukþÿçää4bÄ% S¬Ö·¼WªÖNÑJ¼Ek-[Þ(BCö'­Ä[())iäÈ‘|>ŸÇãùúúÞ¸qCùN)×½{w]]ÝN:ýùçŸæææÁÁÁ’gìíZ{Íœ”9zôh·nÝtuu¥ßÞLÙwîÜùè£ êZ¶¦@D€feܸq„ÜÜ\y ܾ};&&&00P^D°··ˆˆˆ&„\½zUÉÕoÞ¼3sæLBȹsçbbbbbbRRR”)»ªªÊÞÞÞÚÚúÇŒˆˆøî»ïœœœ ™g‹‹‹»tébbbòÝwßíÛ·oìØ±„jŒ™B??¿öíÛïÞ½;::zÓ¦Mëׯ§izÔ¨QíÚµ“^xèСvvvÊtЦéÓ§Os¹\—üqÏž=S§NíÛ·¯ò…ջ׊÷g\\œ™™Ù¬Y³öìÙ³mÛ6]]]IèQ¼n­AqaŠÕú6PðJ)î]Û[T™²åE„†ìOº¶·Pvv¶••óGtÛ¶mÎÎÎ<ïÑ£GÊtJ±””###{{ûŸ~úiÕªU–––úúú5#‚̽]k¯™ˆ Ž;öâÅ‹yóæQõçŸJ—ݹsçÏ>ûlË–-Ý»wW¾l ‚ˆÍЧ§§±±q­‹-Y²D^DøñÇ™‡¥¥¥zzz_ýµ’«3êwúéÓ§„}ûöIæˆD"±XÌL¯ZµŠÃáÜ¿_òìÈ‘#¥ÿÆÓÿ|êêê&%%UküàÁƒÌ¿;ÌÃÂÂB]]Ýùóç+Ó©ÊÊJgg碢"ÉÌ·oß*_X½{Í·?óòòŠ‹‹%óóó f̘¡ÌºµFe SLÁÛ@Á+Uk§¿E•)[^DhÈþ”w\¬\¹’ò×_1ß¾}Ëãñ>þøce:¥Ø_|Áår%{rïÞ½„šAæÞ®µ×LDX½zµd¡PØ«W/é²%ufeeq8%ËÖ øF4+ÅÅÅ<¯!-0zzz666©©©QW-ôõõ !111åååÌ---É÷ÇŽ;æíííææVõ!C†¼|ùòíÛ·ÕÚ0`€½½}µ™Ã† ÓÕÕ=yò$óð÷ß///3fŒ2…ݹs'--í‹/¾`*dXZZÖµ°zôZ1>ŸßªU+fº¼¼\GGÇÁÁáå˗ʬۤ…)Iæ+¥d§ä½EÕv^¾|ÙÊÊÊÏÏyhiiÙ§OŸË—/K/S¿ãîÒ¥Kžžž’=ùñÇË\LæÞ&ÊõºÿþÒEÆÅÅIv/!„9#„˜™™µk×N5ª„ˆÍJ«V­JKKÒŸÏ—Ls8œŠŠŠU»öíÛöÙgû÷ïoӦ̀–-[–––&y699966V[Ê´iÓ!ÙÙÙÕÚqrrªÙ¸¡¡á€N:Å<j¬²•,LŽV`õêÕ_ýµ¯¯ï¹sçââââââ:uêD×÷çäk®Xï”$ó•jx§Ôd²H樉¼ãB™^‹D¢jÓb±Xñæš|Aš__ßcÇŽ]ºtIÞcSkÈG†‡‡‡‡‡Ç7ß|sñâÅ>|xÞ¼y„;;»ÜÜ\æz¨ú>|¸ŽŽÎÉ“'…BaQQ‘’g˜MBž>}*%®öl #ò{Í·?<8`À€;vHæJÿK§`]Bˆô?|ïß¿ïÔ©S S¬~oe:U+Åes8òï?rÊoºÞïmkkëj_ù„ÏçߺuëåË—QQQ /Lq¯òöçСCúé§éÓ§{{{¿xñ"<<¼mÛ¶ÕÚ—·®OëÖ­¿üòË7oÞTTTüòË/æææu-L±ú½ ”é”Ê”mkkÛµk×Õ«Ws¹\CCÃÎ;»»»+¹iyªõ¸ ûøãçÍ›§¯¯¿}ûvš¦—.]ª|×ä™7oÞ/¿ü2pàÀ¹sçlݺ•ùÁ4%)Óë'Np¹Ü.]ºDDD¤§§ïÞ½»áek¾EÐÄþúë¯þýûóù|WW×ÐÐPfþÂ… e•••´ß…S¼ºDXXX‡˜]%:éíÛ·AAA:tàr¹úúú}ûö•^ 77÷«¯¾jß¾=—˃ ’þý"Zê'bäm";;›ùå»j_ÝV¦S×®]0`€‘‘‘ŽŽN÷îÝ:¤|a é5Cæþ,))™1c3Xíããçåååçç§Ìº4M_ºtÉÑÑQWW·G·nݪöB+Y˜bò6­à•ªµSŠß¢J–ýüùsæÍ0wî\%7­ Sʼ…^¼x1|øpCCC׫W/é_(Ræ—¬¸~ý:ó{:uŠŠŠ277ÿüóÏ%Ï*>.÷šùÒã¥K—¼¼¼˜ŸN:xð`c•­)(Z/H¨†¦éV­Z}ýõ×?üðCÃ[Û²eËW_}•‘‘Ñ¢.>¨×"€¦ªªª’LÇÅÅ•••ýç?ÿa±žf×"€¦rss;v¬»»ûû÷ïW­Z%  ÄvQÍ"h*//¯ýû÷¯^½ÚÈÈhÈ!6lÀÝ&®Ep-È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆÀ‚ÊÊÊË—/?{öìýû÷4M³]οtïÞý×_e»ŠFp÷î]¶« †ˆªSXX¸lÙ²nݺéêêúûû»¸¸˜™™†„„$$$°]ÝÿY°`§§'ÛUÈеk×dz]´ ˆ  4MïܹӯÆfåÊ•<9(..Þ±c‡³³ó¤I“ÊÊÊTV’H$’9ìØ±ŽŽŽlm@} "@“‰Dýû÷Ÿ1cFAA‚Å<اOŸììì:5¾zõjkkk>Ÿoaa±jÕ*ffnnî”)SLMMù|þˆ#²²²˜ùÎÎÎß~û­¯¯¯ƒƒÃ˜1c¼½½%íܼyÓÀÀ ¨¨HúDCvv6ÓŽ¡¡¡P(LLLTи4™+Jo=66V^;6l°··700°°°X²d §fÍšõìÙ³Y³fÙÚÚË+#99Ù×××ÈÈÈÍÍ-..®N{ : ‰Í;Wù%ssóüü|%[~üø±Abb"MÓ>dæ÷éÓg̘1¹¹¹eee!!!ýúõcæ;99uíÚ5''‡¦é¬¬,mmí„„æ©éÓ§O™2…¦iˆˆff¯^½FÅ\0ñôéÓŒŒ K“¹¢ôÖÅb±¼vNž<™žžÎôÎÒÒòÀÌ|¡PxèÐ!É&j®.‹ÝÜÜfΜYQQñöí[¡P¨¯¯¯äž¨ šVdd$EQuú×eéÒ¥J6žœœÌãñŽ?^XX(™ùôéSŠ¢²²²˜‡ùùù„ÌÌLš¦œœvíÚ%YrĈß|ó MÓeee&&&W®\¡¥"ÂãÇ)Šz÷îô4.!sÅj[W¦š¦,XÄLKG™«ÿñÇ\.·  €™yðàADhnŽ[€ºš7o]Çï,lÞ¼9$$ÄÒÒ²Ö%íììÂÃÃCCC»uë¶råʾ}û¦¦¦Råëë+YÌÔÔ4;;ÛÜÜœbff&™4{öì•+Wž>}ÚØØØÏÏOºñôôt>Ÿß¦M陊W°"C²uí>|844455•ËåæççÔlGæêOŸ>eNmHvŽ‚]P+DhB÷îÝKJJªëZÅÅÅ›7o^¿~½2 7nܸqeee¡¡¡£GÎÉɱ²²âr¹Ê|åoÈ!Ÿ}öÙåË—8Xm´ÃÚÚ:??ÿǦ¦¦’™Ê4.sÅjäµóúõëÀÀÀèèè^½zQµxñbæ:Bˆty2WðàÁ’%K*++µµµ !2/’P.W€&Tï/éݽ{W™Åbcc«ªªôôô‡Ã!„¸¹¹yyy…„„|øð’““)summí &¬_¿þÒ¥KS¦L©ö¬«««··÷Œ3˜+(Ÿ={–™™©Lã2W¬¶Œ¼vŠŠŠ!ÎÎÎÌy„C‡IV155•ä-™« …B{{û°°0BHeeåÖ­[•Ù‡ò "@zðàAýV|öì™2‹Ï™3G ………=z”ùWûôéÓ:::;w644twwŠŠ’×BPPÐ¥K—|||:tèPóÙÈÈH]]]CCà &0¿•i\æŠÕÈlÇÅÅeáÂ…^^^~~~Ó§O÷÷÷—,?þü½{÷?^æêE:uêøñã½{÷VfÈCÕõ!€òú÷ï¯àϳb’Óê zEuÄãñZµjÅv-"4!×ë)æììÌ\XlAD€&4zôèú­èââÒ¸•@]áZhB%%%æææ2/ÖS,**JúJ=P=Œ"@jÕªUPPP]×8p òë0ŠM«´´´gÏžñññJ.OQÔýû÷»víÚ¤U@­0ŠM‹¹‡‚‰‰‰’ GFF"¨Dhrvvv7nÜðòòR¼ŸÏÿã?†®šª@1DPggç7nlÞ¼Y Ô|¶uëÖ‹/~öì™ô}‰€]¸TЦé‡^¹råÁƒfffmÚ´±²²?~<—‹»Ê¨D`ÇŸþYRR2pà@üŠ"€zBDvØÚÚ¾~ýúõë×íÚµc»×"€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆj¦i¶K€AD¹víš››Û¹sçj>•™™ioo¦úª@DP‘øøø'Ož¬X±¢æ€Áúõë_½zÍJa …Á=PÒÒR{{ûŒŒŒ³gÏ:ÔÖÖöõëׯ_¿ÖÑѱ··/-- …l— ÿ£ "<oáÂ…„j ëׯ/))5jò€ZÁ(¨Žô@Â_|ñúõë»wïúúúb@ aTGz ™³cÇ !¨'Œ"€JIÌÌÌÞ½{ÇãñÊÊÊ0„ †0Š*%HÈËË#„”––b@=aTM2ÀápÄb1†ÔF@Õ$ "‘Cj £Àf !33Cj £À7yòd¡Pˆ| ¶€ׯ_ß±cÇÇ·mÛÆv- —í Å¹~ýú Aƒ !³gÏ&„|ñÅlÕaTJ’&Nœ¸cÇBÈìÙ³1– †0Šª#É“'Oçp8„Œ%¨!ÎòåËÙ®Z™ù {÷îæææ¿ÿþû… §§'ÛeÀÿADU™H ê šœ‚|À@JPCˆдjÍ ¤uƒˆMHÉ|À@JP+ˆÐTê”H êšD=ò)@M "@ã«w>` %¨Dhd Ì ¤Ö!"@cj”|À@J`"4šFÌ ¤!"@ãhô|À@J` "4‚&Ê ¤V "@C5i>` %¨žÛ€ŠtïÞý×_mŠ–###ÞŽÌ ïÞ½k``ÐtU=y=Ò\*ÈŒéÓ§‡……BfÏž½mÛ¶&Ú »šÙq š¡¥X°`þñR k×®‡VÍZ͉Êò£Ù§§ Vš‘H$sþرcU\Ló&oW·¥¥¥ýû÷/,,tvvÞ¿SçÆôéÓ¿øâ š¦gÍšu÷î]l±)´ÀãÇ‹&BDPS«W¯¶¶¶æóù«V­bfæææN™2ÅÔÔ”Ïç1"++‹™ïììüí·ßúúú:88Œ3ÆÛÛ[ÒÎÍ›7 ŠŠŠ¤‡³³³™v …Babb¢‚Æk­ŠòòåK???çâârÿþ}fæ›7o†jdd$‚ƒƒ‹ŠŠ!¦¦¦±±±ÌwïÞ566®¹•ääd___###77·¸¸8y»èÙ³g^^^|>¿[·n’?õëŬY³ž={6kÖ,[[Ûàà`BȆ ìíí ,,,–,YBÓtÍ]Ý­[·jkÉÛº2=’¹»˜-._¾< ÀÍÍÍÕÕU²{ëý"6"·sçN--­çÏŸoذ¡I·%½oß>BÈçŸîáᡚʃãTñ»ZºË±±±òŠ—Y°³³óâÅ‹ûõë×½{wÉ1.óØ}úŒ3&77·¬¬,$$¤_¿~Ì|''§®]»æääÐ4••¥­­À<5}úô)S¦Ð4íááÁÌìիרQ£Þ¿OÓôÓ§O3224^kUNNN;wNHH(//Ÿ1cF=hš‹ÅB¡pêÔ©%%%ïß¿ïÕ«×äÉ“iš111ÌŠwîÜáóù’ö™ Åb±››ÛÌ™3+**Þ¾}+ õõõkî"''';;»ääd‘H´fÍssóâââ†ôB(:tH²ØÉ“'ÓÓÓ™å---8PsW3}”^KæÖ•鑼ÝÅlÑÓÓ³  €¦é5kÖ0»·Þ/bS8pà€––!díÚµM½­¨¨¨V­ZB>ÿüs±XÜÔ›S Ç©2Ç©ôñ"³xwéÒ…yç>|XrŒË<6ß½{§¥¥õîÝ;fÅŽ;ž={–¦é)S¦,Z´ˆ–bˆê(99™Çã?~¼°°P2óéÓ§Eeee1óóó !™™™4M;99íÚµK²äˆ#¾ù暦ËÊÊLLL®\¹BK}ô<~ü˜¢(æXR¦qÅUUÛz||<‡Ã‹Å<ÐÒÒb>hš¾víš¶¶viii­=ñññ\.—9’iš>x𠼞M›61Ób±ØÜÜ<22²!½¨öÇ^Ú‚ ‚‚‚jv¶ÚZò¶®Läí.f‹û÷ïgæ?zôˆÙ½õ~›ˆjR‚ZåÇ©rÇ©d£òŠWPðöíÛ%mll"##«µ/}lvéÒåðáÃiii7nœ3gMÓmÛ¶½té-ç8ªY0Tƒ êÈÎÎ.<<<44ÔÜܼW¯^W®\!„¤¦¦RåëëëììììììééijjšÍ¬bff&Y=((ˆ‰ù§OŸ666öóó“n<==Ïç·iÓFz¦âÆTUmë"‘H$edd™˜˜0ó;tèPYYY­A™233™‘UÉFå-Ù®];f‚¢(›ÌÌÌöBÚáǽ½½mlllmmwïÞ-ö'ÿÞÕÒäm]™)Þ]|>Ÿ™àñxÌî­÷‹ØDÃÃõ´´-Z´nݺ¦ØDttôðáÃKJJ>ÿüó;vPÕ[©§Ê§’Ê+^AÁæææÒÓ™™™Dþ±éïïuùòeÿ€€€¨¨¨ÄÄÄwïÞõìÙ“Y æqTk7Ëv Û¸qãÆWVV:zô蜜+++.—«Ì—‹† òÙgŸ]¾|ùÀÕ>L­­­óóó?|ø`jj*™©dã5«’÷ImaaQPP››Ë|ú¤¤¤hkk ]]ݲ²2fæßˆš+æååUVVjkkBœMóæ 3AÓ4ó¯CCz!ݑׯ_FGG÷êÕ‹¢¨Å‹3§k’^KÞÖ+**j푼Ý%¯ y›H`` !dêÔ©‹-"„,\¸°WÃ|ÀÀqZëqªLñò ~õê³€X,~óæ………‚cÓßßÖ¬Y•••ÌïÞ½ûí·ß|||x<^­µ<EPG ±±±UUUzzz€¹PÜÍÍÍËË+$$äÇ„œœyßrÖÖÖž0aÂúõë/]º4eÊ”jϺººz{{Ϙ1ƒù_áÙ³g™™™Ê4.³*y„B¡‹‹ËüùóËÊʲ³³—,Y2vìX===ww÷óçÏB*++úé'™+ÚÛÛ3_l«¬¬Üºu«¼M„……½zõJ,ÿøã4M3Ÿ õî…©©iRR3Íü_âììÌŒ‹:tH^ ÒkÉÛº2=’·»äm·Þ/b“j¢±µÍ8N•9N%䯠ర°ääd±X¼fÍŠ¢›¾¾¾©©©§Nò÷÷§(ªoß¾›6mò÷÷¯µ0PAÏ™3G ………=z”ùX<}ú´ŽŽNçÎ ÝÝÝ£¢¢äµtéÒ%Ÿ:Ô|622RWW×ÁÁÁÐÐp„ ÌQWkãòª’‰¢¨3gμ}ûÖÌÌÌÁÁÁÎÎnÇŽ„7^»vÍÍÍ­ÿþ>>>2WP7øF¨Nµï8ØÚÚ¾~ýšÇã•––"¨Œ"€êTK`î„| ž0Šª&K (Цé‰'FDD ¨Dh~þùgÉmãA#ܹsçàÁƒÌçOJJJûöíÙ®ªCD€æ mÛ¶iiilWõ´|ùr¶«hÎlmm‡Îv y 9`"Bpp°Ûµ@üüóÏ………lWÑü 4èüùólWš—+Bó±bÅ kkk¶«€:011ÉÍÍe»Šæ,%%åôéÓlWš XóÝwß±]B3wáÂD¨7-¶ u„ˆ2 "€ ˆ "È€ˆÐ|TTTlÚ´©W¯^"‘¨æ³?ýôÓøñã“’’T_h"D€æCKKkçÎׯ_ÿí·ßª=UZZºvíÚ#GŽ<þœ•Ú@ã "4\.wéÒ¥„U«VUHؽ{wFFF÷î݇ ÂRu a@SÑ4-ïçÃ+**T\ €ú˜0a‚ƒƒÃ‹/¤JKK×­[Gùî»ïpSMP"h¤ .´mÛöÔ©S5Ÿzõê•••ÕŽ;T_€:H‹ÅÌL !@= "€FJIIIOOÿþûïk$¬^½:;;ûÖ­[¬ $ ýõ!D$aêwzT^^îààššzâĉѣG3wzLKK«¨¨prr¢iúï¿ÿîØ±#Ûe°æ—_~™2eеµuzzz§Nþþûïîݻ߾}”‡QÐHººº‹/&„THX½zueeåĉ‘ …cÒÓÓ !/_¾$B€ºCDMõÉ'Ÿ´mÛöáÇ’+RSS8 9 Ð’I.—[^^Ž« @SI$0s~úé' !H0 UUUCP/¸4˜äŠ@Íår !¸ @‚¹"W!@ý`4˜d ¡  €RUU…!iÌ@† ~0ŠšM2@Q‡ÃÁÔIUUÕùóç9N^^Ûµ4•çÏŸ;;;³]E²´´ìСC‡Ø.¤â²]@ƒ0 !!!4Mc”³k×®{÷î%$$Ð4íèèøâÅ ¶‹‚zêÑ£Ç;wx<^¯^½zöì¹téR‡ÃvQÍF@ã1 B€Z•””|óÍ7[·ne~vÃátëÖÍÕÕµ²²’íÒ žÄbqdddii)óÐÍÍmÿþýîîîìVÕ< "@s°cÇŽ[·níß¿ŸíB@­Ý¹sçã?~ýú5‡ÃY½zuÿþý…B¡–.ÉjÒÒÒbbbæÎ›‘‘Áår/^¼lÙ2æf¨7Dø?iii÷îÝ+**zûö-ÛµÔ™X,ÎÏÏ711a»:366¦iÚÏÏÏÑÑ”5©´´477·¼¼<¡PÞ­[7¶+‚ÆWZZºdÉ’ÐÐP±X¼zõjærf¨7D„–.11qéÒ¥gΜ)++#„ôìÙóúõëlÕ‚´k×îÍ›7„mmmooï¡C‡ÎŸ?Ÿí¢š§Áƒ_¸paÈ!gΜÁÈAóÝ¿{÷¸°]ŽCDh¹JKK—-[¶yófæ¦ò<¯wïÞÕî1MЦ餤¤{÷î1A2bĈ;wZXX°[X3óóÏ? ‚'Ož`ß¶3fÌØ¹sg÷îÝãââpº¡ÞZ¨G :455•Ãá¬]»v̘1¶¶¶lÕ¢UVV>|8$$¤¨¨ÈÈÈèСCƒf»¨f¢²²²M›6ùùù¿ýöÛÿþ÷?¶ËU(,,ìÒ¥KJJÊ®]»>ûì3¶ËÑTmk‰ † –ššêêêzóæÍyóæ!°N[[{òäÉÏŸ?}|||Äb1†I.***>>^ °]¨MÓQQQ>|`»M…ˆÐ²Ü¿Ÿ¦i¡P¨­­Ív-P f`üþýûl-"BËÂü½ÁIYÀ¼LE¶ "´,EõêÕËÕÕ•íB v...žžžææælÒR\¿~}ðàÁ­[·ÖÑÑqtt\¶lYqq1!¤OŸ>K—.e–éÓ§EQ7nܬejj)Y¬¬¬Œ’EÞí˜zô(//ïØ±c™™™<¨¹¤@ Pð#Ùzzz¥ÿèÛ·ï¼yó˜éGÕ\¸¢¢â¿ÿýo§N’’’Š‹‹Ož<Ù©S§:µ ¯‘zï‡o¾ù¦²²òÝ»wC‡8qbFF†ä©E‹•J±··W¼i¦©ŒŒ ??¿1cƼ{÷Ž©öÀB¡pïÞ½ÌbþþþOŸ>ež%„\¾|¹sçΗ/_–>>5þôÓO“““Ož<)¯5½hiiq8fZGG§æ’iiiYYY³fͲ°°ÐÖÖvuu ®S ©Š¢¸\®±±qHHHeeerr²ä)I% Š¢ošiªuëÖsçÎ-//gNŸ>MÓôîݻϞ=›™™I …¦¦¦L&(,,|úôé‚ ¤#B¿~ý˜éZ÷<4:Dhéž-ª`ïÉ<› ¬{ÿþ=!DùË>>ýôS--­Ý»w7p»\.÷úõë+V¬pvv¶µµýå—_·‘M›6™J‘ŒçËóÃ?PehhzñâEé¬K7Åüd»âMoÙ²ÅÂÂÂÐÐpÓ¦M{÷îµ¶¶~ùòett4Å&L˜°wï^æ&Aþþþ̰ÁåË—ûöíkaaajjúèÑ£»wï–””øùùIÚl¬=JBD€êpR–9xðàÑ£G§¥¥eff}üñÇÒòú®xïÕ<›[¿ò qµiÓ†RëŸO .—»víÚ+V6pÓëׯøða~~þìÙ³§L™Rï°(hdÚ´i¤˜šš*njÉ’%4M§¥¥yyy­^½Zú)é¦$ù¸ÖM§¦¦fddBöíÛסCoooBÈ„ ’““™Áÿ¤¤¤ÔÔT&"Búöí{ùòåË—/{xxðù|I ¸çAˆð/8)Ëì„Y³f-Z´è‹/¾066644üôÓOW­Zõõ×_—••)è{­{¯æÙÜz”ÎÕÕÕÆÆæ·ß~«6_ÁpGŒáää´~ýúƪAOOï믿æñxòpý144´‘¢¥¥Ôg¾µµuxxøü%™)Ý”••U­›Ö××·°°ŒCTUU…‡‡§§§[XXXXXôìÙ“¢¨={öBÚ¶m{âĉ¤¤$æÆ Ì©‡+W®HÎ2H4úžà_pR–òøñã´´´jwœ8qbvvö;w˜‡2û^§½êCKKkûöíëÖ­[»vmzzziiéÇ?ûì3ésI5mذaóæÍ%%%õÞnffæ²eËžìØ±]»vU°Š——×àÁƒKKKë½ÑV­Z¥¦¦Ž1B__ßÊÊêĉ'Ož¬ëÏ–4J#2-Z´èÎ;’„µk×ò¤\¾|¹N›Þ³gÏØ±c»tébñÀÀ@sssæ õ÷÷ÏÌÌdÎ2BÌÌÌlllÄbqÏž=k6Õð=Ê¢¡%™$„$$$È|ÖÏÏ9UÉL¯\¹’¦éÈÈH33³‚‚@pêÔ©j‹1üýý.\¨d‘¥¥¥7n$„ܽ{·~-ÔlÄÏÏoöìÙ©RÚ´i#o?0—TÛ Ì´˜ ­åõ½Ö½']Czzºâ.¼xñ‚âèè¨|¯A&¡PHyøð!Û…€ª1—:2‡-ÔFà_pR–âêêjmm}èÐ!é™lݺuµAÔj}¯uï)>›  V¸lê…9);nÜ8==½É“'·nÝúŋ۷oŸ2eŠÌ?Ɔ üýýÅbq½·›™™6vìXGGÇÒÒÒ]»vÕï¤lÃ!„p8œÐÐÐI“& ‚É“'kii9rdéÒ¥Û·oçñxÕ–î{­{9›+YWGGGÉËÇ@Ó¥¥¥õêÕ«ÚÌY³fÍ;We-4n;Ð "@uÌIÙ~øaݺuÅÅÅ:t7nœ2'e¥ѽ®$'5ß¼y£££ãêêÚ“² i„ñÑG¯\¹’9»Ñµk×#GŽ 6¬æ’Õú®xï­]»víÚµ’u/]ºPò N|||tuuÙ½ºÍÆÆ&%%…Ý·`ddÔ·o_ccc¶ ÑT”‚dh~#"""""&MšÄv-P‹ÄÄDGGGGGÇ„„¶kÑlãÇ?räHxx8óí|h!Äb±‰‰IAAAVVs¹1Ô9 ™sww'¸­vË“””TPPжm[äƒzÉP5œ”óðð „Ü¿ŸíB@¥˜PÈD¨D„–E(¾zõª¨¨ˆÅpRVI………^^^ÌŸ7hˆ=zp8œÛ·oÇÇÇwëÖír@ÄbqXX!¤á¿"Õ’áDCË"‹cccŸ>}Êv!P»gϞݺu+++‹íB4ž‘‘Ñœ9sªªªËËËÙ.Taûöí±±±–––3fÌ`» †ˆÐ²à¤¬a^&Œ"4Š•+W:99=yòäûï¿g»hr/_¾\´h!dçέ[·f» †ˆÐ²¸»»SõàÁÜp]ýáLj#âñxááágÍš53fÌÀ}›±Ó§O÷ìÙ³¤¤dÒ¤IÇg»͆ˆÐ²˜˜˜899•––nß¾íZ@‘ëׯ_¿~¢¨îÝ»³]K3áíí½oß>‡³sçN—èèh¶+‚FöþýûÉ“'9233ÓÑÑ144”íŠ4~¡Å9{öìðáÃ[µjõàÁ¶ËJKK»víúâÅ‹¥K—®\¹’írš•§OŸݽ{—Âãñ˜ B;tè ïã þ nß¾}ïÞ½—/_Ò4­¯¯¿fÍš™3gâ§K›7ˆ–Bºwï^YYÉv- Ã_|Aqss+//g»–f¨ªªjÞ¼y666’ÁŽ;²ö æææÆLhii 4(--í·XóQ„–(77×ÕÕõíÛ·ááá’ X÷îÝ»'Nhkkß¼y"4©‚‚‚ØØØØØX·oß²]N“(..NKKÓ××—ŽDÍLçÎMLLÜÝÝ]\\0rиZ¨{÷î 2$++K[[{ãÆ3fÌàrñ#l‰D'Ožüì³ÏòòòZµjõ믿Ž5Ší¢@ã]¸paðàÁƒ :þ<Ûµ€æÁ_…ÊÃÃ#))iáÂ…;vì˜={öìÙ³Û¶mëîQ1‘H”œœ|ÿþý„„&¯0`Ïž=íÚµc»4héZ.ƒíÛ·OŸ>}É’%üñGjjjjjêû÷ïoܸÁvi-H»víÞ¼yCÑÒÒòðð1bÄ’%K(Šb».D„ÏÍÍíÌ™34M'&&Þ»w¯¤¤dÀ€lUg7oÞ,//÷ööÖ¸ëÒMLL!½{÷îÒ¥ ‡Ãa»€ÿ!„¢(æ¾ÃlROmÛ¶MKK‹ˆˆ°¶¶f»€f€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆ "È€ˆ2 "€ ˆjäêÕ«b±˜í*@†¸¸8¶KP5Duñþýû¡C‡:998p ªªŠíràÿÄÄÄøûûûøøœ={–íZT @]dff$%%uêÔ AuL8ðõõ½|ù²¾¾~EEÛ¨"€ºpssKKK‹ˆˆprrBP`—t8011Y±bEzzúG}Äv]*…ˆ F8ΤI“ž>}Š À–šáàÕ«WË–-ãóùl— jMÓl×ÐPmÛ¶MKK›5k–Ûµ4š¦Ÿ={›““C騱ãÒ¥K'NœÈår•láÙ³goß¾ÍÈÈÈÈÈ „äåå5a¹jC Z¶k×ÎÅÅ…¢(%WŒ‰‰Y¾|ùåË— !zzz=zôèÑ£‡®®nSÛä^¾|yäÈ‘Aƒ?žíZ@ó "@sÀD¶«h*<¯´´”™îܹóãǵ´äŽÿUUU]½zõìÙ³‘‘‘¯_¿–ÌwppHLLlòZÕ€©©é‡˜iccãÁƒ>|РAFFF ÖºuëÖþófZWW·¼¼¼É U!D¨Dh¶mÛVXXÈv¬ªªêÞ½{ýõW~~>!D(.[¶lÔ¨Qòþ-¦iúĉK—.MHH`昛›»¸¸XZZZZZ¶iÓF$©®zöäææ~øð!###33óÁƒÌLccã… Ξ=»U«VòVŒ_±bÅ™3ghšÖÑÑñòòêÝ»wó—²··;v,ÛU€¢@Í”••………µmÛ–9H…Bá‰'Äb±‚UnݺձcGfy;;»o¾ù&..Nñ*-AZZÚ¦M›úõëÇì“}ûö)^åþýû#FŒ`r˜¾¾þ¼yó²²²TS-€ºADP#õ4MïܹS[[›beeµk×®ÊÊJÕT«A¢££{ôèÁìÕ©S§–••)^A€FDPñññ&&&u 3gÎdVYµjUUU•jJÕPáááÌå‡>>>µ./ttt:¤‚"Ô¾ô .Ú·o/‹™p?zôèZ¯ÆŸ:uêöíÛõôô"""–,YÂápTSª† ºyófûöíoܸѷoß‚‚ÅËwëÖ-22òÞ½{#FŒ¨¬¬”8€—+¨‘Û·o{zz*¹ðÆçÍ›§««{íÚ5åׂ’’’ÿüç??~üø¨Q£Ø.G䤤xzz¾ÿ~Á‚ëÖ­c»5…ˆ yJKKÓÒÒ¾ÿþûo¿ý–ír4ÒÕ«Wû÷ï_UUu÷î]www¶ËPG¸@ólÛ¶---ÍÝÝ}éÒ¥l×¢©üüüæÌ™CÓôâŋٮ@Ma@ÃäååÙÛÛçää\¼x±ÿþl—£Árrrìííóòò¢££%¿EÐ0ûöíËÉÉéÓ§òAµnÝzáÂ…„ 6°] €:BDÐ0§OŸ&„H~$îÞ½[×ßKž6m‡Ã¹råJóûo€†CDÐ$ÙÙÙ7nÜÐÕÕ8p ¼eúôéCý[RRR“VÕµk×Ç7é&šˆ@ èÙ³gyyùŸþÉv-j@“\¸pA$õéÓÇÐÐPÁb‹-*•boo¯² 5ΰaÃ!çÎc»µƒˆ Iž?NñññQ¼‡ÃÑ“BQTZZš©©é‰'!4M2dÒ¤I„ÜÜÜ)S¦˜ššòùü#Fdee1-dgg3ó …B!s#iSSÓØØXf»wïBfÍšõìÙ³Y³fÙÚÚ+hSš³³óòåËÜÜÜ\]]ïß¿ÏÌ—·®¼ùÉÉɾ¾¾FFFnnnqqq’öW¯^mmmÍçó-,,V­Z¥`_1;“Ù± @“dddB¬¬¬êº¢Íþýû§M›–’’²iÓ¦¤¤¤;wBF]RR’””ôîÝ;› &0Ë9²°°ðùóç………‡R0h±uëÖÎ;oݺ5%%eß¾} Ú¬æÂ… §Nzüøñ¤I“¦OŸÎÌ”·®Ìù4M5ªK—.ÙÙÙ/^d¶NyòäÉš5k®^½šŸŸŸ˜˜8|øp{†Ù™ÌŽ€aïöPgƒ "„œ;wNÁ2~~~<OðöíÛKžúúë¯;uêdhhøàÁš¦Ÿ>}JQ”ä†ùùù„ÌÌÌÇSõîÝ»j- ‚˜˜fúÎ;|>Ÿ™ …’[Ék³ZSNNNû÷ïg¦=zÄápÄb±¼uåÍçr¹ÌüƒêëëÓ4œœÌãñŽ?^XXXë.---¥(JGG÷Ψ†Ëj>€ºqssËÉÉQ|!!dÚ´ióçÏg¦µ´þÿ`áÌ™3·lÙ2jÔ(¡PHIMM¥(Ê××W²€©©ivvvzz:ŸÏoÓ¦M=*”צ¹¹yµ%ù|>3ÁãñD"‘H$’·®¼ù™™™Ì©f¦d"<<<44400°[·n+W®ìÛ·¯¼‚õôô„B¡••UYYÇ«G—š+DMòôéÓ[·n1ÿF+`hhhccSm¦H$š2eÊøñã/\¸ðûï¿2ÄÊÊŠËåÖü® X,ÎÏÏÿðჩ©©ô|]]ݲ²2fZºé;RÊkSòÖ‰D2çWTTäååUVVjkkB¤/z7nܸqãÊÊÊBCCG““#ï¶™%%%­££Ó¹sgCCCww÷¨¨(¦…ÈÈH]]]CCà &B6nÜxíÚ577·þýûK«bþüù{÷î522?~W®\a»–fâ‡~Xºté´iÓvïÞÍv-꣚dàÀ:::±±±¹¹¹l×ÒLœ={–üóJ @“ðù|__ߪª*æšh ¬¬¬;wî´jÕ* €íZÔ"€†9r$!dÛ¶m8KØp[·n‹Å À×jµ¦¸¸ØÁÁ!##ãäÉ“£Fb» –‘‘áààPRRçååÅv9j£F__ÿÛo¿%„,X° ªªŠír4ØÊ•+‹‹‹G…| F4OeeeçΓ’’¾üòË-[¶°]ŽF:sæÌ¨Q£´´´?~ìììÌv9꣚G[[ûÀººº¡¡¡?ÿü3Ûåhž'OžLš4I,¯Zµ ù@Œ"hªðððO>ù„Ãáüþûïd»‘““Ó£G—/_Nœ8ñ×_e»õ…QM5uêÔ¯¾úJ$ 2dãÆl—£þúë/''§—/_º»»Kn 2!"h°7®X±B,Ï›7oâĉ¥¥¥lW¤¾ÄbñJÚ@Ó IDATÆ>|ø0tèÐ+W®èêê²]€ZCDÐ`E-[¶ìĉ¿ýö›……ÅÊ•+™û)€„X,>t裣ã¼yóÄbñ¢E‹NŸ>mddÄv]ê×"4 sçÎýý÷ß !`äȑÆ ká¿$‹oÞ¼yöìÙ'N$&&BlmmwïÞÝ¿¶KÐ ˆÍGLLÌ¢E‹nܸÁ<ÔÓÓ³···üGyy9»å©F^^Þ‡Þ¾}ûêÕ«¼¼ù¤mÛ¶ìUu†ˆ¦æ@Brr2†4"4éæqÛ¶mÀ†Â 1Ñ4Ý­[·‡ššš~øðÃáp¹ÜÄÄDDƒQhL’„üü|mmm !h.Œ"@#“ $Btuu1„ ¡0ŠL2@Á€æÂ(4>f áùóçBÐ\\¶ €fˆ¢¨Þ½{———[[[³] ÔN4@ãÛ¿XXØóçσƒƒÅb1Ûå@} "@#Û¿?“ Zµj%™f»(¨3DhL’L°~ýú?þøÃÀÀ)@C!"@£‘ÎóçÏïÝ»÷ùóç‘4"4Žjù€™‰” ¹ ÈÌ ¤ …ˆ ¥ 04"4H­ù€” q þ”Ì ¤Í‚ˆõT§|À@JÐ ˆPõÈ ¤MˆuVï|À@JЈP7 Ì ¤õ‡ˆuÐ(ù€” æ@Y˜H ê ”Òèù€” ¶ vM”H ê jѤù€” †@äR€º¡hšf»€Fð÷ßoܸ‘í*š›/^\¿~]ù@"&&fðàÁEEE®®®žžžE©`£-ÐøñãØ®Ô"4ÑÑÑøÈk"ŽŽŽÿý·––ŠçÌ™ªšmµX[¶lùòË/Ù®Ô—íSçοþúk¶«h>RRR¶nÝúâÅ‹ÿýïär›ü#,,ì§Ÿ~¢(jêÔ©>>>M½¹èðáÃQQQlWšš++«àà`¶«hV†>`À€£GBš:%„……}ñÅ„mÛ¶…„„4݆Z²Ç#"€’p¹"(Ò£G‹/=ztâĉUUUM´!äuƒˆµPAJ@>PCˆP»&M Èê ”ÒD)ù@m!"€²=% ¨3D¨ƒFL Èjê¦QRò€úCD€:k`J@>ЈPõN Èšê©)ù@ƒ "@ýÕ)% hDh%Sò€ÆAD€†ª5% h"Dh Rò€†BD€Æ!3% h®&¼õ;´4LJ0`ÀÑ£G«ªª4F 1IÆNž<ÉÄä …ˆŒI ººº„µk×"h(Dh|=zôhÓ¦ !d̘1l×õ„ˆMBGG§©7q÷î]%~ÿþ½ŸŸŸ‘‘ÑСCå-Ó½{÷_ýµætãV )p¹"´;wîÔ××ÏÏϧ(JÞ2 ,èÚµ«*«Pgˆ-…H$âp8šÒl£KMMíܹ³‚|@;v¬ÊêP8Ñ joÞ¼:t¨‘‘‘@ .**bæ;;;/_¾< ÀÍÍÍÕÕõþýûÌüÜÜÜ)S¦˜ššòùü#FdeeÕ©Ío¿ýÖ×××ÁÁ!66Vzggçõë×{{{·jÕÊÛÛ;--mÍš5–––|>ݺuujV™ ëÚ;yó“““}}}ŒŒÜÜÜâââ$í¯^½ÚÚÚšÏç[XX¬ZµªÚÖƒƒƒ:´gÏ[[ÛŸþyÆ öööK–,¡išYLæÉ…ºVÐl "¨MÓÇ733ËÊÊJHHxñâ…ôÿ.\8uêÔãÇ'Mš4}útfæèÑ£KJJ’’’Þ½{gcc3a„:µyîܹӧO'&&úúúV[1""â·ß~ËÎÎ655õóó‰DoÞ¼9þüÒ¥K“’’”o¶Ö ëÑ;™óiš5jT—.]²³³/^¼¸oß>fá'Ož¬Y³æêÕ«ùùù‰‰‰Ã‡¯¶é}ûö7nÚ´i)))Ÿ|òIÇŽcbbŠŠŠ¢¢¢ÂÃÃ#""¼duª Y¡š…¨¨(BH@@Û…ÔâÁƒZZZ999ÌÃk×®ikk—––Ò4íää´ÿ~fþ£G8ŽX,~úô)EQYYYÌüüü|BHff¦òmîÚµKf%NNN»wïf¦:djj*‹™‡...GU²YyÚÙÙB’““%›S¾wòæÇÇÇs¹Ü‚‚fþÁƒõõõišNNNæñxÇ/,,”·çƒƒƒçÎ[sþ‚ ‚‚‚˜iˆˆééºV¢þ¾üòKBÈ–-[Ø.4®EP©ŒŒ ###æa‡*++³³³­­­ !|>Ÿ™ÏãñD"‘H$JMM¥(JzÀÔÔ4;;ÛÜÜ\É6ÍÌÌäÃ|/‘¢§§'$çéõôôÊËË•lV^…57§|ïäÍÏÌÌ455544df2)„™ ìÖ­ÛÊ•+ûöí+¯×„LJ††¦¦¦r¹Üüüü€€yKÖµ€æ@¥,,, rss™?½)))ÚÚÚ@ÞòVVV\.WñwêêÚfã–ªL…òÈ[W$Éœ_QQ‘——WYY©­­M‘¾èaܸqãÆ+++ =ztNN޼+_¿~Ý«W/Š¢/^œ˜˜X× TÐlàZ• …...óçÏ/++ËÎÎ^²dÉØ±cõôôä-ïæææååòáÃBHNNNdddÛlÜR•©°®½“7_(ÚÛÛ‡……B*++·nÝÊ´“UÅ ‡(þ†sÑ¥³³3sáСCõ¨P^%Í "€JQuæÌ™·oßš™™988ØÙÙíØ±Cñ*§OŸÖÑÑéܹ³¡¡¡»»;sÕEÛlÜRk­PyëÊœOQÔ©S§Ž?îááлwofáâââ9sæ##£°°°£G*ør£‹‹ËÂ… ½¼¼üüü¦OŸîïï_ åUМPô?ßöÐhÑÑÑ—.]b» W®\>|xQQQrr2ÎÓ«•9s愆†nÙ²…¹n@Œ"@ã iúÑ£GÌtrr²äG!¯_¿‰D,Õõ„ˆàÝ»wVVVƒ.++“ÌìÛ·/óŇ“;wî°W Ô"4‚6mÚXYY¥§§ïÙ³G2“ùÃÛ·oŸ?žà›šEQß}÷!dݺuÒ „+VBfÍšÕðïa€*!"@ãøìÝg@SÉÚà9P@!P‘&(¨ "°^ ¢"â*XWQ ¶ÕU×¶rm ö.±ìZÀ‚E\¤X H¯‚´$çû1wsù „€CyŸ?›LæÌ¼çÈ›9sf¦L™bnnÞ` !0™Ì•+WR  EHGý„ºº:\Ct^"¤F8ððáC„PAA !ÐyAŠá@ÂÍ›7BxÇgB “‚ Mx ¡´´TEE%++ †è¼ EH“p ¡¼¼Á¤)à !B Së^›A—””DFF¦§§ëèèôìÙÓÀÀ`È!T@Wƒ¦N CtjÝ"Eaaa>|hðј1cV¬Xáää$~÷X@‹L™2eìØ±0„@G“žž~ïÞ½gÏž©««ãEQgΜI§ÓEVîú)BRRÒ‚ šZþÁƒ<°²²ºyóf=Ú96ÐM$™‘‘Ÿ 233©Ž¨=¨««{{{SE{ bÀ€zzzFFFð}tLaaa«W¯þôéSƒò%K–ÌŸ?ÿÇÔÕÕmx Ù¥%$$ÈËËKr파Œ¸\.Õñ‚Ö»sçBÈÁÁê@þŸÚÚÚuëÖ©©© Ò ¿éÿrÐñ!L ‚˜9sfII Õ?zMÂ{@ïÙ³‡ê@@ûùüù³“““øc…ðððvåQ„ÂÂÂiÓ¦ÕÔÔHRùÍ›7cÆŒIIIij¼€–JLLôòòzõêB¨W¯^ýû÷—““£:4 MÕÕÕùùùññññññééé/^|øðáÁƒ§M›Fuh ÒÒÒÑ£Ggddˆ¯V]]=sæÌ  »rŠ0wîÜè¾ÿ~ïÞ½p÷HÅÑ£G/^Ìçóû÷ïâÄ kkkª#íáÇ^^^<˜>}úÊ•+wîÜIÕAî‹$ɹsç6›`|>áÂ…:::ÿú׿pI—}è1%%¯ïÖ"[¶l)--m‹x@·òìٳŋ“$ùã?¾~ýòƒîCWW÷Þ½{{÷îUVVÞ½{÷¨Žtk{ö쉊ŠjÑ!¾¾¾|>¿î²)Âùóç[qTQQQXX˜ÔƒÝJuuõ¼yóø|¾¯¯ïž={”””¨Ž´+‚ –/_~úôi„¿¿ÿû÷祈t_­HR“’’N:…_wÙáâÅ‹­;ðÍ›7Òt7ëÖ­ûûï¿ ñ&‡ {š6mš‡‡GEEÅ‚ Õá€îOŽiÅGÅ/ºlŠÝº“““¥ èVªªª~ÿýwYYÙ3gÎHø4 èªöíÛ§¡¡qïÞ½GQ èŽ.]ºÔº…»lŠÐjYYYT‡:±ÄÄDglllffFu,€b=zô˜>}:B(..ŽêX@wTXXغ‹‹‹sss¤õïߟê@'²°° :Ð!àŸ¼)6HOغa×ð-pŠ€71§ø§€ÎBFFF__uáÁÍÍ­ušššJ7Э0 üÆÆÆC† éÛ·/Õ€îÈÄĤuöíÛWYYuáÁÕÕµ+–ôéÓÇÕÕµ-âÝÄË—/ãããáAG€ÉÈÈ$''ãÕÁhg3gÎlÝŽ!Â[¥]6EèÝ»·——WKÚ´i“‚‚B„Àÿ?~–æ|‹°°°òòrñu8ÎØ±c[Ú²ŒŒL@@À_·&´Nbÿþý-šUnee5gΜ¶‹€f=zôhÒ¤Iêêêrrr\·n]ee%BÈÖÖ6((×±µµ%âñãÇ£ØlvDD„ðÓU«V¢4Õobb¢ƒƒƒÁÀý®ZµªºººE4UƒvðãÚÍ–+)) 8pñâÅiiib®[ƒv.\ˆË}}} ‚¸qãFƒÊõ/¦ðuS­µ:*ÚHnnîüùó9ÎO?ý”““#¦æ¯¿þÚÒ‡ÜÝÝ…³©ºrŠ ¨¨xíÚµž={JRù»ï¾»s符(tõêU{{{kkëׯ_—––^¼x177711±qM‹åëëÛT; Uÿ7nܪU«ðëׯ_‹¬_[[;a„Áƒ§§§WVV†‡‡<¸¥4•¿¿U=ÂG‡š*_³fM]]]AAAXXXmmíСCÅ?:X¿?þøŸ×‰'LMM>,æÀEÛÒ¨h <oâĉÕÕÕ{öìéß¿¿˜DaĈ;vì¼e&“¹eËáÛ®œ" „´µµß¼yÓìôww÷ëׯ3Œö‰ €ÆÁ²eËüüüutt”””LMMCCCGÕ¸òÂ… 322ÂÃÛjMá222²²²øuS;Lr¹Ü¼¼<‡C§ÓŒŒðVo-j¤Ù¨„-`Ât¼©r‚ h4š²²òСC?nggççç×T× Ú¡Ñh¡ÈÈH’$CCC£¢¢ð\’“VT´K—.%&&Θ1£¦¦F|¢ðã?Μ9S’fõôô^¾|YvmOBaaaW®\ùî»ïð/!… ¼~ýúܹs°4 Ö›7o¸\îìÙ³”‹Ùb06làñxßÞuŸ>}ôôô–.]þáÇV·#ݨpwwøða]]䇄††º¹¹YZZ0àøñãR©uQ -&&&—.]zùòe³‰Â… Î;'~L}Ô¨Qqqq VêÊ›A×7mÚ´iÓ¦ ‚Çgddhkk÷ìÙSWWWEE…êÐ@¡‚‚„¦¦¦„õ.\êííý]Óh´GíÞ½{ãÆ)))ZZZ¿üòËܹs[Ñ”˜¨vïÞÇÿB ããÇâËÐÐÐàñxååå,Kd…úíܽ{—ÉdÞ½{÷—_~Ayxx>|xõêÕ’ßI”VTBÎÎÎvÝÖð­¢£GÞ¿ŸêX€ÔØÚÚ¦¤¤äääìÙ³'$$ä‡~ðóóÓÒÒVpwwwrrúí·ßnܸ‘ Ü7„F£Í˜1cÅŠ#FŒhÜlwI0mmmmmm1㥴?œàççç«©©IRŸF£mÛ¶mñâÅR™cËáp¶oß¾}ûöêêêxzz2¤kDЉjÑ¢E™ 222Í–7ŸŸO£ÑÄäôõÛÑÔÔܰaƒ®®îÈ‘#BëÖ­‹‰‰±³³“ðD¤•Е+W$ìº}¼~ýZÌ´ÐI©¨¨”——WUUúôéÂ… õÇΕ””6nܸqãFݳgÏž={jii‰y0²{¥ØÆþùgªàŒŒŒtttΞ=»aÆúå$I6õÝwêÔ©»víÚ¾}»ÃPPPX¹rePPÐëׯ[·ŒtSQ1™LÆõ›*oàÂ… 666bnÖo‡Çã;v¬¸¸˜Ãáà‚ :$yŠ ­¨„ÄLigG½víÚüùó©ŽHGyyyDDÄÍ›7ËËË ‚˜2eÊúõëŬñJ£ÑÆ/IËÝ.EHOO?sæ ‹ÅZºt)¬o:™ýû÷»¹¹)((Ì™3G]]=55uÿþýžžžÖÖÖMµcÇ{{ûoÜk877÷À®®®¬ªª ©©©>|x«ŸÏ¯®®¾•““ÃßΛ*'I’ÇãÕÖÖ¦¦¦îÛ·ïÖ­[÷îÝ“0€k×®ÄÇÇkhhà’›7o.]º´¨¨¨ñà•Q¤ÞÏ©#À÷LLL:NH Õ vîܹÿþÊÊJ‚ œœœÄ'-Õõ§+6°yóf———wðàAªcàÿqrrº}ûöýû÷ŒŒTUU]]]9Žøµ=¬¬¬&MšTUUõ-ý*))eeeM:UYY¹W¯^—/_722juƒ"£Ú¶m›b=ÑÑÑâË·lÙB§ÓY,–‹‹ BèåË—–––pèÐ!WWWÎ?æÎ«©©yòäÉÆ•PQQÑFQ E«W¯ÖÕÕݾ}ûׯ_œœâââ"##¥¼A Ù¤¥¥Ñh4üm@SS³²²’ꈀÔà5n¨ ãSçØ±cS§Nm·…ðÃ4ê@þçÇDíÙ³‡ê@@ë%%%áÛ[xä >>¾:ê^£xA ÐétHÐôëׯ­FêéFsð,:^WWÇ`0JJJvìØ3@û333£d+.—kccÓ ÐÇǧESw¥ÒH«QÛ;F‹g2™mÞQ[wÐqà!„ï¿ÿþôéÓrrr#FŒxúôéÁƒá— hgfff-Ú=DZtttšz¾¿餽Ðq´C~€ºÏtEáŠ+pÉúõëB;vìøúõ+¥¡.ÅÖÖÖØØ¯ƒ@YY™¶¶¶››ÕÐÝ%EÀC^^^½{÷Æ%&L1bÌHÒU]]””ôæÍªB|||vv6Œ|€Nª[¤Â!„5kÖÔ/‡ uxÞP||<Õ€ÿ$´n*(×-RáB¿~ýê—Ã@:üÇàÅ‹$IR  ÞóçϤ Óê)‚­­­––Vƒ!lýúõºººÆÆÆíè’¨­­Lu,€b=ŠŒŒ”‘‘;v,Õ±ÐÝ"EðòòÊÊÊj0„€M˜0!==]ÂÕªhA!!!¡ÀÀÀ´´4ªÃ”ùúõë¼yóA```ß¾}©€Öè)BHÌNVb¶q &OžìééùõëWOOϺº:ªÃ IrÙ²eiii&&&AAAT‡@+Á_G¤oÏž=ÚÚÚOž<Ñ××Ç+CƒîãÝ»wÖÖÖǧÓéÇŽƒ}çAç)Ò§¦¦=tèÐOŸ>?~Íš5wïÞ­©©¡:.Іx<ÞÓ§O·oßnllüäÉ“^½zýùçŸm·2.í ­®@{8pàóçÏwîܹaÆ­[·nݺ!Ô¿ÿaÆUVVR¦ÚÚÚÜÜܤ¤$ác,óçÏß½{·ªª*µð E ­Ðh4ÿ… îÚµëþýûqqqÊÊʯ_¿¦:4 MA(++abbbnnîîî3 A×)m‹Ífã!’$“““‹‹‹¿|ùBuP@Êzöì9lØ0˜û ºHh'AQH r^ˆ)D€"@Š E Ó6lØéÓ§Û­ áëvè×ÀÀ ""¢M»h#qqq ƒê(h"ÐiøùùYZZvÞ.ÌÌÌΟ?ßFK¥¯öŒ€Ž¯{=ôX[[»xñbª£ |>_äÆc®®®mÝu;tÑañù|ªC cé^£</22’ê(@w±eËmmmUUU‡³yóf\XRRâééÉf³UUU§Nš——‡Ë Ö®];fÌ}}}—‘#G Ûyúô)ƒÁ¨¨¨¨?à_TT„Ûa2™¦¦¦xãé¦ 355ů—-[F§Óñ:N§Nƒ-º§```°aÃccc##£„„\ž™™éè訢¢Âb±,XPQQòññyûö­O¿~ý,Xиµ·oßZYY©ªª:4..Nüå÷µcÇŽþýû3 ‡(\)¹þe:thƒ£šê=##c̘1***x; /N÷J0yyùÐÐPª£]Ü›7o¶nÝzÿþý²²²´´4'''\îììüõë×ôôôüü|á!×®]‹ŒŒLKK ‰OMMÅå'NœpqqipÃ{Ú´i_¾|IIIùòå˹sç˜L¦øÆ1;;»7oÞ „îÞ½Û¯_¿û÷ïã×ööö­8Í›7o^¹r%))éûï¿_²d Bˆ$I''' ¼¼¼wïÞ¥¦¦z{{#„öîÝkhh¸wïÞ?9r¤qSGŽ9wî\II‰›››££ãׯ_%9#‘×¹q_ xøðaEEÅ;wŽ;vêÔ©Æ—ýÕ«W ŽÙ;I’Ó§O711)**ºuë–Ès ‹ »¼}Ž’’ÕéÃ{.;88PÈedd(**^ºtéË—/ÂÂääd‚ òòòðÛ²²2„Pnn.I’ƒ Öœ:uêš5kH’¬®®îÑ£GLL I’§N"I2))‰ ˆüüüú=Ši¼>“óçÏs¹\‡³k×®+V$Ù»wïÛ·o×ï¢þëú…õ 4èøñãøõëׯeeeAbb¢ŒŒLqq1.ðàN¯ªª"IÒÔÔôܹs"/× AƒvïÞ_ MM͈ˆIÎHäuß—ŸŸŸ———°ßú—½þQMõþòåKV^^ŽËÏœ9£¬¬,²£ŽéÇDíÙ³‡ê@@'ÐGhzzzÇŽ ÖÔÔ´±±‰‰‰Aeee1fÌKKK6›]TT„ÑÐÐîååuêÔ)@©¦¦6vìØúggg«ªªöìÙ³~¡øÆ…ìííïܹmooïààpçδ´´üü|kkëVœ¦p3CEEE>ŸÏçósrrTTTzôèËuuuëêê‡ÑXŸ>}ð ‚ tttrss%9#‘×¹±óçÏ9RGG`­ IDAT§_¿~¡¡¡øÞVÿ²××Tï¹¹¹øþŽ0€fO €Nª{MW =¹¹¹¹¹¹UWW;;;÷êÕ‹F£Iò˜ÜäÉ“/^}âĉ¹sçQÿSmmí²²²ÂÂB6›-,”°q{{{Ÿºº:<‡ ??ÿìÙ³£FRTTü–“âp8ååå%%%8Køøñ#Ng±X¡gÑ@ff&~A’$äðŒ_g‚ ê÷õéÓ§¹sçÞ½{×ÆÆ† ˆ€€|ø vîÜI’$Î`š=#‘×¹A_xÌÀÀÀß88wî\S1Ô?ª©ÞMMMû÷ïàÀ„P]]ÝÞ½{[y¥èð E MTVV®X±‚Åb©¨¨8pàÂ… øjdd¤œœœ¡¡!“É477ÇS(Dòòòº}ûö¨Q£tuu!//¯¯¯Ïd2=<<ð_AIg2™–––§wïÞ!{{ûòòr;;;i8AW¯^ýüù³†††¾¾¾žžÞÁƒñG¾¾¾‡VQQqwwo|à¼yóÜÝÝ{ôèqæÌ™¨¨(eeeIΨ©ë\¿¯!C†¬^½ÚÊÊjìØ±K–,“5ˆPdïA\¹råÒ¥K£G–Ò• Ã!Èþé¾~ýª¬¬¬¤¤„ç-‚®äîÝ»·oߦ::®+VïÙ³Ï[@ E€"@H ¤Rˆ)D€"@Š E€"@H ¤Rˆ)D€"@Š E€"@H Mdé—/_ž={Ÿ™™ù÷ß·sLm‡Ïç#„jjjìì쨎Ej˜L¦ŠŠŠ™™™……ÅðáÕ••©Ž@WÐ0EÈÊÊòòòŠŽŽÆoeeeñŸÕ®„ÏçÇÄÄP…Ô¨ªª–••>}¿2eÊáÇ544¨ @g÷¿$ÉÐÐP__ß/_¾(**š››[XX˜››kjjÊËËS"¯¦¦&;;;!!!>>>111**ÊÐÐð?ÿù‡‡Õ¡èÄþ›"ðùü‰'Þ¾}!äêêºÿ~6›Mi` e,X€âr¹‹/¾yóæìÙ³/_¾|éÒ%‚ ¨ @§ôßéŠ[¶l¹}û6‹ÅŠŠŠ ƒü “ÒÑѹqãÆ‘#GTTTÂÃÃÿøãª#ÐYÉ „^¿~½yóf™K—.9::RøVóçÏ?zô(BÈÏÏïÇT‡ S’©««óòòª­­õöö¶µµ¥: 3fÌpww¯¨¨X¸p!I’T‡ ó‘‰‰‰yùòeïÞ½·oßNu0@š<Èb±¢££_¾|Iu,:™øøx„³³³¢¢"ÕÁiRSS›0aBÿ-òßÁ‚êH€ôáÖ„„ªÐùÈà¿"tIøŸF´MSS“N§<˜êH€ôéëë<˜ÅbQ€Î‡öôéS‚ `.‰N§ÿý÷ßT ó‘h§ÇãÇO›6­­C@Çñ­›A?zôhÒ¤Iêêêrrr\·n]ee%BÈÖÖ6((×±µµ%âñãÇ£ØlvDD„ðÓU«V¢4Õobb¢ƒƒƒÁÀý®Zµªººº¥ÄÄÄØÙÙ1 eee›ëׯ ?³øo@zzºÈÞÔ\¸p!.÷õõ%âÆ *׿žÂ×@ù¦áêÕ«öööÖÖÖ¯_¿.--½xñbnnnbbbãš,Ë××·©vªþ1nܸU«Váׯ_¿Y¿¶¶v„ ƒNOO¯¬¬ ÜÔQ@;h¸´äÁ²eËüüüq‰©©ihh¨Èµü.\xüøñððpggg‘­)((à222²²²Â·"q¹Ü¼¼<‡ƒ222222jQ#ÀÇÇÇßßùòåÂËËËW®\éêêŠl*æfO¼Ùø…׌ŒŒÄ[nZ[[çææâÚ_ëGÞ¼yÃårgϞݠ\äÌGƒ±aÆ€€×ê…úô飧§·téÒðððÖíA””ÄårgÍšU¿pöìÙEEE/^¼s‹N¼¥BCCÝÜÜ,-- püøñoohÖ§xž¼¦¦¦„õ.\(##Úê…h4Ú£G,,,6nÜh``Я_¿ú7$QXXˆ¯¡¡ÊÏÏs³'¾{÷nö?úõë'&Œú5_½zõþýû»wïâäÃÃÃãðá𽪴>EèÙ³'úÿPÅ£ÑhÛ¶mÛ¸qã—/_ZÝ©‡ÃÙ¾}û«W¯ÊÊÊþýï{zz¶h ¼Ûu^^^ýB|.ø¼ÄÄÜì‰/Z´(ñõ'<НihhxäÈ]]Ý‘#G"„<<<222bbb$?)@ŠZŸ"éèèœ={¶A¹˜/¾S§N4ht÷‹RPPX¹r¥¢¢bSÓE222ÒÖÖ>wî\ýÂ3gΨ««>¼~a㘛=q&“©ó^½z‰ £~M‚ Ž;–Íáp8޵µ5A‡’ü¤)jýtE™ýû÷»¹¹)((Ì™3G]]=55uÿþýžžžÖÖÖMµcÇ{{{@Ðê~B¹¹¹puu8p`UUUHHHMMMƒ?íâÉÊÊÿý÷,kΜ9222aaaAAAû÷ïo¼Uƒ˜›=q>Ÿ_]]-<\NNNF¦ùTìÚµkñññø~BèæÍ›K—.-**j¼}úhiiõêÕKVV–ÚÛŸÏÿòåKNNNNN—Ë=qâDrrrrròŽ;¼¼¼6lØ ££CuŒ •’’’ »Ãq$QŠ`ffFÉÝn.—kccÓ ÐÇÇççŸnçF¾å€.,//oÊ”)x1uuu__ß%K–¨©©QÅþ,ÒÑÑÙ·o_uu5ÕAu#2...L&³¸¸˜² ´™‚‚GGGªÒwäȑɓ'—––N™2%55uñâÅ4Ü7l¨ÿþgÏž½wºzTTÔСC?}úDuP ´´´233¯\¹bffÆår—/_>`À€ýû÷×ÔÔPZ· “››[^^Þ¢u‡@g‘˜˜ÈårKKK©HÙñãÇ.\H’ä/¿ü©¬¬LuDÚèÑ£_¼xaddôþýû &Àÿ AÓ¦MKHH€D¡ýÑÌÍÍcccããã¿ûî;ªƒR†3? ªÒôäÉ“%K– „Ξ=ëîîNu8ƒžžÞãLJ –’’âááÓßÚHJJÊ¥K—Ú¨qgggCCؘœ(lÛ¶­¥sŠŠŠ222ðÌVôÏbü††NÇý8°ñê>­FÃ?ž€®aݺu¥¥¥ÖÖÖ»wï¦:–Χoß¾ýõ×ðáÃwíÚ5þ|}}}ª#ê²ìââÒ-§§§ß¿ÿóçÏ!‡ãçç·dÉ1ùÁ‹/üýý£££ñ[‚ ŒŒŒtuuµ´´úöíÛÙÿêaòòò ÀOü¾}ûöêÕ«W¯^¥Óé‹-Z»v-‡Ãi}Ó$Iâlºoß¾åååTOŸü&!!!!•   ¢¢"ªÃ¡Rnn.ÞªêСCTÇÒNºÃ ïÞ½£Ñh4íÝ»wTÇÒ‰-Z´!äêêJu Ôhë'ð]†3fH½åëׯ[ZZâ¿\g÷îÝ_¿~SÿãÇ...øI×=z,\¸022²ªªJêu(¡¡¡&LÀ'®  °sçN>ŸßºÖI’uuuøº»¸¸ðx<©FÛ®^¾|9aÂüÔ…ÚÚÚñãÇ#„þõ¯ ªÃi'Ý!E˜9s&Bè‡~ :ÎËå***‘@u,èŒ)BK“’$cbbð×$%%¥€€€’’)ÆÓ)¼}ûvúôé8Q1bÄçÏŸ[ÑÂÿINNÆÓ=† òüùs©ÆÙÞžßÞÞ¾ñΟ ¥¾ÿþ{„еk×HØ­cÃsõqrðþýûŸ~ú©ÙéúÁÁÁÞÞÞ<oõêÕW¯^URRjŸP;¦#Füý÷ßcÇŽÍÎζµµmé¦nÿ[kÅÊÊêåË—k×®ýý÷ß…»â‡(p:ÖYðùü””üZQQ±¶¶' [·nåp8§‹­0C£Ñž?^WW‡ßÊÉÉùûûw®µnníÚµ7nÜØ¼ysPP‡‡‡Èçñ®^½Š¹©­­íýû÷ë—¤¥¥ 0@ºÑÖgffæïïOí³­ˆÁÄĤ_¿~?~|ñâ…pt@²²²aaaFFFþÞ¾}ûöªU«‚€G‚…ØlöÝ»wÝÜÜ._¾|8~ššZRR"ÍHÛ^iié„ ˜Læ‚ "##?|ø€b±XßÿýôéÓ)ÙªMÑh4%%¥ÁƒSh½¹sçzxxœ={vóæÍ"…ÂÂÂŠŠ 6›­¥¥%¾)YYÙ?ä\.×ÌÌ,$$ßvttìÑ£ÇéÓ§KJJV¬Xqýúõºº:[[ÛÐÐPüuQQÑÊ•+¯_¿^SS£§§wéÒ%}}}6›7$‹‹‹spp(--õññyûö­¿¿¿½½ý‘#GšjS(,,lË–-¯^½B-[¶,44´¸¸˜Édž:ujï޽ϟ?GíØ±ã?þÈËËc0 ,n¿d``àîî›——G’äÉ“'ÍÍÍǰeË–ýû÷WTT(**._¾<((Hä…255E}üø±~á­[·6lØðäÉ“~ýúMœ8†â:—Å‹—––:;;oذêX:yyùðððáÇ?yòdß¾}+W®”è0iÏ Þ»H8*ÅápvíÚÕÍg¬t]cºb]]݉'„Ïë8ðäÉ“</11!dll,þð±cÇ6.ŠŠêѣLJvîÜ9pàÀ/_¾$ikkëââRRRR]]ííímgg‡+ÛØØLŸ>½  €$Éää䜜’$Y,ÖÇq…/^¨ªªâצ¦¦çÎvÔT›Bùùù222ùùù$I4hÀ€QQQ$Izzzúûûã:áááÙÙÙ$I&%%iii8q—4ÈÒÒ?›½uëÖáÇ7Ž!))‰Á`¤¥¥‘$Y^^þêÕ«¦®Õµk×B'NÄoÿúë/á ",kûöí]u» Î5]QrýõB¨G¥¥¥íÜu'róæMü.áUêRwåBxÝ4„Çãp8xoÜn>]¥[yþü¹••ÕQ|+555==½ÏŸ? Gðý…f‡B»wïþã?ðkƒ¿%;::Λ7oÒ¤I\.÷áÇ ãíÛ·÷ïßÏÍÍÅ7ª¶nݪªªš——WPPðèÑ£¼¼<< ÚÐÐPò°›j³þ@BÏž=ŒŒ¢££mllÊÊÊ|}}ïÞ½ëèè}ôèQ\gúôéø…‘‘Ñœ9sbbbæÎ‹K¼½½™L&BhòäÉAAA$I6ØßYII‰Ïç¿zõŠÃá0™L“¦¢Å3''G8r€ÒÐÐXµj•··7l{ѹ$€Z³fªª*Õát\&L°µµ½wïÞŽ;6oÞÜlý.•"lÚ´iݺuøµ²²rFF$ÝMyy9¬îdddAjjêÅ‹(ÉÏó¢E‹ð}øpaù²eËöìÙ3}út<Àž••EĘ1c„ØlvQQQvv¶ªªjÏž=[mSm6¸×`ooçÎÚÚZ{{{‡Ù³g§¥¥åçç[[[ã çÏŸÎÊÊ¢Ñheeeõ׿þöWTTäóù|>¿Á,6==½cÇŽÏ;wèС›6m7nœÈhåää8Nvvö¿þõ/ÉA'wûöí„„åË—SKG·mÛ¶‘#G¯[·®Ù ]*E˜={vhhèâŋ׭[§¨¨ùA·2|øð®‘TWW‡‡‡Ÿ:uª¨¨H XYY­_¿^MMmÔ¨Q=zôhöp&“©££Ó Ïç{zzº»»ß¼yóúõë“'OîÕ«F‹‹‹k°Z¹@ (+++,,Ä£BòòòÕÕÕøuYY™°¼þ—ø¦ÚlÀÞÞÞÇǧ®®ÎÁÁÁØØ8??ÿìÙ³£F³}úôiîܹwïÞµ±±!" --Mü)7Hpsssss«®®vvv...nP!tëÖ­Ÿ~ú)77!„Ÿ©ÓÐиxñâÅ‹Å÷ÕdffR‚ôEFF"„,XÐõf›I•••……E\\Ü;w&MšÔLí¶½ïÑîx<ž‹Àf³©Ž€–©¬¬Üµk—pAu++«7nàð¬Û>}úˆoaìØ±þþþUõà…W-,,jjj.]ºÄf³¹\.I’£Gž3gžsPTTtåÊÜȨQ£\\\ðM¹ŽŽŽ?ýôI’µµµNNN¹›6mÐT›õ•——Óh4¼´—›››ŠŠÊæÍ›ñ§oÞ¼¡Óéx²Bnnnß¾}…wµ $lç uuu bHIIyøð!.?tè‹Åj¼ÀèçÏŸœœç ÝJWš‹ ð0qqqíÖ)…,,,N:õ--lܸI¶Nk—E@Á¯ 3úúõëü±cÇü½Lœ8QXAKK‹ ˆÜÜ\>Ÿ/þ‡|Û¶mÂuMBøQÉ}ûöÅÅÅÉÉÉ͘1ãÞ½{ÑÑÑ‘‘‘¾¾¾†††UUU,ËÑÑqÚ´i¡ˆˆˆŸ~úI__¿®®®ÿþø7þ®]»<<<ŒY,Öĉ…«/øúú.^¼xûöí“&M:þ|SmÖÇd2--- ñ¯u{{û°°0;;;üé!CV¯^meeÕ»wouuu{{ûúƒ"ÕÁÏÏoÅŠxºâ€.\¸Ð8ÐÒÒŠŒŒôññÙ·o.QTTœ1cÆœ9s$§éúôéCuRóêÕ«¬¬,mmm1»Ú — ‘““2dÈ/¿üâèèØŽ1J“ŸŸ~´Õ«’899­_¿ÏØmÆ·d"Œ"€N§W¯^øÿÇú# :!ô矶sl]•­­-BhÛ¶mÂeee___üD%hµöE8{ö,jn_®±cÇ®Y³¦®®®¨¨hÅŠòòò þ¡;ãþD ž'j|7°¬¬L|5щ àäàéÓ§õêÃë*â5Á7*..Ž•““[²dIddd\\œ““Óׯ_wìØ¡§§ççç—ŸŸOuŒ@R999!ažÝ‚ h4šººúÏ?ÿ\SS“’’b``°víÚ1cÆèëëÇÆÆfff:::ª¨¨°X¬ · (**òôôd³ÙL&ÓÔÔßä*))Á…ªªªS§NÍËËÕ·lÙ¢­­­ªªÊáp„ ˆ,¬¯qk\.—Íf_¾|!D’ääÉ“ñªá¡aÆ>}Z¸"H¿~ý,X I/õ Ÿèiæâ¶.éÈ`t:øÞ¹x/^¼@õîÝ»ûìÞÙvNž<‰­¢/Q——ïò»·‘öEXµjBè·ß~SG¸dˆ@ ؾ}»¬¬,—Ë4h™™Yqq1I’|>ßÔÔtÞ¼y_¿~-((°±±™3g>VäJ!"—¹,‡$kuˆlMär&d½¹­[ÃOÅÄĈ¯)ƒ@ À[Þ?~œêX:77dÈ„PhhhãOq¢°xñâö¬khÿá÷ß·±±ùã?ÄÔ;v¬²²²¦¦¦²²2‡Ã9vìI’ƒ Áeddpº@’äƒètzUUURRAxþ¬Prr2AÂ[xºLnnnFF†¢¢â¥K—„ÎI’Y(Ik$I®\¹rðàÁL&311QX_dŠÐl/ Ìž=ÛÁÁáþýûâ«Á:‚ 6mÚ„Z¿~}MM Õátb§NJNNÖÓÓóôôlü©¹¹yddäÚ?0Ð:ÙÙÙ±±±ÍNk]´hQbbbVVVNNŽ——.nh”““£¢¢"œ¯ª««‹'.ˆ\)D¸ˆ¥¥%^D¸,‡¦¦¦MLL ª·VGýBIZC-[¶ìÝ»wãÇÇË™ˆÑl/;½sçŽøÝeB"ÐiÌš5ËÔÔôÓ§OÿùÏ¨Ž¥³âñxx›«M›6‰Y7žêD$¼­ŽÇšzh…Ãá”—— ÷$úøñ#Ng±XÚÚÚx¥ú•…K€¤ü£  /EêææöàÁƒ¢¢¢)S¦8;;“$ÙTa³­ —3‰ŽŽ¾~ýz㘯"¦—ðåjvÁVHè4dddvìØ zðàÕá „Pxxø°aönÝJu 3gÎÌÌÌ422š5kÕáéÀ?þü-˜šš2Ä××·ººº¨¨(00ÐÕÕUAAÁÈÈhäÈ‘K—.Å_ëß¾}›››kllleeåííS‡ââ∈„лwïbccy<ž‚‚‹Å‰¦ÈÂúšjmýúõUUUÇŽ;tè——WãmŠÙlvzz:~Ýl/ @Š@ôÝwßùúúÖÖÖº¸¸4Ø¥ñññŸ>}¢:‰¬_¿>""B]]ýÊ•+Ý|餮}ÿ½Y<‚ ®^½úùóg }}}==½ƒâ"""äååõõõ™L¦‡‡~Ò!22RNNÎÐÐÉdš››ãmä*++W¬XÁb±TTT8€—åYØ ÷ƭݽ{wß¾}çÏŸÇË™¸»»{xxðùüúGùúú>|XEEÅÝÝ]’^„***tttTTTš¹.’Ìkè\`º"èÚx<^6U__?++‹Ú`ð–Q’,ÓF9¼ÍF»}û6Õ±te”ìôˆW‚zñâE{vÚyáͲ—.]ÚlME “‘••½xñ¢±±qZGã¢Í IDATZš©©)þúĨ®®ž;wîÖ­[ ‚ ©¿/è`Õ‰ŠŠBÿ\4ñ E óQRRzüøñ´iÓŠ‹‹Ç¿bÅŠ¯_¿RT•’’2jÔ¨S§N1ŒðððùóçS>¼[úÑ£G«ªª¨Ž¥£{òäI||<“É´··o¶2¤tJ ãòåËAAA¡àààÞ½{ÿþûïðû±¾ääd''§Áƒ¿|ùRWW'UTÚ„ƒƒÃ°aò³³÷îÝKu,¿¿?Bè§Ÿ~jv'h)—ŒŒÌ¦M›?~lkk[\\¼råJ‹5mÚ´#Gޤ¦¦’ß0u«ó*..~úôi@@À!CŒŒŒ¢¢¢˜Læ† ^½zellLut ­«Ùºukii)Õát\ׯ_ðàAÏž=þùgIêwµènFŒsóæÍ]»vݽ{722222Äb±¬­­³²²Ú®wü˜ÖåË—Ÿ?Þv½4‹Á`p¹ÜOŸ>Õ_ †F£yzzîܹSMMÂØ@ûpppppp¸s玗—Wxx¸Œ |n(''ç‡~@­Y³¦ùgB"Ð5Lœ8qâĉ—/_~ûö-—Ë-***//ùòe[÷^XXØ`m™vÆápð>Újjjýúõ7nÜ”)SFM£Á¯¸n$$$døðá‘‘‘ëÖ­kv£î¦ººÚÙÙ9;;{ôèÑË–-“ð(øÿ€®£gÏž‹-Z´h~[PPPXXئ«5_¾|yóæÍ3fÌÀ³"¨B£Ñuuuá»cw¦§§wáÂ… &üú믃ž={6Õu|>Ö¬YOŸ>ÕÕÕ §Óé)]VÏž=¬-/uÏž=C±Ùl33³6íIØÛÛïÙ³gùòåßÿýË—/ûí7XK;??ÆŒ±±± ãÚµkl6[òc!ãÐu,[¶ìСCrrr»vírtt¬¬¬¤:"*ÅÆÆ<866¶OŸ><À+QJR]ÊÂ… ïܹ£¡¡ñçŸöìÙÓÏϯ¸¸˜ê Ú[RR’““ÓèÑ£‹‹‹­­­Ÿ?>tèЖ6)€®fôèÑñññîîîÕÕÕ;vìÐÓÓ›7o^xxx—_d,//ïàÁƒß}÷‰‰ITT”’’Òž={‡Ãqtt|ÿþ}ãO7lØÐ£GðððöLZ¤“"ðù|©´èà 0{ö캺º-[¶Ô/öìÙÍ›7™LæÊ•+©Š €v&++ëèèXWW÷믿6øèãÇ'Nœ ÂØØ˜’ؤ¢ùÁÀÀ ÀÎÎnذaqqqÂòµk׎3F__?66633ÓÑÑQEE…Åb-X° ¢¢W+**òôôd³ÙL&ÓÔÔ4-- !TRR‚ UUU§Nš——‡+oÙ²E[[[UU•ÃáG2E¨Ôx !øøø°X,Ê" ÝÒéôS§N5HزeKmm­‡‡‡¾¾>U±IÙœAƒ™˜˜”——“$yþüyMMÍÊÊJ\nffV\\L’$ŸÏ7557oÞׯ_ lllæÌ™ƒ·±±™>}zAAI’ÉÉÉ999$IÚÚÚº¸¸”””TWW{{{ÛÙÙ‘$™””Ä`0ÒÒÒH’,//õêUS…â „Ølv³5­ãéé‰Z´h‘¹¹9Bèĉ!&“YXXHuh€b—.]B͘1ƒê@ÚÏüùóBóçÏ¿ÿ>Bh̘1>|““£Ñh©©©TG÷M$Jöïß/|«££ËCBBpabb¢ŒŒ NH’|ðàN¯ªªJJJ""??¿~ƒÉÉÉAäååá·eee¡ÜÜÜŒŒ EEÅK—.}ùòEXYd¡x"ÐÖÒÒÒh4N722B5 !´fͪãÔë†)BFFN§ÓéçÎÃ)¢E‹BsçÎ¥:´o%Ñ\MMÍú¯sssñk ü"''GEE¥Gø­®®n]]]QQQvv¶ªªjÏž=ë·–••EĘ1c ,--ÙlvQQ‘žžÞ±cÇ‚ƒƒ555mllbbbB" ÔÎHÀ¿ ?~ ³@·¥§§7gΜºººS§N!„ª««Oœ8A£Ñ‚‚‚¨í[I”"|øð¿™™™§A‡S^^^RR‚ß~üø‘N§³X,mmí²²²ÂÂÂú•{õêE£ÑâââRþQPP`hhˆrss{ðàAQQÑ”)SœI’lª@-<#¡¸¸X]]Á,нá øéÇÌÌÌ®0 !$aŠpàÀŒŒ @°uëV‚ T0552dˆ¯¯ouuuQQQ`` «««‚‚‚‘‘ÑÈ‘#—.]ZTT„zûömnn®±±±•••··7NŠ‹‹#""BïÞ½‹åñx ,KVV¶©Båð@‚@ (..†!ÐÍ᧦¦–ŸŸß5†„)¢E‹<<@Š°Ë—/»¸¸Ì˜1Ï[ìV,XpôèQööíÛ®‘"ÀfÐíËåÆÇÇgggãe!@1pà@ƒaaaa`` #ÓiV­ªª:räȧOŸrrrrrr´´´^¼xAU0uuurrrø‰JäççkiiiiiõîÝÛÑÑ?d@û |xjj*…!„ðd#J(((¼~ýZø6 €ÍfÏž={ñâÅxtÇ!RSSããããããétú³gÏ¨Ž¨MÔÕÕ™™™effÚÚÚRK›Ð××çñxææææææ Âôôô¼¼¼|}}) Oºš¿ÑÐét W¯^]²dINNBHYYyÔ¨QFFF}úô¹GmmíóçÏãããñ3;rrrt:êÐþŸººº£GþòË/Ÿ?FÉÊÊÚÙÙÙÚÚöîÝ[KKKGG§ Hž/‰T>~ü‚'<ÉÊÊzzznذ¡wïÞTLjBgÏžýñÇ…wYZZ>þœÚ@ë¾}û¿–••ýᇶoß.œ¢W]]]?ièì E>@°}ûv„¥¥eHHˆ™™%‘ mܸqß¾}$Iöë×ïÞ½{}ûö¥:¨ÿzÿþý„ ð-ª>}úzyyÉÉÉQWE’ä³gÏ®^½º}ûv>Ÿ/++ëëë»eË Só¼¼¼¥K—^¹r!¤¥¥5räHsss333ƒAUHà[ÔÔÔdddÄÇÇ'$$$%%ñx<]]Ý#GŽŒ7ŽêÐÚ…Ë6µÊWWüå—_BÊÊÊÁÁÁ|>Ÿª0@KÝ»wOOO!dccÓAþáΞ=«¨¨ˆ200¸té’@  :¢N#==}Ö¬Yx|ÅÕÕ/ßþž>}ŠÿUUU9BI  í$%%YXX „‚صkÕáHŸ”S ‹S§NI·Í–¢6ExõꕜœA>¤$ð-JJJðÊ`»wï¦:ò·ß~Ãyü¢E‹jkk©§Sºy󦪪*B¨ÿþxƒ˜öTQQ1`À„ÝçÏŸÛ¹wÐ>êêê6mÚD§Ó ‚ˆŽŽ¦:)“rŠöîÝ;üÚÔÔôܹsÒm_¦µµµC‡E-_¾¼ý{RqíÚ5„’’’ð'™ÁÁÁ!:Žo€Vûû￈>|ø×¯_Û³ëÿûß!333Èðº<¼ ±®®®äÛ u mx£¡¦gÏžÅßW***Ú¿w -^^^ˆÒ-Xnß¾M£Ñ‚ˆŒŒ¤*†®¤°°°OŸ>¡Ù³g·[§÷ïß—‘‘¡Óé/_¾l·NUêêêð‡¥K—R‹45?º¤¤ÄÓÓ“Íf«ªªN:5//!ÄårÙlöåË—ñl†É“'ÿý÷¡aÆ>}!äããóöí[Ÿ~ýú-X°!´eËmmmUUU‡ƒ®®OQž?~ã(A'âããƒþù×lYYYS§NåñxAAANNN”ÄÐŰX¬7n0™Ì3gÎüþûïíÓéž={ðÌe˜­ÜÐh´óçÏÓh´ÐÐÐÊÊJªÃ‘žf“[[[—’’’êêjooo;;;\Õ£G>ìܹsàÀxt¥þ\„ú£III #--$ÉòòòW¯^µE¾ƒQ8Š0zôh„ПþÙþ])ª©©‘———‘‘)//oÿÞç΋²··‡É‰Ò…RQQ)((h‡îð¸ÅßÿÝ}ÂÜÜ!Ku RÓÌ(ÂÛ·oïß¿¿ÿ~555yyù­[·FGGãGGÇyóæMš4iãÆ.\ÿ’’ŸÏõêUEE“É411‘N‚Ó‘‚ÄÄD„n—œœœ±±±ð´=%%%>}Z^^þðáð„†t9::Nž<¹¼¼ü×_më¾ 233™L&žº œ"ÄÇÇSˆÔ4“"dee1fÌKKK6›-\ImÙ²eïÞ½?~¼©©©øvôôôŽ;¬©©icc#ð;’‚‚‚‘#GŽ5ŠÍfS øVÆ ³µµ-++kç~Á’%Kúõë×Î]w[¶l‘‘‘9pà—ËmÓŽBC‡íΫZuCøû!þ×ïšùñíÕ«F‹‹‹KùGAA^Ö”Ïç{zzº»»GGG_¿~½ñ± ¾¹¹¹=x𠨨hÊ”)ÎÎÎd—[²©ººúÖ­[xý;ÐÜ»w¯ÌÎÍͽ~ýº¢¢â¦M›Ú³ßîÃÄÄÄÍÍ­¶¶öĉmÚQEE…©©é!CÚ´ÐÑèéé 2D^^žê@¤¦™ÁØØØÊÊÊÛÛ¯Z\\?Z¿~}UUÕ±cÇ:äååÕø—)›ÍNOOǯ߽{ËãñX,–¬¬¬´O€öVRR’‘‘!ů]»&˜L¦›í„S¡¿Ñ¬Y³Bx^BÛ),,Ä3®Ú´ÐÑ((($''§¤¤PˆÔ4?)''ghhÈd2ÍÍÍïܹƒº{÷î¾}ûΟ?/''7cÆ www>Ÿ_ÿ@__ßÇ«¨¨¸»»WVV®X±‚Åb©¨¨8pàÂ… Ýù>ë£G&M𤮮.''7pàÀuëÖá°¶¶¶AAA¸Ž­­-A?Åf³q~†«UWW¢ˆì411ÑÁÁÁ`àNW­ZÕÒ°˜˜;;;ƒ¡¬¬lccSILÌâϺAÂ̲1ae999“‹/ ?ÒÑÑ9~ü¸ð-Ç#âÞ½{ÍÖ iii^^^­n¤1üwKüS -º\Raffvþüù6íB~~~–––ßÞŽ½½½’’Ò‹/rss[×Âãǯ\¹þAwÐ|ŠÐ£GÇçççùòåãÇûöíCÙÛÛ—––â…ÃB{÷î½ÿ¾¬¬l\\~ú!4~üø?–——Ÿ?ÞÜÜ<..®¬¬¬¼¼}Ê`0ðΠ"ƒ—$*!<›*33SüuI Ìš5KKK+11ñÛ…Ný…‰Í×'²"ûmÐTNNÎØ±c]\\òóóq¨'Nœ055=|ø0®fooŸœœŒ?EEGGFGG ßijj6{Å$¹¶‘‘‘vvv––– ååå<°°°8wîœ$mv"´«7oÞp¹ÜÙ³g7(ùg†Á`lذ! €Çã}c¿}úôÑÓÓ[ºtixx8Þø¸’’’¸\.¾•+4{ö좢¢/^ˆ‰¹Eg-¡ŠŠŠUUU g„}ËÅlœ¤¦¦†††J÷¡üëUKK«Çâ›,‹-úøñãîÝ»ÓÓÓÿøã„³³óׯ_ÓÓÓóóóutt<<|‘%j@FFÆÛÛûÇû÷ï×ÑÑù–D¡SaÀÄäë"Y‘ýÖoJ]]ý矮©©ÁxuÑÐÐШ¨(|cÈÔÔ”ÍfãœàË—/ÉÉÉ~~~õSáµäß šúb³|ùòÕ«W¯]»¶oß¾ŠŠŠzzz+V¬h‡'f;Õt/xY'œäJbáÂ…ÁÁÁ¡¡¡ÞÞÞßÒ/F{ôèÑîÝ»7nܘ’’¢¥¥õË/¿à%z$‡§¬6^CC!$LêEÆÜìYïÞ½ÿIC1Œ?Š ã×_Åÿ—2™Ì;wîôèÑCÂø[q1óó󽼼Μ9Ããñddd ‡ &''·sçΦyÿþ}ë&+UUU!ÉR‘—K¸N —Ë}øð!ƒÁÀ‹šäææâñ€­ÿÇÞÆ5qµ ? {I€°ÔeQÀ ÔÍ ¬Z±(‚Z[AíµÖµ.¸‹V­¸`µ*V+à+ î­â†¨UQQTP„dî‡s››7„¶LÏÿCáÌäœgKžœ9˦MFFF………ÅÅÅ·nÝ*,,ÄÝø+µ‚ªSò—+^…Íf‹A‘ÿư°0ü{433óóóûã?6lØPSSsüøq©?ÜOž<©¼"QIjIŠ€ikk‡‡‡Ïœ9óàÁƒ›6m‰‚‹‹ËªU«Æ§`îÛ¼/ þþþ4Z‹þn‹¿0Ì™3§OŸ>ݺukImHá|]‘vI’Œ‹‹ÓÔÔÄÏöïߨ¿ÿ=z>|xéÒ¥Axzz^»vmòäÉ7oÞìׯ߈#.\H’¤P(¼yóæ÷ß«RüŽÉ<#ªÿÛéh EP*SSS„PQQþ[Ö(ùÝwß·°i6›½eË–-[¶ðùüèèèGGÇ&­ò„ÿ(â­ó0œàëj(æF¯zÖ¬Y⎾Fç‘/_¾|ýúõïß¿ ݸq£ø©¡†††H$Ÿ†_KÎiÆÍܸq#~†B„H$ÊÊÊÊÊÊRð½Í ¯¯¯È§KC·kΜ9;vìøê«¯ð:%âEMÄ'àEMÞ¿odd$ù+S\CuJ~‹A™6mZŸ>}Ö­[çåå%ÿ8ÑÄBCCøá‡uëÖ>}ÚØØxèС’È ^‘¨$‰D"ssó.]º(xÕW®\YµjUCG­­­µ´´òóó%EzÔú &'_¯ŸÈÊowÇŽÀkë8pÀÊÊêõë×W®\Y»v-B(((èÀK–,!ÂÇÇgÛ¶m¡«W¯zyy±Ùl‹•‘‘Q]]]UU%ùFñ;VÿL©oD{÷î]³f B¨[·nwîÜiƽRS"(•“““µµullìêÕ«%ËI’lè³! `Û¶m[¶li­ttt,X°bÅŠŒŒŒ&¥NNNVVVqqqâÂcÇŽ™˜˜ôë×ONÌ^5ƒÁ°¶¶nÒUXYYÅÄÄôèÑ#99Ù××!daa!ù åõëרޗò¦ÞÌÍ›7óùü­[·â¿æ666£G–?ã³±±±··WürB™™™ø“|2o—x’‹/ž?~ôèÑâEM¤:êE"QYYÙÇ¥=hkk‹Ç”H®%ù/³¡:¥òùü¨¨¨ñãÇ—””(øF„ÐèÑ£¿ûW¯þñÇÓ¦M“úÿÂÊʪ~ðŠWŽ}úô©°°°¢¢B‘“B?~”ÎÖ‚ H’LOOˆˆ˜8qb£ç«õ¬¡|5ÈÊiwÖ¬YK–,ÑÖÖçìÖ­›´jÕ*<ÊÇÇ',,,//ïêÕ«»víByyy]½zµººÚÕÕUò Œâw¬þ™øXQQ®0$$䫯¾ŠŽŽnê]Rk0A©444öìÙ³yóæÈÈÈ÷ïßWWW?~üø»ï¾“ÿè—_~ùõ×_«ªªšÝ.—Ë]µjÕ“'OjkkËÊʶlÙRSS#õ¹Þ(MMͨ¨¨ÈÈÈÝ»w—••UTT8p`ÅŠ[·nÕÕÕ•s£W- ù$;ä°¶¶ž9s¦8íÞ·oßÍ›7ëêêòóó-Z4pà@ñ¤™5J[[{ñâů_¿Þ¼y³©©éëׯwíÚkkk.×È‘#»5þC©Hï·ÌÛU’†5qrr4hPXX^&5++ ?åíÛ·/7.vîÜ)nNr9 ¥ˆÉ\E‘7bt:=((hË–-—/_ ‘:*3xÅ+ÇðM¶´´lôVKòññ¹UÏ•+WÂÃÃñgœ¯ÿõ×_xJ<†Y¬þ­®ß®¾¾>›Íçuuu111ïß¿g³Ùl6{È!Aüþûï![[Û/¾øâäÉ“999x,~ôpíÚ5©†¿cRg:99YZZŠ;zzzl6ÛÐа©7GÝAŠ lþþþ—/_¾q㆓““‘‘ѤI“Øl¶ü½à àç營U7žžÞ?P__ßÒÒòäÉ“§N’œ;¤  &œ;w.!!ÁÒÒÒÜÜüСCÇŸ>}z£1Ë¿êÈÈH] âÁGZºtéýû÷ñ&<òkúô麺º‡Á`$&&6˜" $…[·n >ÜÍÍíòåËŠWÒ(sssMMÍ¢¢¢ÚÚZùgÖ¿] ­S"sQ„PRR’¶¶¶­­-ƒÁ ÂS¶mÛ–’’âìì}z+Ö ¤àïèÝ»wWü-’)‚H$211‘“`Ч =i)‚B.^¼˜˜˜˜™™9uêTü§“$I33³ÂÂÂ/^dggK­¾___î¿üüü¼½½»wï®È´iwww9í„P~~~×zð`¥ÕÐB”Ð(üèáÇx¸ukÁKœ?^ÁÑ ð,ʱcÇ6ïíAüÏÿüO3+ –M"ìíí>Œ_gddhjjŠD¢ôôt ’’\ž’’B§Óq'Ìóª|ݺu¥¥¥OŸ>Å gâr< w$ØÛÛïÛ·—ËiW z@ËÉïEh;xfùÎ;•ÜnQXXˆ—ZJOOWü]Rjjj}‹Šô"äååu©gë֭ʬ¡Ci½ MzO#ÑÕÕ …B¡°  ÀÐÐP<ú´[·n€ÇãYYYÉ<ÿÏ?ÿăÚ455ÅËÛ?~|çÎwîÜ166¾{÷®"Ó¦å·K-}}ýQ£F)yû`ÐFjjj<==Ÿ:ßZ6mÚäïï¿~ýúéÓ§+8…(nÆ cÇŽÅKG4üUеµµü…È”PPkÍœÑÀf³ËËËKKKñoÞ¼¡ÓéL&³¡óCCCqJ"Îîܹóý÷ߟ:u ¯¢%žÙüü_ÅÅÅõ×}kj»ÊÄb±îÝ»—‘‘‘ŸŸOu, ¥îÝ»wýúuåÿÓ;vì!CŠŠŠ6nܨä¦Û½ìììèèhMMM%Ü[‡ÓìÍ$šúðáC·nÝ$¿ëª»f¦ÇÑÑqÑ¢E|>ŸÇã-_¾|Ò¤I::: ¾ýÍ›7ãÆÛµk—››.Qpfs Ûmkxjûƒ¨´HUUÕóçÏét:^ÔÕÕ…††6cºoSYZZ>~ü¸%‹ uôäÉ“ÜÜÜö4–¨™)AgΜùðკ™™­­­ÍÞ½{{BBÇ[¶l™xmW¯^)2³¹…í¶µ¾}û"„ÒÒÒ¨´È£G„B¡“““¶¶¶ò[8p`dd¤H$š:ujGÛy¶…   çÏŸs8œ¨¨(%´èàà §§—››+îòÁÇÑ¿ßÛ j‡B´ª†+’$‰·9g2™Êo´ ‘H„Wtž;w.…aàýc,--333) £¨®®@™™™½yó¦5H WT^åâܹsÍh¨#¡Pˆçð7j‚Õ[“ŸŸß¨Q£x<^XXÕ±€fÚ¿rr²©©©œ{” &&ÆÍÍíÇ ÀQ òóóÝÜÜpebb¢2ÇŸ>!´dÉ’šš¥5 (´zõê?ÚÙÙ)˜s¢:Gi}ö"$™——‡l?tè%€–ÈÉÉÑÓÓC8q‚êXÈšššY³fáÿOƒƒƒ‹‹‹©ŽHÔÕÕýþûïx2T=²²²š]Uózª««{öì‰Zºti³›êâÁƒt:]CC#55•êXZ¤­ïСC!‚ ¾ÿþûòòrªÂM"‰öîÝ‹'ÍOš4‰êpþß®]»ðBô:::K–,¯: "‰’’’Äû;xyy•––¶¤Âæ¥$IþóÏ?ššš -Âڇϟ?ãM~üñGªcie"´‰Ý»wãÉÓfffÇçóùä.\O” lá'J«ËÎΞ4iÞ?FCCcРA7n¼uëV~~~+î¡ÖJJJž>}š(^OÂÖÖöøñã-¿EÍNH’\¼x1|ahߎ=Š×ä¶³³«ªª¢:œVF o<ª¦>~ühjjÊb±p®@•§OŸNŸ>ýþýûøG+++ggçÎ;SB§Ó¯]»öìÙ3ü™™Ùž={&NœHu\²½~ýzÙ²e'Ož …’åÞÞÞÙÙÙTEE9››7oJýsvvž8qâòåËñVÔõݼySr‰wùª««y<^```3…ÔÕÕmݺuõêÕ555ÆÆÆË–-swwÿòË/qÏPS$I¾xñâáDZ±±çÏŸG=zÿþýMÝa\õ)´º"hGGÇþùgíÚµx—Ò÷ïßëèèüõ×_TÇþŸ——WVV–¦¦&‡ÃqssÛ°aƒ*/hhccƒ{¤þþûïÿüç?ÏŸ?/((ÀÏ:òj]æææ$IYXXtíÚuÔ¨Qx«qùïâóùʹi4méÒ¥cÇŽÅ_–,Y‚"bôèÑ………J´:‹uéÒ%q¦nll¼cÇŽj£j#Ћ $/_¾|ùòe;XžùîÝ»8pàŒ3¨Ž¥¥,--ÙlvŸ>}44ÔxjOaa¡@  : Êhjj²ÙlüFq555Mýû §§'Þã±H’@Š –ôôô/^Œþ»#AÜ…ðóÏ?S€vRu%îHHMMÅ%Ð… AŠ ®Ä ÑÑÑ¡ÚÚZèBЊ EPc¸#!##!T\\ ]Z¤jLÜ‘`bbR^^]Z¤ê w$”””ˆD"èBЊ EPoâŽèBк EP{³gÏf±XÁÁÁÐ… AŠ ö¸\®P(är¹uuuTÇ ý€A½½~ýÚÓÓ³´´ôÂ… AAA%h-4ª͇󃼼¼>~üøÄ‰¡ØØX ~­JUPPpûöí<|øÐÈÈèï¿ÿ¦:"ð|}}«««]]]]]]ljjJuD¨ø,QWâüÀÝÝýÂ… Ïž=>|8d JVWW·uëÖÕ«W×ÔÔà‡²²2j£b÷ïß÷îÝ… Búúú›7o'‚ê¸PðA¢–¤òƒ~ýú]ºt ²eÊÊÊš>}ú½{÷BÇïß¿¿««k¿~ý ¨ üŸòòò»wï>xðàþýûW®\™;wîÉ“'<Ø­[7ªC@ À§ˆú©ŸàrÈ”éÚµk¾¾¾"‘¨K—.ðõõ¥:" ƒ‘‘Ñ_|1qâD„PRRRXXصk×lmmïÝ»×·o_ª£@ÕÁpE5ÓP~€á,ÁØØøÄ‰0z±íTTT̘1C$M˜0!++ òµ0nܸììì‘#G …ÂÐÐÐÚÚZª#@ÕAŠ Näçd J°xñâ7oÞ|ùå—ñññzzzT‡Å`0N:egg—™™¹víZªÃ@ÕAŠ 6É0ÈÚÔíÛ·÷íÛ§­­rÔŽ®®nLLŒ¦¦ææÍ›Ÿ| :T¤ª«åùYB+z÷î¾¾¾••Õ€–êܹ³¾¾~~~>Õ º EPQ­•`%´–ºººÏŸ?kiiQh) ÏŸ? …Bª@uAŠ ŠZ7?À KhÔ7,XðñãÇ–WuøðáqãÆµ¼ ¤*§-ò ²ù"""~ýõ×Î;/X°€Ëå¶Q+·nÝòóó311ÑÒÒ²³³[µjUee%BÈÓÓsÅŠøOOO‚ nß¾-~‹ÅJJJ]¸p!!‹ƒƒCCí¦§§ûúúàv.\Èçó›Zɵk×¼½½ ôõõÝÜÜΟ?/>$?fù.@NNNóßÀ’’’Áƒ5 7hHTKÛåd rìܹs„ |>ÿ×_µ±±i‹DáÌ™3>>>C† ÉÈÈøôéÓ‰'¸\nzzzý3™Læ¢E‹ªGGG§ú_^^^ .į322dž_[[;räÈž={æääTVVž:uªgÏžM­$))ÉÏÏoüøñùùù\.744ô믿–\Z@NÌò/|éÒ¥ÕºwïÞ¼°¼¼<777›3gÎèëë7t#Ûââb„‹Å¢:&{õêÕ_|rww¯¨¨h»†îÝ»gllŒúúë¯AÛ5¤Ž?~zæÌ„¿¿¿üJbbb¤ …B¡µµõÊ•+¥ÊE"I’C‡]¾|9.:tè’%KÌÍÍOž<‰K˜Lfbb¢ø¨øL’$}||–,Y"?žW¯^!„^¼xÑÐ V‚ƒ_½zµdá¶mÛ˜Lfuuµü˜¿ð°|ùò§OŸZ[[/X°W.ÇàÁƒB·nÝj´iÐ$ ¡ &PhЋ *Úºÿ@ô%ÈÑ»wï„„„ôôôVïQxòäI~~þ”)S¤Êq:"ÅÀÀ`õêÕË–-k•ßNçÎmllÂÂÂN:•››ÛŒ233óóó¿ùæÉÂ)S¦ðx¼û÷ï˹IÞ’ÒÒÒÜÝÝçλmÛ¶&U©Ý®0ÏãñÔ¨‘$ɺº:@ „ü“Ü9úÔ©SÚÚÚmÝ¢:ÒÖÖ8Qøí·ßfÏžíââÒìÚpÿ–¹¹¹‚çûí·QQQû÷ïov£F»uëÖöíÛ׬Yóüùs ‹µk×N›6Mñð(N©àÍÌÌBEEEòcnô·oßþÛo¿á×oÞ¼i^wîÜÑÑÑ Tüºr´Û$ɪª*ª£hMMM„M¦œ qf  Õë^)F««««­­ýøñ#ŸÏov=¦¦¦¡¢¢"ü”G‘v###¿ûî»àààf7*Æf³·lÙ²eË>ŸâèèˆT‹ÅB‰ ñg3¾.917zá³fÍbÐÐݵ©HsæÌár¹W¯^íÑ£‡‚—hH;L˜L¦:c~úôéèÑ£/^¼8a„„„„¶þZÿüùs//¯ÂÂB__ßøøx]]Ý6mNí¼{÷nëÖ­G­­­%I288xÅŠvvvgÏžmvNNNÖÖÖ±±±«W¯–,'I²¡^ñ€€€mÛ¶mÙ²¥ÙÖ§££³`Á‚+Vddd(ž"899YYYÅÅÅEDDˆ ;fbbÒ¯_?ù17zá ÃÚÚºåhhh] Ì›7zRu¢H–ùìܹÓÂÂâÆ³fͪ««£: ¨ššš)S¦¤§§÷èÑcÓ¦MT‡€ªƒAÍÈÏ ?P“}ûöqèС>}úà±o@Å¥¤¤8::ž8qÿâÔq³7” RõÓP–ù2;öÖ­[öööOž<éׯ_PPPTTTjjj£«*eªªªº~ýúöíÛ===_½zåââòèÑ#wwwªC@ $IRhŽŒŒ __ßâââ1cÆ$$$äææB~ |ÕÕÕ+W®Ü±c‡P(Ä%vvv¹¹¹ÔFÄÌÌÌÞ¿_ÓéôåË—ÿüóÏt:½Õš2eJlllll,,ÚX]Q]I®½èïï÷îݲ²2È”LWWwëÖ­ß~ûí7ŸîííM’dff¦ÁË—/I’,//üøqC…’dVE’äÙ³g;uê”››»uëV;;»ŠŠ ’$]]]=ŠOàp8qqqøu£­ihhá ïÑ£ÇÙ³gI’ Yºt©œšñù½zõzñâEMMMXXX¿~ýZøQ}UUU!===ªQ'AAA¡ØØXª 5AŠÐÎÙÛÛïÙ³Gü£µµuRR.ß·o.LOO×ÐÐÀéI’)))t:½ºº:33“ üÉ*öôéS‚ ñeee!.—ûêÕ+]]Ý„„üqŽÉ,l´*üã‚ zöìÉ`0ÒÓÓqICäò[Áz÷ŸÏf³·mÛ6þ|’$¿øâ‹Ë—/Ë©YêF=zôHSSS$5ÔJû)B3@ŠÚ%xÐÐþ™››K¾ær¹øµ™™~QPP`hhØ©S'üc·nÝÇ{ÿþ½‘‘‘©©©dmyyyAxxxàU‡û÷ïÏb±x<žMLLLTT”¹¹¹››Ûµk×B2 ­ 3g΋/†.~FÐù­`>>>ÉÉÉW¯^õñññõõMNN~ùòeQQÑ!C½âe``  Å;6@ûÃÛ?ñƃ"‘èÝ»wl6[ê6›]^^^ZZг„7oÞÐét&“ieeUVVöñãG‹%>ÙÒÒ’F£¥¥¥HÕÈçó£¢¢Æ_RRB„ÌÂF« …!!!“'O¾xñâùóçG-u‚ÔÂûrZÁ|||æÍ›'|}}‹ŠŠbcc\ÉjXÒ0èEhÿ¢££_½z%‰6mÚD„¯¯¯Ô ÇÑÑqÑ¢E|>ŸÇã-_¾|Ò¤I:::NNNƒ Ãßì³²²¸\®³³ó€ÂÃÃ?~üˆ*))Á˼xñ"55µ®®NGG‡Édâ)2 Ū !Q]]óûᅦ††Š÷óc±X999øµüV0¼¼¼ÄÄD‚ ¼¼¼¶oßîããSÿLÉš #ƒ¡ý›5kVPPP§NNœ8qöìY}}}©‚8sæÌ‡ÌÌÌlmmmllöîÝ‹%%%ikkÛÚÚ2Œ   <ÓáôéÓZZZ½zõb0}ûöMNNFUVVΟ?ŸÉdFGGÿç?ÿ!Bf¡dÓ2«ºråÊîÝ»ãããµ´´&L˜0yòä   ©îýE‹8pÀÐÐpòäɶ‚b0ýû÷g³Ù_|ñBÈÇǧ¼¼ÜÛÛ»þí’¬¹%·ÔA’$Õ1€6äàà9nÜ8ªj£ººZOOOOO¯²²’êXÔÆ”)Sbccccc¿ùæªc Õ@/d€2ÀŒ†vîùóçT‡@-A/d€2@ŠT”Ì%•( ¤!„\\\âã㩎€ ¡iÝÍÚÍVíæB uAŠÐÎ988¬\¹ÒÃÃÃÖÖ655µ´´4$$„Åb"„æÍ›—••5oÞ¼®]»Îœ9!Äb±RSSq iiiÆÆÆ2ksppX½z5ÞõÀÉÉéáÇõàñx¸EƒÁáp^¾|‰z÷îݘ1c ™LæÌ™3ñ¢¡W¯^yxx:;;ß¹sG\‰Ì°%%''³ÿejjJžÊÑÐ¥.¤¡x #ƒ¡ý;wîÜéÓ§_¾|éáá1~üøªªªœœœ¢¢"kkk¼ƒí®]»zõêµk×®7oÞ IDAT"Iò«¯¾êÝ»7Ç»té’d$2ÖäëëËý—ŸŸŸ··w÷îÝå¿Q|!îîî2『ŽâͨA³··ß·o~ýôéS‚ ñeee!.—K’$‡Ã‰‹‹¿‹ÉdÞ¼y¿¾ÿ¾‘‘QýÚð‡Ư322455E"‘dë™™™AI¦§§khh”””àSRRètzuuõ£Gh4Zyy9.?v옾¾¾ü°ë[·nƒƒCii©ü7J^HCñȽ¯íYUUBHOOê@Ô Î>ccc©€ÖK'µffføE^^AøÛ?Æb±x<ž¹¹y3jÃŒŒŒð ]]]¡P( i´ÿÿGõþý{###SSSÉ·â§Bݺu<Ëåâç¸ÜÆÆ¦©a?~|çÎwîÜÁOFä¿Q|! Åcee¥ømiª««—-[¶iÓ&ªPR„ÄÒÒ’F£ÉœL(µ5¢¶¶6ŸÏǯñ—ïæ±²²*++ûøñ#‹Å²ÙìòòòÒÒRü©üæÍ:Îd2Ùlö§OŸNG‰Ç È [Ò;w¾ÿþûsçÎáG Š¿±¡xš}ÕíI’ÅÅÅTG ŒEè@œ þñãG„PIIIRR>Äb±rrrÄgöíÛ÷Â… !@°sçÎf·èää4hР°°0‡ÊÊÊâr¹ÇÑÑqÑ¢E|>ŸÇã-_¾|Ò¤I:::§{÷îÑÑѸÝ]»v5¶Ø›7oÆ·k×.777E®WRCñ4ûªÕŽŽNdd$ÕQ¨)BÇrúôi--­^½z1Œ¾}û&''ãòE‹8pÀÐÐpòäÉ¡mÛ¶¥¤¤8;;6lðàÁ-i1))I[[ÛÖÖ–Á`}þü™ ˆ3gÎ|øðÁÌÌÌÖÖÖÆÆfïÞ½!‚ \]]}}}ÝÝÝ [,!!Çã-[¶Ìú_¯^½Rä¸]™ñtXAH=tLI’TÇP-‡š9sæÌ™38@u,êaÊ”)±±±±±±ß|ó Õ±rrr"##oÞ¼Ù«W/[[Û=zLœ8ÑÄÄ„ê¸TŒEÐnedd¬X±âܹsøûpvv6.ÿõ×_ÏŸ?/ d‚@ûTRR2bÄ.—«££3cÆŒiÓ¦½{÷.'''...33sРA§OŸ8p Õaª.H´O .är¹nnnÉÉÉÚÚÚ¡ „æÎxñâE77·üü|6›Mu¤* †+h‡®\¹røða]]݃âü@ŒÁ`œ;wnÈ!B¡ÏÞ2AŠ Âk¿.^¼ØÎήþQ àà`„Ðùó畚ڀ@;„Ç'ÚÚÚ6t‚ŸŸAÉÉÉ0³¯!"èˆôõõ ‚044¤:Õ)€v«¨¨¨¡C.\‰DŽŽŽR+Ð1H´C£FB­_¿^¼á‹”ãÇ#„F­Ô°Ô ¤Ú¡)S¦Œ5ª¤¤dîܹR£ „Bá¼yóÎ;‡ E RíÓÞ½{ ºuëUZZš‘‘qòäIÿÝ»wëèè?~X”RB …ÂÔÔT™‡ž?^]]­äxT_UUÕË—/eºqã†H$Rr< ¾.]º$$$°Ùì·oßΟ?ßÄÄ„ÃáLœ8ñÂ… ,+99yÒ¤ITÇ¨Ò E âââN:7®¢¢¢þѰ°0ccã;wî(?0•uãÆ ccãÿùŸÿ©¨´´4 ÀÄÄò*U0bĈ÷ïߟ>}ÚÝÝ MMÍáÇÿôÓO·oß2dÕÑ©:HÈÔÔ´OŸ><o÷îÝR‡nܸqýúuGGGJbSMNNN:::/^¼wïžÔ¡_ýµ¬¬lÀ€ººº”Ĥhhhøûû§¤¤XZZ …ÂC‡mݺUÎz @ RBEDD „¶mÛ&Õ‘°zõj„Ð?þÓÇ%1™Ìyóæ¡ïXiiéÎ;ë— Ž E „···‡‡‡TGîB011ùá‡(ŒM5-X°€Á`Hu$à.„áÇ4ˆÂØh"þ¸#ÏçãèB£~GBee%t!€ö„€µ©bC‡MII™0aÂÉ“'G}þüy“ÜÜ\Hdâñxݺu«¨¨1bÄßÿýÕW_%&&>üï¿ÿ¦:´ö¦OŸ>oÞ¼ia%ååå"‘ÈÐÐPC£¥_srr˜Lf +Q}4ª¨ˆˆü ÷ðáC]rᎄ7fff"„ð}ƒ.„¶P^^þéÓ§Öªªå•to×Ћø/¸#Édòx<èBh”¸#ß1èBh#¸ …•ôêÕ«   ++Ë¢…Uu„ ð_pGÇCÐ… qG¾cÐ…ÐFZåß!~¾`hhhllÜòÚ:èEHà Ѕ  qGt!¨8kkë÷ïßççç[YYQ‹z€ ixjt!(¨¡5Pwð  ÍÛÛ; @‘µ„Bá‰'òóó LLLž¡PçääÏ#€z ­¶¶öòåËšššcÆŒ‘sÎÈ‘#{ö왓“SYYyêÔ©ž={¶iTB¡°Mëo¶€€‚ .]º$õÜ'ÎÎÎAAAÏž=ëܹ3Lj†€ÿöæÍ„Ð_|!çœW¯^!„^¼x!U>wî\:Îb±ºté2cÆ ’$ß¾};zôhƒabb2cÆŒŠŠ |¦½½ýÒ¥K½¼¼\]]ûöí{ÿþýú­ØÛÛ¯X±ÂÝݽGׯ_/))™6m“É444ô÷÷çr¹ø´œœwwwƒáä䥯¯Ë™LæÍ›7ñëû÷ïá× Õ³aÃKKKCCCssóuëÖɼ™X,B¨°°ÿXWW+ΙlllŸîííËøá‡ÚÚÚ‚‚‚>}ú4š"Ȭ'33ÓÀÀàåË—$I–——?~ü¸þå4ÄÙÙ!”žžÉ*ƒ¡©:ÖF,E „,,,äœC£Ñnݺµ}ûö5kÖ<þÜÂÂbíÚµÓ¦M“:-###33óÚµkºººººº7nôññÙ¿¿ŽŽBèûï¿g0¡ÀÀÀ… ^¾|9 @ª†°°°N:!„ž={vãÆ .—‹GPnÚ´ÉÈȨ°°°  àùóçÿüóNg³ÙK–,™9s¦œÈ³²²dÖ£§§' ?~Ìf³ FïÞ½¿c™™™qqqgΜyöìBHGGÇÚÚÚÔÔôàÁƒT¼*Ep¹\ü;RšÀÀ@uß¶ª®®®¢¢!TVV3)@š‡Ãit»&6›½eË–-[¶ðùüèèèGGGWWWÉs ñgŸ_—••ɯ!Èçó£¢¢Æ_RRB„äå4„Ëå>þ<55µ´´tÍš5iii!&“ ­­Ýh ÍÀf³åß±V¤©©©œ†ÚI’ááá ÆÆÆL&óÉ“'cÆŒ¹|ù²¾¾>Õ¡©<ªŸtTÎÓ§OBrÎ)((X¹refffMMͧOŸ6oÞ¬¡¡‘™™I’¤¯¯/ëGþ;P`æÌ™ÕÕÕ?~ôðð˜2e >dooß­[·œœ¡P¸~ýz33³ÏŸ?KµbooŸ˜˜(þÑÝÝ=88¸¸¸˜$I‡‰D"GGÇùóç×ÖÖr¹\WWWñX„1cÆüøã$IÖÖÖúûû‹Ç"Ȭçùóç7oÞ$IþþûïL&S$I]NCpד!‰Îž=ûå—_⿱;v쨪ªj쮃¶²lÙ2„žž^jjj~~>^-täÈ‘555T‡¦ê EH+))AàÏH™ÊÊÊBCCmllh4šžž^ÿþý“’’ð¡¿ÿþ»K—. #00$ÉÜÜÜQ£F1ŒN:…††âñ‰$IÚÛÛoܸ±ÿþ†††çîÝ»õ[‘JJJJfΜijjj``Ð¥K—9sæàòììì!C†0 gggÉ /^¼puuurr:thdd¤äŒ†úõ}Μ9£«« {yË)@ü—˜˜Hu ªŽ$ÉÓ§O#¹‹UãDáþýûsæÌQbhÚõë×'Ož\WW·zõê¹sçÖ?ÁÃÃãøñã4mݺu;wîT~„jvzÈ ‰¾øâ‹>$$$À²ÁrüùçŸÁÁÁ]ºtÉÍÍUdîP‚‡zyy•——Ï;w×®]rÎ|xaa¡»»ûâÅ‹kjj¨Š|>ÿ§Ÿ~òññùøñã˜1cîܹûQŽüw‹¦N:ýõ×_666-©M__ÿüùóŽŽŽx«§ÊÊÊÖŠS]Q¹´#@}‚ùóçã¿æææÑÑÑgœêêê;w²X,„AK–,µýU„äM­U'lõ$cMpýúõ¥K—Þ½{!d``0jÔ(ÿÁƒ·ðÛ› "I277÷æÍ›gÏžý믿ðÊ!C†lÞ¼yÈ!TGBhÛ¶m .¤ÓéIII~~~­XóË—/ÝÝÝ 'Ož|ìØ1E&O¶K"š†$ÉÄÄĨ¨¨””q!AæææƒÎËË£0¶Vamm}ûöíÂÂBÉ¡C‡þôÓOrVYJvøðá3fqôèQ©-ZÅ£G¼¼¼ÊÊÊÂÃÃ÷ìÙÓêõ«HÍôáÇS§N%&&feeq¹\„——×µk׍ޫ¥<==¯_¿N›Ívtt?~üW_}Åf³©Ž ü¿Ó§OOœ8±®®n×®]2·`h)))#Gެ®®^¹råÚµkÛ¨U) $YPPPRRÂçóÛ®•½{÷:t(,,lÆŒm×ŠŽŽ“Éd³Ù°¦²jº~ýú¨Q£ø|þêÕ«#""Ú´­³gÏŽ?¾®®.**ê‡~hÓ¶TêíA–––m=•Ïg³²²‚¥;¬‡ðùü¹sç¶u~€;vìÁƒCCCüñG“޶ÕS‚@í4i‹¦ÖÒ‘·z‚€hÆM­¥Ãnõ)UÇãñFŒñöíÛ!C†œ8q‚N§+9€õë×ãýJüýýÓÓÓ•Ü:U E ÒZ¸ESké€[=AŠ@¥Ý»wïþýûÝ»wÿ믿Œ© CCCãèѣÇçr¹111T…¡L"PiÞÞÞñññ©©©ÍÞ¢©µhii>}zÕªUëׯ§6å€ITݤI“¨áÿèèè¬Y³†ê(”z ¤RÈ)d€2@Š E¨ÚÚZªC 2@ŠP3ZZZT‡@‡)@ÍAut"@H*íòåËqqq2ýþûïÏž=Sr<t"T×­[·†>þüÊÊJ©CEEE?þø£££ã‡(‰ ¨ˆ/¿üòÏ?ÿ”|ÑŽ¥¥¥(­9HªkÈ!ƒ ***Ú»w¯Ô¡­[·VVVúûû[ZZR[äééIü·œœ9绸¸ÄÇÇ+-<µ£ú÷R€J‹ˆˆ@ýòË/’ EEEÑÑÑA¬ZµŠºÐ:¢¥K—VKèÞ½{ëÖ/ [·B•mT-@ŠPi#FŒ¨ß‘ îBèÛ·/…±u@ššš:‚ÈÏÏg±X'OžD‘$9zôè©S§"„æÍ›—••5oÞ¼®]»Îœ9!TZZÂb±ŒŒŒ q+W®ôðð°µµMMMuppX½zµ¯¯¯³³³““ÓÇñi¿üòK÷îÝ ØlöòåËI’l(È;w0@üã;w ¥žUI5ÚPl¯^½òðð044tvvÞ¹s§¸“ŸÅb¥¦¦â×iiiÆÆÆøuCõlܸÑÊÊÊÈȈÍf¯_¿¾I÷G2†;wî4ï×L$¨¶¿þú !dff6þ|„PDD„¾¾>A< :´ŽeèСø³YÊÙ³g;uê”››»uëV;;»ŠŠ \ÎápâââħyzzNœ8±´´”Ï燇‡{{{ãr{{{—’’’$E"‘½½}ÿþýËËËI’Ü´iS¿~ýði§Nzÿþ=I’™™™üñ.wuu=zô¨ä‹’’'OžàfΜ9kÖ,©˜¥•›H$rvvþá‡jkk úô飯¯ßÎd2oÞ¼‰_ß¿ßÈÈHÎ5fff¼|ù’$ÉòòòÇ+~p sæÌ©­­ýðá‡ÃÇ "ÔÀ AƒBžžžâÿPT‡3tèP]]]濺té">´`Á‚ž={2Œôôtq¡äGàÓ§O ‚(,,Ä?–••!„¸\.I’öööûöí¿ËÞÞþðáÃøuFF†¦¦¦H$’ŠdñâÅ¡¡¡øuý$É)S¦,X°€$ÉÏŸ?3ŒþùGªÉFŠíÑ£Gt:½²²—ÇÇÇËOªçÕ«Wººº âäIñûóèÑ#†&’$;¦Ì¦Ô. h–ˆˆˆ‘#GÞ»w!tûöm…@•Y³f-Z´¿ÖÐøÿGÕsæÌÙ±cÇW_}Åápd¾1// q ‹Åâñxæææ!333É“ŒŒð ]]]¡P( i4Z|||TTT^^F+++óõõ•ç·ß~yâĉ.]ºH>w7ÚPl\.—ÉdêééáÂ.]ºÈiQN=½zõЉ‰‰ŠŠš6mZŸ>}Ö­[çåå¥à{¹\.‹Åb0¸ÐÆÆF~ ­ R€À#îܹcllüéÓ§€€…@ ƒamm-U( CBB&Ož|ñâÅóçÏ=—K®ƒiiiI£Ñš=gïíÛ·Ó¦M»r力›AË–-{ùò¥œó===ŒŒÎ;wèÐ!ü¤_ކb«­­åñxUUU8Kx÷îø¶¶6ŸÏǯñ7~ù×Èçó£¢¢Æ_RR‚§„(çOŸNG‰(( W¨<µáÓ§OÐ…@!¡PÈ— ‰BÕÕÕ111¿ÿþ{hhèû÷ïñÉ,K<+ÒÙÙyÀ€ááá?~D•””$%%)ÞîçÏŸB¸7¾¡Õ´$}ûí·k×®½wï>)GC±q8;;»åË— ‚ÂÂÂ-[¶ˆßÒ·oß . „ÁÎ;å×óâÅ‹ÔÔÔºº:&“©©©©øýáp8Ý»wŽŽÆmíÚµKñ›Ör"ÔîH@ÁD EFFêJ¸zõê•+WvïÞ¯¥¥5a„ɓ'ái„‹-:pà€¡¡áäÉ“B§OŸÖÒÒêÕ«ƒÁèÛ·orr²âí:::.Y²dÀ€C‡={¶O£o }úô©¿¿?‹Åjôd™±‘˜˜xÿþ}&“9lذiÓ¦‰Ïß¶m[JJг³ó°aÃ,¿žÊÊÊùóç3™LCCÃèèèÿüç?¸ÿ@‘ûƒcHHHpuuõõõuwwWü¦µA6}ª««SSS‡ Bu8 Cƒ^Úƒ'N „Ö­[ùº³··_¼x1BèÈ‘#TÇ::Hh>|ˆ’¿÷PxuáPèèàAj¯¸¸ØÌÌÌÐа´´Ši>þlddD§ÓËËËa¶* ü5@íåææÒh4ÈÚ;;;‘Hôöí[ªcüA@í½|ù²®®N‘í쀺055oÞ¼¡:СAŠ@;¡««Ku ÕèèèP"Ða>|xܸqTGP"Э[·üüüLLL´´´ìììV­ZUYY‰òôôo«èééIÄíÛ·Åïb±XIII⣠.$dqpph¨Ýôôt___ÜîÂ… ù|~“*iF ×®]óöö600Ð××wss;þ¼¸6|Ahkk÷íÛ÷ܹsrÊ¿9¡Û·o;–ÉdÒétkkëààà'Ož(øÛ€*"ÐÑ9sÆÇÇgÈ!Ÿ>}:qâ—ËMOO¯&“É\´hQCõèèèTÿËËËkáÂ…øuFF†ÌókkkGŽÙ³gÏœœœÊÊÊS§NõìÙ³I•4£†¤¤$??¿ñãÇçççs¹ÜÐÐЯ¿þZr‚ŸþY  :tâĉEEEò˹9§OŸöööîß¿ÿÇËËËSRR\]]ãâ⺓¨Õ¨$‰æÌ™³xñâå˗ㇳÿ~™Ó¡¿ýöÛÇŸ:ujüøñ2k?A×ÐÐÐÔÔ”ÿ@=??¿°°pÞ¼yl6!äää„÷R¼’¦Ö ‰æÍ›·téÒ¹s犯¨¼¼|Á‚“&M§A£ÑLLL~úé§;v<þÜÌÌLf¹‚7G$Í;wÉ’%+W®Ä%666óçÏ—sgPЋ@‡öäÉ“üüü)S¦H•QÿdƒÕ«W/[¶¬®®®åMwîÜÙÆÆ&,,ìÔ©S¹¹¹J¨!333??ÿ›o¾‘,œ2e Ç»ÿ¾d!I’qqqšššÝ»wW¤5|sp£õï0ªR:´ââb„¹¹¹‚çûí·û÷ïoyÓ4íÖ­[®®®kÖ¬qppèÚµkS—nj ?~Dõ.wˆìرƒÍf3ŒíÛ·8pÀÊÊJ~¹$™7GªÑ½{÷²Ùl6›=hР&],Ê)š©©)’ø€lF‹ŒŒ\³fMEEEË[g³Ù[¶lyüøqYYÙ?üÒÔU‡›T^:¢°°P²_;¾¡Y³f¥§§çå儆†ŠOk¨\’Ì›ƒßáôôôÅ‹ãä U)š“““µµull¬T¹œ¥Ùìíí·lÙÒŠaèèè,X°@WW·¡±­Rƒ“““•••Ô8ÁcÇŽ™˜˜ôë×ÿ¨¯¯Ïf³;uê$õކʥԿ9NNN–––â;¬§§Çf³ ¿4¨ÃèÐ444öìÙ¨££lbb’½gÏž9;ÿòË/>>>"‘¨%Ms¹ÜèèèI“&ÙÙÙUWWïÛ·¯¦¦FüQÝ5hjjFEEM:•Édkhh?~|ÅŠ{öìiÅ…§¤nަ¦æîÝ»¿ùæ:>uêTssóâââ´´4™£=P)Ћ@Gçïïùòå7n8ýo{÷ÓÔùÇqü)-P ýuT¼à hVG¡n¨éÄ[øcºáœŒtñƶÜœ™Æ1£‰Ù/ñ2$SGØ”EgÔyÑ͹֊.3‚à-C``Ëå÷GµcX™€rÚò~ýUNŸó=4–O¾}úN£ÑÌœ9300P¯×wð”èèèøøø†††îœW¥R•••M›6ÍÇÇ'((èÀyyy¶¯$<» öïß•••›››œœÜ içÑ_Î믿~âĉ³gÏêõz__ß1cÆ4448pà)žx¸Ó#àòöíÛ—”””˜˜¸wïÞËÎÎÎÏÏo»ŸœÖäÉ“?~ìØ±I“&I] z/ºÀÖ"½…^¯—äæ@ååå±±±íSSSÓÒÒzxBD\ž§§§Z­¶X,¦×ë;^aðŒ„„„tÿ¦ÆOeÒÜܬV« Þ¢!%>h\ÞàÁƒëêê***¤.OÍ7êêê(u!èÕX®¸¼»wïúûû«Tªšš¹\.u9讚š???¥RyïÞ= ]ÀåiµÚÐÐÐúúúGï-Wd2™Z[[#""ÈpƒAqäÈ© ÁS`{£¢¢¤.½4îàøñã“'Oöññ¹téÒ£7!„ 1™L£Gnnn>þü¨Q£¤.½]ÀLš4)11±¾¾>%%¥›û"CB‹%99Ùjµ¾÷Þ{äHŽ.à&îÞ½«Óé*++¿øâ ooo©+BçÔ××Ïž=ûСCaaaf³ù)Þ6躀›Ðjµ»ví’ÉdûöíÓét………RW„N8räHxxø¡C‡ärùîÝ»Épt·b6›“““Íf³bÊ”)ÑÑуaÔ¨Q*•JêÒÐ^mmí… ŒFãÏ?ÿ|âÄ !DLLLVVVXX˜Ô¥B÷cµZ?ùä“ÌÌL«Õj9räåË—¥­ 6lXqq±íqŸ>}Ö­[÷þûï{xÐÜ…³ "î©¢¢âܹsF£Ñd2ùûû÷ÝwRWôt´¶¶Êd2©«x:&Ož\[[k0¢¢¢ÆŽ uEÀ¿¸Œ+VlܸqãÆéééR׸?:ZÀ"p€ˆ "ˆÀ"p€ˆ "ˆÀ"p€ˆ "ˆÀ"p€ˆ "ˆÀ"p€ˆÀ5\¿~ýĉRWô"D®¡ªªêâÅ‹RWô"D®$44tâĉRWô D®$ @¯×K]Ð+€Dà8@D€DÎëêÕ«)))­­­þè‡~ÈÌÌüûï¿{¾* —PH]8ÖÜÜ÷çŸÆÇÇ'$$´ûéªU« ===—/_.Iy€Û£‹ÀIÉåò>úH±víÚv„ï¿ÿ¾°°ÐßßáÂ…U¸?"畜œ=88Xê¢Çè"ºzñâÅm÷-ŽŠŠºyó¦„%A¡T*KJJìo¼fÓ¦MÉÉÉ2™LÚ€G7”››»téÒÛ·o{yy-Y²d̘1ƒaèСR×!„°X,&“Éh4Øú:S§NݹsgHHˆÔ¥ÿBDÜÍæÍ›SSS…S¦LÙ¹sçÀ¥®•“““ššzçÎþýûÿöÛoZ­Vꊀ·RRRQ__Ÿ™™iû– œ\mmí¤I“Ο??kÖ¬œœ©ËþADÜGKKË„ Μ9“””´gÏ©ËÁ“*--}ñÅëêêöïߟ u9ÀDÀ}lß¾}áÂ… ¸rå -kײmÛ¶Å‹k4š²²26~€“`ë$À}:tH‘™™I>p9‹-zá…jjj~úé'©k "îÃh4 !Æ'u!芸¸8!„Éd’ºà"à&***ªªª´Zí!C¤®]a0ÄÜ8vWÜÄ7BCCÌ&<.J¯×+ ooo©  ‹¸‰’’’ÒÒÒ   © A555±I6œp+ü§vU´àlx7z—ìììéÓ§K]@DðÀÙ³gãããµZ­——WXXØêÕ«ëëë…ãÇ_µj•í˜ñãÇËd²sçÎÙŸåïŸoÿizzºÌ‘áÇ?î¼f³yâĉ¾¾¾¶ó¦§§766vj’.ÌpêÔ© &øúúúøøÄÆÆ>|Ø>›íe2™··wTTTAAAãöA»âââ¶ã*•*,,ìwÞùý÷ß»úÊÒ "BˆƒÆÅÅÅÄÄýõ×_ß|óMUU•Ùl~ôȾ}û._¾üqó(•ʆ‡^}õÕôôtÛ㢢"‡Ç[,–©S§Ž1¢¸¸¸¾¾>//oĈš¤ 3äççÇÇÇ¿ñÆåååUUUóæÍ{óÍ7¿üòKûœ|ðÕj­¬¬7nÜŒ3ìwÈt8ž‘‘ÑÐÆóÏ?ßöà[·nåææZ,–ÈÈÈ_~ùåI_À ˆ–––%K–¬X±âÃ? Q©T;vì;vì£ÏŸ?¿¤¤¤ím¦ÛQ>äáá!—Ëm½¼¼\^^^]]ššèéé©ÓéRRR:5IgghiiIMMÍÈÈXºtésÏ=§V«çÏŸ¿nݺeË–566Úæ”Éd …B«Õ¦¥¥Ý¿ÿêÕ«ŒÛ'·±/)°ìãã™=a„+V<ù‹HŽˆ@\¹r¥¼¼<11±Ý¸Ãt¾¾¾üñÊ•+›ššºêAƒ :tÑ¢Eyyy¥¥¥=0ÃåË—ËËËgÏžÝv011ñÎ;.\h;ØÚÚš““#—ËíŽÇ;6kÖ¬ÂÂB«ÕúäO¤ED nݺ%„xÂãçÏŸïáá±cÇŽîŸZ¡Pœ={Ö`0¬Y³føðáC† iÛð3ܾ}[>¾¡¡¡;çU©TeeeÓ¦Móññ :pà@^^žN§{¦3$$$ìß¿?((( +++77799¹k—°~ýú>mœ-Z$“É>ýôÓ+W®H] :'--­²²2""‚ˆçADÜÇ+¯¼²páÂû÷ïÏ›7 .ääɓ۶móòòÚ³gBÁÍà,ˆ€[Ù°aChh¨Ñhœ>}zMMÔåà¿ýøão¿ývkkëêÕ«GŽ)u9À?ˆ€[ñõõÍÎÎV(‡ÿöÛo¥®uïÞ½ ÄÄÄTWWÇÆÆfddH]ð/Ü£pC¥¥¥)))§NBDFFFGG †ÈÈHµZ-ui½Õj-++3™LF£±°°ðÖ­[J¥ríڵ˖-“ËåRWü pO­­­[·nÍÈȨ««³èõz³Ù,mUÐh4m?=zôîÝ»‡.aIÀãwVWWg4F£Édòõõµõ !F£ÑhFŽi0¢¢¢ÂÃÃ=<øÀNêÿryÅ£gÔ””IEND®B`‚cinit-0.3pre19/doc/devel/codingguideline.text000066400000000000000000000073471130343226700212620ustar00rootroot00000000000000Coding style ============ Nico Schottelius 0.1, for cinit, Initial version from 2006-11-13 :Author Initials: NS This document describes the coding style used in cinit. Indent ------ Indent the code by 3 spaces for each level. Indent variable names, so the names begin all at the same position. Use three spaces to place them. Whitespaces ----------- Where to put or avoid whitespaces (space or linefeed (lf)). Spaces ~~~~~~ - After closing brace "if(test) return 0;" - Spaces before and after '=', '>', '<', '==', '!='', '>=', '<=', '>>', '<<', '&', '&&', '|', '||' - After start of comment and before end of comment: '/* text */' After ')', ',' No spaces ~~~~~~~~~ - Within braces and code "(!test)", - Before braces "if(code)" - No space before ), so if '))', do not put a space after the first ')' Linebreaks ~~~~~~~~~~ This somehow includes the setting of braces (indirectly through (not) setting spaces. If ^^ Put the if, the braces and the opening curly brace on one line, put the closing one together with `else` and the new opening curly brace on one line: ------------------------------------------------------------------------------ if(...) { /* code */ } else { /* else: code */ } ------------------------------------------------------------------------------ While ^^^^^ ------------------------------------------------------------------------------ while(condition) { /* repeat */ } ------------------------------------------------------------------------------ Do-While ^^^^^^^^ ------------------------------------------------------------------------------ do { /* something */ } while(running); ------------------------------------------------------------------------------ Switch ^^^^^^ ------------------------------------------------------------------------------ switch(value) { case DO_SOMETHING: /* code */ break; default: break; } ------------------------------------------------------------------------------ Where to put curly braces ------------------------- Functions ~~~~~~~~~ Opening and closing curly braces are placed on a seperate row: ------------------------------------------------------------------------------ int func(int params) { body } ------------------------------------------------------------------------------ If, else, while, do-while ~~~~~~~~~~~~~~~~~~~~~~~~~ See above. Comments --------- where necessery, do not state the obvious in comments: /* this code increments tmp */ ++tmp; If there is more than one line containing a comment, try to adjust them so they look the same in width and position: ------------------------------------------------------------------------------ int illuminati = 23; /* do not want to comment that */ int the_answer_to_everything = 42; /* 42. */ [...] while(illuminati < the_answer_to_everything) { /* only try before them */ overtake_world(&self); /* overtake is complex */ } ------------------------------------------------------------------------------ Header ------- Put a header into each file, containing: - Date of file being put into existence (year is enough) - Name and e-mail (obfuscated if you want) of the author(s) - Description of the function - Copyright statement (if not included GPLv2 or later is assumed) Includes ~~~~~~~~ Include system headers first, then place own headers. Comment the includes, wherefore you added them. Example: ------------------------------------------------------------------------------ #include /* write */ #include "cinit.h> /* cinit_ipc_* */ ------------------------------------------------------------------------------ cinit-0.3pre19/doc/devel/communication.text000066400000000000000000000205241130343226700207660ustar00rootroot00000000000000cinit - communication ===================== Nico Schottelius 0.1 for cinit-0.3, Initial version: 2006-08-11 :Author Initials: NS This document describes the internal communication of cinit. It is thought to be read by developers. Introduction ------------ This document describes the messages used between cinit, cinit forks and other programs that want to talk to cinit. It does NOT describe the communication method, but only the messages sent (for the communication method read "ipc.text"). Document status ~~~~~~~~~~~~~~~ This document is still being written, it is not finished. About Messages -------------- Order ~~~~~ The client always initiates the communication. cinit will begin listening to messages directly after its start. Numbers ~~~~~~~ Can be found in include/cinit.h. Data ~~~~~ A message always conists of a predefined structure (see src/headers/comm.h). Can't use a structure, were missing the point that we cannot transfer dynamic length strings. Thus the protocol consists of: client(int) => cinit cinit(ini) => client => after that follows command specific data The byte order is host specific (may be little or big endian). STRUCTURE WITH STATIC SIZE. MSGRCV! IPC LAYER CREATES TRANSPORT! Type ~~~~ Messages are binary data. The messages ------------ The client always uses the same structure (struct msg_client) to contact cinit. This way cinit does not need to handle dynamic data structures. cinit in contrast delivers different data structures to its clients, depending on the question. The questions are issued by any type of client, the internal command used is noted in square brackets ([]). The answers are given by cinit. Question: Start a service (and its dependencies) [CMD_START_SVC] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This command is issued either by a cinit fork or by an external client. cinit will start a fork, which tries to start the service and its dependencies. The client must provide cinit with the following information: . Name of the service to be started . Reason why to start it . eventually additional information (see below) The reason ^^^^^^^^^^ Can be one of: - RS_NONE (it's a manual start request) - RS_WANTS (a currently starting service wants to start this service) - RS_NEEDS (a currently starting service needs to start this service) If the reason is RS_WANTS or RS_NEEDS the client must supply the name of the service, which wants it to be started. Question: Start a service (nothing else) [CMD_START_SVC_ONLY] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This command may only be issued by an external client. cinit will start a fork, which tries to start the service and which will report the status back. Question: Stop a service (and its dependencies) [CMD_STOP_SVC] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This command is issued either by a cinit fork or by an external client. cinit will start a fork, which tries to stop the service and each service that 'needs' it. This function works recursively, thus also killing those services, that need the service that need the current service. Question: Stop a service (nothing else) [CMD_STOP_SVC_ONLY] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This command may only be issued by an external client. cinit will start a fork, which tries to stop this service and which will report the status back. Question: Stop a service (plus 'needs' and 'wants') [CMD_STOP_SVC_WANTS] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Same as 'Stop a service (and its dependencies)', but also stop the services that want to have this service. This function works recursively, thus also killing those services, that 'need' or 'want' the service that 'need' or 'want' the current service. Question: What's the status of service XYZ? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Code, length of service name, the service name (without \0). int, int, char[]; Question: Could you change the status? [CMD_CHG_STAT] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ A cinit fork reports the new status of a service. Question: Could you start the rescue mode? [CMD_RESCUE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This command may only be issued by an external client. cinit will not give an answer to this question. cinit will stop all services, kill all other processes and after that spawn the rescue program. Question: Could you halt the system? [CMD_HALT] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This command may only be issued by an external client. cinit will not give an answer to this question. cinit will stop all services, kill all other processes and after that halt the system. Question: Could you reboot the system? [CMD_REBOOT] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This command may only be issued by an external client. cinit will not give an answer to this question. cinit will stop all services, kill all other processes and after that reboot the system. Question: Could you poweroff the system? [CMD_POWEROFF] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This command may only be issued by an external client. cinit will not give an answer to this question. cinit will stop all services, kill all other processes and after that poweroff the system. If poweroff is not possible, the system will be halted. Question: Could you warmboot the system? [CMD_WBOOT] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This command may only be issued by an external client. cinit will not give an answer to this question. cinit will stop all services, kill all other processes and after that restart itself and the bootup process. Question: Could you send information about a service? [CMD_INFO] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This command may only be issued by an external client. cinit will respond with detailled information about the service to the client. Answer: Return short status of a service ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This answer is used as a response to: - Question: Start a service (and its dependencies) - Question: Start a service (nothing else) - Question: Stop a service (and its dependencies) - Question: Stop a service (nothing else) - Question: Stop a service (plus 'needs' and 'wants') - Question: Could you change the status? cinit only responds the status of the asked service. The structure send is "asw_sstatus", which only include a status byte. Answer: Return long status of a service ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This answer is used as a response to: - Question: Could you send information about a service? old Messages (to be transferred into this document) --------------------------------------------------- CMD_START_SVC: I want to start a service. CMD_CHG_STATUS: I want to change the status of a service. CMD_STOP_SVC: Please shutdown a service. CMD_RESCUE: Kill everything, and spawn a sulogin shell. CMD_UPDATE: Hot-reboot system and reload cinit. CMD_HALT: Halt the system CMD_REBOOT: Reboot the system CMD_POWEROFF: Power-off the system -------------------------------------------------------------------------------- Service status: -------------------------------------------------------------------------------- service status (cinit), Nico Schottelius 2005-09-29 (Last Modified: -) -------------------------------------------------------------------------------- There are service status and service returns. Service status is a status a service can have. A service return is a value from a function that describes what happened with the service. Status has ST_ prefix, return has RT_ prefix. See cinit.h for most up to date versions. ST_NEED_FAIL - this service will not be started, until the needs are started ST_FAIL - this service failed to start ST_UNSPEC - some unknown error. This should never happen. ST_ERR - ??? /* tried earlier, service failed, won't retry */ ST_SUCCESS - service was successfully started - senseful? ST_TMP - some instance is currently working on it ST_ONCE - executed once sucessfully ST_RESPAWN - service is running and respawning ST_TMPNOW 55 /* now you are on it - only for clients */ #define ST_OFF 56 /* Switching service off */ cinit-0.3pre19/doc/devel/configuring.text000066400000000000000000000005251130343226700204320ustar00rootroot00000000000000cinit/doc/devel/using-conf.text ================================ Nico Schottelius 0.1, Initial Version from 2006-07-28 :Author Initials: NS About conf/* and how to use the configurations. Introduction ------------ Who should read those documents? -------------------------------- Content ------- cinit-0.3pre19/doc/devel/cross-compiling.text000066400000000000000000000010471130343226700212300ustar00rootroot00000000000000TODO: - merge into "Cross compiling" cinit - Problems that may arise =============================== Nico Schottelius 0.1, for cinit 0.3, Initial Version from 2006-06-03 :Author Initials: NS Max open files OS dependent Installing cinit Introduction ------------ General sections, OS-specific, ... Installing ---------- From source ~~~~~~~~~~~ In General ^^^^^^^^^^ Download, edit conf/os to the os Cross-compiling ^^^^^^^^^^^^^^^ conf/os to destination os conf/cc conf/ld conf/cflags conf/ldflags cinit-0.3pre19/doc/devel/gpl3-header.c000066400000000000000000000015571130343226700174570ustar00rootroot00000000000000/******************************************************************************* * * 2009 Nico Schottelius (nico-cinit at schottelius.org) * * This file is part of cinit. * cinit is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * cinit is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with cinit. If not, see . * * purpose_of_this_file_is_also_there_behind_the_big_header * */ cinit-0.3pre19/doc/devel/gpl3-header.sh000066400000000000000000000013551130343226700176430ustar00rootroot00000000000000#!/bin/sh # # 2009 Nico Schottelius (nico-cinit at schottelius.org) # # This file is part of cinit. # # cinit is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # cinit is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with cinit. If not, see . # # # Description here # cinit-0.3pre19/doc/devel/ipc.text000066400000000000000000000112651130343226700166760ustar00rootroot00000000000000IPC - in cinit and in general ============================= Nico Schottelius 0.1, Initial Version from 2006-07-09 :Author Initials: NS IPC - Inter process communication Introduction ------------ This document describes the IPC methods used and/or tested for cinit. It does not describe in detail, how the different methods work (this is already done many times, there's great documentation available online), but more the advantages and disadvantages (especially for an init system). What is IPC? ~~~~~~~~~~~~ IPC describes methods to communicate between different processes (programs). IPC as described by SUSV3 (The Single UNIX Specification Version 3) aka IEEE Std 1003.1, 2004 Edition aka POSIX only defines MSQ, SHM and Semaphores as IPC. This document also covers Sockets and FIFOs. What is not (yet) covered by this document? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Speed of different IPC methods, different behaviour on different unices. Why do you need IPC for an init system? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cinit IPC history + analysis ---------------------------- FIFOs ~~~~~ First in - first out File on the filesystem Always need two files for two way communication Hints ^^^^^ The first idea for IPC in cinit was to use two FIFOs, like minit does. Wrong assumption: runit also uses fifos, but two fifos for each services. That way more parallel transmissions is possible. You have to pay attention: Maximum number of opened files! (On Linux 2.6 this is 1024, which makes a maximum of 512 services. This limit is most likely never reached, but you have to keep it in mind). Sockets ~~~~~~~ Clean and beautiful. They allow easy two way communication. If you created a socket, fs is r/o, you cannot use it, although there is SO_REUSE. First method: Using memory mapped part (tmpfs). Second method: use interal communication (pipes!) and external after /etc/cinit/ becomes writable. Current IPC configuration -------------------------- - switchable (conf/ipc_method) - each ipc implementation needs: ipc.h -> for global variables and ipc specific things prefix variables with ipc_ int cinit_ipc_init(void); -> general initialization return 1 on success, 0 on failure int cinit_ipc_listen(void); -> begin to listen for messages int cinit_ipc_send(void *data) -> send data to a client Abstraction layer: cinit_ipc_* ------------------------------ You can choose or even reimplement ipc code for cinit. You only have to create a directory below src/ipc/ and create the following necessary functions: int cinit_ipc_init(void); ~~~~~~~~~~~~~~~~~~~~~~~~~ Initialise the IPC functions in cinit. int cinit_ipc_listen(void); ~~~~~~~~~~~~~~~~~~~~~~~~~~~ Never ending looping function that listens for commands and passes the retrieved command to read_command(). other ~~~~~~ int cinit_ipc_sclose(void); /* fork of cinit come from outside! */ int cinit_ipc_ssend(void *data); /* send to a client from the server */ void cinit_ipc_destroy(void); /* destroy ipc handler in cinit */ cinit_get_data(int ident, int size, void *data) => read size bytes from client with ident /***************************************************************************** * Functions: in clients */ int cinit_ipc_logon(void); /* logon to init (client init) */ int cinit_ipc_connect(void); /* connect to init */ int cinit_ipc_csend(struct cinit_message *data); /* send to the server from a client */ -------------------------------------------------------------------------------- Messages: struct cinit_question qsn; struct cinit_answer asr; question: answer: int cinit_send_to(struct cinit_question *data, struct cinit_answer *res) -> return 0 on ipc errors -------------------------------------------------------------------------------- enable / disable services: - send svc - send flags - recv return: CINIT_ASW_SVC_STOPPED: successfully stopped the service CINIT_ASW_SVC_ERR: failed to stop the service CINIT_ASW_SVC_WANTS: wants failed CINIT_ASW_SVC_NEEDS: needs failed opt contains number of failed services retriev them from cinit after that -------------------------------------------------------------------------------- TO SORT: 1. message queues o clients schreiben rein o datenpaket gross genug fuer antwort? 2. shared memory o client kann direkt rauslesen, was gestartet werden muss o client kann direkt abhaengigkeiten starten, muss diese aber eintragen Ausprobieren: - Mutexe - Message Queues - Ideen: Message queue 1. Client geht auf die normale als id = pid (cast!) dann rueck via anderer queue cinit-0.3pre19/doc/devel/lists.text000066400000000000000000000010071130343226700172520ustar00rootroot00000000000000Lists in cinit-0.3 are generalized, all have the same general layout: - double linked - have 'prev' and 'next' as pointers Add an element to a list /--------------------------\ |<->first<->middle<->last<->| After insert: /-------------------------------\ |<->first<->middle<->last<->new<->| We alway have 'first'. Need to adjust: - new->prev = last (= first->next) - new->next = first - first->prev = new - first->prev->next (= last->next) = new cinit-0.3pre19/doc/devel/merging.other.initsystems.text000066400000000000000000000043701130343226700232640ustar00rootroot00000000000000TODO: - rewrite to asciidoc - implement a sample merge -------------------------------------------------------------------------------- Merging other init systems to cinit, Nico Schottelius, 2005-06-02 (Last Modified: 2005-06-11) -------------------------------------------------------------------------------- 1. Preamble 2. General to do 3. Create a script 1. Preamble There is no tool available to merge any existing init-system-configuration to cinit style. This is not because the author of cinit does not care about support for that. He simply he has a) no access to every init-system available b) not the time to analyze every init system He instead spends the time to improve and bugfix cinit. This does not mean that he does not accepts scripts, which do the work. In fact, creating and submitting a merge tool is much appreciated! 2. General to do 1. Choose your target init and possibly target platform: - sysvinit may be different on AIX, SuSE and Debian - /etc/rc may look different on each *BSD - Sometimes even same platforms differ in versions: SuSE 5.1 uses a different configuration then SuSE 9.0 So decide whether you want and can write a general merge tool or if you have to specialize. After deciding, name the script you want to write with the following syntax: cinit-merge.$init-$platform-$version $platform and $version (either both or only platform) can be omitted. Examples: cinit-merge.sysvinit-debian-3.0 cinit-merge.minit 2. Analyze how it works, detect the mechanism in it Your script has to detect if dependencies exist and resolve them. It has to take care of special configurations and possibly warn the user. 3. Create a script Now, after you learned how the old init system works, you can start creating the merge-script (naming see above). This merge script a) will perhaps not cover full old system (if so, warnings should be printed b) should try to avoid using old (shell)-scripts, as starting a shell for every service needed makes starting up slow c) will include some basic features, that are needed everytime on this platform (setting kernel configuration, hostname, etc) cinit-0.3pre19/doc/devel/optimising.cinit000066400000000000000000000016361130343226700204300ustar00rootroot00000000000000-------------------------------------------------------------------------------- optimising cinit, Nico Schottelius, 2005-06-09 (Last Modified: -) -------------------------------------------------------------------------------- 0. Warning 1. gcc options 2. striping 0. Warning Any optimisation may cause cinit (not just cinit, but any program) to fail and to do mysterious things instead of expected actions. 1. gcc options gcc knows of several optimisation flags. Mostly interesting is -Os for small size (this is btw broken on gcc-3.4.3 on x86!). One can also pass -Werror so that any warning makes the compile to fail. The current standard for cinit is: (see CFLAGS in the Makefile). 2. striping With strip(1) you can remove specific sections of object files. You have to find out, which ones you can remove safely (for instance with objdump(1)). The current standard for cinit is: (see STRIP in the Makefile) cinit-0.3pre19/doc/devel/problems.occured.text000066400000000000000000000007071130343226700213700ustar00rootroot00000000000000It sometimes looked like the child() from fork() returned earlier then the fork() call -- is that possible? if(li->status == FE_NOT) { svc_report_status(li->abs_path, "Nothing to execute :-)"); /* * probably a problem: we exit too fast, cinit does not yet have us in * the process list. is that possible? => catch with sleep */ // sleep(2); _exit(0); /* nothing there? fine! */ } cinit-0.3pre19/doc/devel/testing-cinit-in-vm.text000066400000000000000000000004321130343226700217220ustar00rootroot00000000000000 m = manually a = automated m Install OS of your choice into KVM, including make, gcc, ssh and rsync m Startup VM a Transfer data to VM a Compile cinit on VM a Install cinit and configuration on VM m Configure bootloader to add cinit as alternative choice m Reboot and start cinit cinit-0.3pre19/doc/devel/testing.text000066400000000000000000000032331130343226700175740ustar00rootroot00000000000000-------------------------------------------------------------------------------- testing cinit in a User-Mode-Linux (uml), Nico Schottelius 2005-06-14 (Last Modified: 2005-06-14) -------------------------------------------------------------------------------- 1. Get an image you want to install cinit to 2. Compile an UML 3. change bin/cinit.uml.test to your needs 4. put a configuration (/etc/cinit) on to your image 5. ./bin/cinit.uml.test -> wait, your Linux starts with cinit enabled. If you omit 4, you'll see how cinit will fail without having its base directory. -------------------------------------------------------------------------------- Using a raw (x86) hd image: Access partition 1 via losetup: sudo losetup -o 32256 /dev/loop0 "$hierabs/debian-hd.img" linux ubd0=/dev/loop0 init=/sbin/cinit "$@" Offset was taken from fdisk: [19:22] denkbrett:emu# fdisk -l -u /dev/sda Disk /dev/sda: 80.0 GB, 80026361856 bytes 255 heads, 63 sectors/track, 9729 cylinders, total 156301488 sectors Units = sectors of 1 * 512 = 512 bytes Disk identifier: 0x1669c708 Device Boot Start End Blocks Id System /dev/sda1 63 19535039 9767488+ 83 Linux /dev/sda2 19535040 23438834 1951897+ 82 Linux swap / Solaris /dev/sda3 23438835 156296384 66428775 83 Linux ===> 63*512bytes spaeter beginnt sda1 [19:23] denkbrett:~% echo 512\*63 |bc -l 32256 Results in losetup -o 32256 /dev/loop0 ./debian-hd.img Scripts from the nsbin project (lo-*) can be used. It can be found at http://unix.schottelius.org/cgi-bin/gitweb.cgi. -------------------------------------------------------------------------------- cinit-0.3pre19/doc/do-not-read/000077500000000000000000000000001130343226700162225ustar00rootroot00000000000000cinit-0.3pre19/doc/do-not-read/ancient/000077500000000000000000000000001130343226700176435ustar00rootroot00000000000000cinit-0.3pre19/doc/do-not-read/ancient/Changelog000066400000000000000000000006341130343226700214600ustar00rootroot00000000000000Mo Okt 3 00:19:40 CEST 2005 *Changelog can now be found in git database (cg-log) Sun May 8 12:20:35 CEST 2005 *Changelog can now be found in monotone database (monotone log) Sat Apr 30 15:53:53 CEST 2005 * add socket code Tue Apr 26 15:29:53 CEST 2005 * removed is_cinit support, initial messaging framework Mon Apr 18 14:07:50 CEST 2005 * added is_cinit -> recognize if you are cinit or a fork cinit-0.3pre19/doc/do-not-read/ancient/README000066400000000000000000000006521130343226700205260ustar00rootroot00000000000000Ancient ======= Nico Schottelius 0.1, for cinit 0.3, Initial Version from 2006-06-02 These files may be incorrect, outdated, totally wrong or even trying to take over world dominance. Why are they still there? ------------------------- Just because to document the early days of cinit. If you are a software archaeologist in the year 2423, you'll be happy that I saved those files. cinit-0.3pre19/doc/do-not-read/ancient/TODO.lucky000066400000000000000000000021531130343226700214620ustar00rootroot0000000000000018:18 hey, ich hatte gerade ein wenig lust mich mit cinit zu befassen, hier also mein kleiner bug-report: in src/include fehlt cinit.h, (alles auf das aktuelle tarball bezogen), ich hab's aus pre9 genommen, hatte ich noch da, da git nicht wollte(Cannot get remote repository information.), ausserdem hast du _ statt - in doc/man/cinit.text verwendet bei der email, das mag docbook nicht, die beiden zeilen habe ich korrigiert, danch ging schon mal make all und auch make ins 18:35 und warum installiert er die man pages nicht mit? 07:20 so, kleiner zwischenbericht, das argv problem bei lvm gibt es mit pre10 nicht mehr, d.h. dass man auch kein shell-skript mehr braucht um lvm/luks-devices zu mounten :) 07:20 soweit sieht eig. alles gut aus 07:21 wenn das so bleibt, dann werd' ich dauerhaft auf cinit umsteigen :) 07:21 und wenn sich die gelegenheit bietet, dann stell ich cinit auch mal in der info-ag von unserer schule vor :) cinit-0.3pre19/doc/do-not-read/ancient/caveats000066400000000000000000000047521130343226700212240ustar00rootroot00000000000000-------------------------------------------------------------------------------- 'Geheimnisse' in German, Nico Schottelius, 2005-05-XX (Last Modified: 2005-06-11) -------------------------------------------------------------------------------- - Dependencies beginning with a '.' (dot) are ignored. So you can temporarily disable a dependency moving it to want/.name - Why is the name of the socket "coala"? Well, coala could mean 'cinit object abstract layer access', but perhaps it's a much simpler reason. - cinit will start a little bit faster if you omit non needed 'wants' and 'needs' dirs as they need to be scanned if they do not exist - Currently there is no support to react on 'ctr+alt+del': 1. It is not handled to switch on / off (Linux: See man 2 reboot and /proc/sys/kernel/ctrl-alt-del) 2. If the kernel handles it and sends signals to cinit (SIGINT on Linux) they will be ignored. There is no problem in implementing a handler for this signal, the only reason why it is not there (well, a template is in old/sig_special.c) is that nobody could tell me what would be the most senseful thing to handle ctrl-alt-del. If you can, I'll perhaps integrate it. 3. ctrl-alt-del is currently disabled under Linux within the service local-tuning/ctrl-alt-del - cinit ignores the Keyboard request Same thing with 'ctr-alt-del': SIGWINCH is sent, but I don't know what to do when recieving it. - cinit does not care about its pid nor does cinit care if it is already running in serv/cinit.c is a line calling run_init_svc(). If you call that only if getpid() == 1, cinit will behave like sysvinit and refuse to start if pid is not 1. Currently cinit has no chance to control whether it's started or not as /etc/cinit/tmp mounted again for every start. - cinit will sleep after respawing if ... a) the service did not terminate normally (!WIFEXITED(status)) b) the service did return a non-zero exit status - sleeping before rechecking if a service is finished can be optimised Currently run_svc() checks every SLEEP_RERUN seconds (default: 1), if the service it should start was finished by another instance of run_svc(). As run_svc() internally uses nanosleep() for sleeping, one could modify run_svc to use conf/sleep_rerun as a nanoseconds value. This would add most likely much often checking, but would result in faster results from run_svc. What's the best value for SLEEP_RERUN is currently unknown. cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/000077500000000000000000000000001130343226700215145ustar00rootroot00000000000000cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/author000066400000000000000000000000671130343226700227440ustar00rootroot00000000000000Nico Schottelius cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/availability000066400000000000000000000000431130343226700241060ustar00rootroot00000000000000cinit is currently Linux-specific. cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/examples000066400000000000000000000000571130343226700232570ustar00rootroot00000000000000See http://linux.schottelius.org/cinit/#config cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/files000066400000000000000000000003301130343226700225350ustar00rootroot00000000000000/sbin/cinit - the init system /sbin/cservice - control cinit /sbin/cinit.reboot (/sbin/reboot if non-existent before) /sbin/cinit.shutdown (/sbin/shutdown if non-existent before) /etc/cinit - configuration directory cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/long_description000066400000000000000000000005441130343226700250040ustar00rootroot00000000000000cinit is a fast executing, small and simple init with support for profiles. It minds dependencies (hard and soft, 'needs' and 'wants') and executes processes in parallel. And it has a simple configuration, which makes many shell-scripts unecessary (but you still could use them if you really want), which leads to better performance and less memory using. cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/meta/000077500000000000000000000000001130343226700224425ustar00rootroot00000000000000cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/meta/date000066400000000000000000000000131130343226700232740ustar00rootroot000000000000002005-08-21 cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/meta/man_section000066400000000000000000000000021130343226700246540ustar00rootroot000000000000008 cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/meta/name000066400000000000000000000000061130343226700233010ustar00rootroot00000000000000cinit cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/meta/short_description000066400000000000000000000000731130343226700261270ustar00rootroot00000000000000fast executing, small and simple init with profile-support cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/parameters000066400000000000000000000000261130343226700236000ustar00rootroot00000000000000cprofile: cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/path000066400000000000000000000000141130343226700223660ustar00rootroot00000000000000/sbin/cinit cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/see also000066400000000000000000000000441130343226700231300ustar00rootroot00000000000000http://linux.schottelius.org/cinit/ cinit-0.3pre19/doc/do-not-read/ancient/cinit-doc/synopsis000066400000000000000000000000151130343226700233220ustar00rootroot00000000000000/sbin/cinit cinit-0.3pre19/doc/do-not-read/ancient/cinit.commands000066400000000000000000000054401130343226700224770ustar00rootroot00000000000000-------------------------------------------------------------------------------- cinit commands, Nico Schottelius 2005-04-28 (Last Modified: 2005-06-11) -------------------------------------------------------------------------------- cinit allows communication through a socket (see ipc.thoughs for reasons). Sockets allow to find out the accessing uid, gid and pid (using SO_PEERCRED as socketoption). The communication-protocol is binary, the implementation can be found in comm/* mostly (clients use begin_msg() and server sigio() additonally). -------------------------------------------------------------------------------- Protocol overview -------------------------------------------------------------------------------- Any communication begins with a command. A command is a one byte unsigned char. Depending on the command, the communication has its own semantics. Commands are: (values can be found in cinit.h) CMD_START_SVC: I want to start a service. CMD_CHG_STATUS: I want to change the status of a service. CMD_STOP_SVC: Please shutdown a service. CMD_RESCUE: Kill everything, and spawn a sulogin shell. CMD_UPDATE: Hot-reboot system and reload cinit. CMD_HALT: Halt the system CMD_REBOOT: Reboot the system CMD_POWEROFF: Power-off the system -------------------------------------------------------------------------------- Detailled command-listing -------------------------------------------------------------------------------- CMD_START_SVC 1. int len; /* length of service name, including \0 */ 2. char *svc; /* name of the service, absolute pathname */ cinit returns: a) status of service b) fail CMD_CHG_STATUS: I want to change the status of a service. 0. int len; 1. char *svc; 2. char status; /* status: once: started successfully the service once. fail: tried to start once, but the service exit ungracefully respawn: I am on it, as soon it exists I'll restart! */ 2. pid_t pid /* the pid of the service, if started once or the pid of the service watcher, if respawning */ cinit returns: MSG_OK|MSG_FAIL (char) CMD_STOP_SVC: Please shutdown a service and its dependencies. 1. int len; /* length of service name, including \0 */ 2. char *svc; /* name of the service, absolute pathname */ cinit returns: Status of service (should be ST_OFF) The following commands do not return anything nor do they need any parameter: CMD_RESCUE: Kill everything, and spawn a sulogin shell. Irreversible. CMD_HALT: Halt the system. CMD_REBOOT: Reboot the system. CMD_POWEROFF: Power-off the system. CMD_UPDATE: Update cinit, hot-reboot the system. cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/000077500000000000000000000000001130343226700222115ustar00rootroot00000000000000cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/author000066400000000000000000000000671130343226700234410ustar00rootroot00000000000000Nico Schottelius cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/long_description000066400000000000000000000000721130343226700254750ustar00rootroot00000000000000cservice controls cinit. Please use cservice -h for help. cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/meta/000077500000000000000000000000001130343226700231375ustar00rootroot00000000000000cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/meta/date000066400000000000000000000000131130343226700237710ustar00rootroot000000000000002005-08-21 cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/meta/man_section000066400000000000000000000000021130343226700253510ustar00rootroot000000000000008 cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/meta/name000066400000000000000000000000111130343226700237720ustar00rootroot00000000000000cservice cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/meta/short_description000066400000000000000000000000731130343226700266240ustar00rootroot00000000000000fast executing, small and simple init with profile-support cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/parameters000066400000000000000000000000221130343226700242710ustar00rootroot00000000000000[-eaphru] [thilo] cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/path000066400000000000000000000000171130343226700230660ustar00rootroot00000000000000/sbin/cservice cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/see also000066400000000000000000000000441130343226700236250ustar00rootroot00000000000000http://linux.schottelius.org/cinit/ cinit-0.3pre19/doc/do-not-read/ancient/cservice-doc/synopsis000066400000000000000000000000151130343226700240170ustar00rootroot00000000000000/sbin/cinit cinit-0.3pre19/doc/do-not-read/ancient/extern/000077500000000000000000000000001130343226700211505ustar00rootroot00000000000000cinit-0.3pre19/doc/do-not-read/ancient/extern/README000066400000000000000000000001041130343226700220230ustar00rootroot00000000000000doc/extern/ Some things related to cinit from the outside world. cinit-0.3pre19/doc/do-not-read/ancient/extern/ipc.thoughts000066400000000000000000000050621130343226700235150ustar00rootroot00000000000000-------------------------------------------------------------------------------- Thoughts about different UNIX-IPC, Nico Schottelius, 2005-04-28 (Last Modified: 2005-06-11) -------------------------------------------------------------------------------- Howto cinit communicates with a) cinit-forks b) any other program a) cinit-forks a.1) shared memory Access could generally be done with shared memory. The problem with that is, that -lrt is required, which implicits -lpthread, which makes linking staticly problematic (at least for glibc). a.2) pipes A maximum of ~510 pipes could be used ( (1024-3)/2 ), 1024 is the maximum opened file deskriptors, minus 3 (stdin/stdout/stderr) already opened, divided by two, because two fds needed per client. Pipes cannot be used easily through forks of forks. a.3) fifos FIFOs are easy to use, but you would need to create two FIFOs for _every_ service, as with only two FIFOs we cannot reliable detect, _who_ is writting to us currently and who wants to read. The same limit as above is true for fifo, too: A maximum of ~510 services. a.4) system-v-ipc No documentation found nor tested. a.5) sockets Are indeed a very clean way. There's only one problem: bind() fails on read-only mounted devices: - The socket either does not exists and cannot be created - or the socket exists, but bind() refuses to reuse it (error: Address already in use) Imho bind() should even honour the socket-option SO_REUSEADDR, which allows to re-use a socket, if there's no other program bound to. As far as I can see, SO_REUSEADDR is only honoured, if socket is of type PF_INET (we use PF_UNIX) and POSIX does only specify how to check for support, but not that sockets have to be able to use SO_REUSEADDR (see posix.aardvark.bug.report). That way, we are forced to mount a temporarily filesystem on /etc/cinit/tmp and create the socket below this directory. This is not the clean and easy solution one would wish. Still, sockets seem to be the cleanest and most reliable way to have IPC for this situation. See socket(2), bind(2), listen(2), accept(2), socket(7) and unix(7) for help. b) any other program What you can do is to tell cinit to - reboot, - halt, - poweroff, - update itself (hot-reboot) - and to start a rescue mode (see using.rescue). Simple send cinit a signal, what to do: HUP: reboot USR1: halt USR2: rescue TERM: poweroff CONT: update See signal(2) and signal(7) for help and serv/sig_reboot.c for implementation. -------------------------------------------------------------------------------- cinit-0.3pre19/doc/do-not-read/ancient/extern/ipc.usenet.posting000066400000000000000000000030361130343226700246340ustar00rootroot00000000000000From: Nico Schottelius Subject: Unix IPC, socket/AF_UNIX; bind on r/o devices? Date: 09 May 2005 09:51:27 GMT To: comp.unix.programmer Hello! Situation: - everything mounted readonly (as when starting the system) - one process with n children, which may have n children (recursive) - all the children and children of children should be able to talk to the first parent Problem: - Using bind() will fail, because a) socket cannot created b) the existing socket cannot be reused Other possibilities not working: - shared memory is not an option, as one need -lrt, which needs -lpthread, which is problematic to link statically - pipes: handling the pipes from parent to child of child of child would be hard to program - socketpair: should be the same problematic as it's with pipes - fifos: one would have to create the fifos before and two fifos for each child; possible, but very unelegant; and one would have to memorize, which child is connected to which fifo; again possible, but somehow unelegant - signaling: one could implement communication with some kind of morse code with signals, but that won't be a good solution Questions: - Is there any way, case b) (socket already existing) can be solved in a way that I tell bind() to use an existing socket? - What would be the best solution to talk bidirectional to clients in this scenario? I appreciate any hint, as I really like the socket mechanism and would like to keep it. Thanks in advance, Nico cinit-0.3pre19/doc/do-not-read/ancient/extern/linux.kernel.eats.arguments000066400000000000000000000024471130343226700264570ustar00rootroot00000000000000-------------------------------------------------------------------------------- Linux, the kernel, eats arguments Nico Schottelius 2005-06-17 (Last Modified: 2005-06-17) -------------------------------------------------------------------------------- If you specify variable=value to the Linux kernel, the argument will NOT be passed to cinit. Here's the relevant code block from init/main.c of the Linux kernel: ------------------------------------------------------------------------------- From init(void * unused) the function run_init_process(char *init_filename) is called, which passes argv_init (char * argv_init[MAX_INIT_ARGS+2]) to init. First init_setup(char *str) resets all elements of the argv_init to NULL. The function unknown_bootoption(char *param, char *val) fills the argv_init array, but only with parameters, which have no value (val). The function parse_args calls unknown_bootoption with the unknown options. ------------------------------------------------------------------------------- This way the profile support in all cinit versions below cinit-0.1 will only work if you change conf/profile, because "cprofile=value" will not be given to cinit, because it's not treated as a command line option. The original value "cprofile=" is replaced by "cprofile:" as of cinit-0.1. cinit-0.3pre19/doc/do-not-read/ancient/extern/posix.aardvark.bug.report000066400000000000000000000033171130343226700261210ustar00rootroot00000000000000To: austin-review-l__AT__opengroup.org From: nico-posix__AT__schottelius.org Subject: Bug in TC2-d6 bind - bind a name to a socket Reply-To: austin-group-l__AT__opengroup.org Bug report from : Nico Schottelius , cLinux (Note that the reply-to line automatically redirects to austin-group-l__AT__opengroup.org for further discussion on bug reports) @ page 1 line 0 section bind - bind a name to a socket objection {-1} Problem: bind should 'assign a name to a socket', but in particular environments it will fail, where it could succeed. Long Description: When opening a new socket, with type PF_UNIX (sock = socket(PF_UNIX,SOCK_STREAM,0);) and one sets the socket option SO_REUSEADDR (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &tmp, sizeof(tmp))), bind does not honour this setting. It is reported on irc channels, that SO_REUSEADDR is only supported on PF_INET sockets and that's what I would claim a bug. If a socket exists in the filesystem and no process is bound to it, bind wail fail anyway. This is especially problematic, when one is in an environment, which is pre-startup (like beeing init) and one wants to use sockets, but everything is mounted read-only. So, if bind() would honour the option, it would be able to bind() to a socket, which exists (as creating one on a read-only filesystem is not possible). Action: Proposal: Add better specification to either socket(7) or bind(2), which explains the behaviour of bind, when this option is set or even better: Specify, that bind should take care of this bit, also when using PF_UNIX. In general the socket(7) manpage should explain more in detail or at least reference other documents (unix(7)?), which explain what the option for a specific protocol does. cinit-0.3pre19/doc/do-not-read/ancient/fun-testing000066400000000000000000000003731130343226700220340ustar00rootroot00000000000000kind tot 17 ... Read path: / Read path: e Read path: t Read path: c Read path: / Read path: c Read path: i Read path: n Read path: i Read path: t Read path: / Read path: t Read path: e Read path: s Read path: t Read path: s Read path: v Read path: c cinit-0.3pre19/doc/do-not-read/ancient/how_it_works_internally000066400000000000000000000015011130343226700245420ustar00rootroot00000000000000The following is a very simple process structure of cinit internals: cinit-main starts \ |-> execute run_init_svc() | \ run_svc(CINIT_INIT); | | check status <-------------------\ | | set status = temp | | \ check dependencies | | | fork(run_svc()) for every WANT | | | run_svc() for every NEED / | / check if respawning { do .. while(repawn?) | \ yes: (remember: run_svc _must_ return!) | | msg_change_status(respawn) | | add watcher_signal handler to stop! (SIGTERM) | | fork(exec_svc) <--| | | waitpid(fork) | while(1) { ... } | \ sleep(WAIT_SECS) ---/ | | no: fork(exec_svc) | \ waitpid(fork) -> yes, wait! | | msg_change_status | / | / | -> while(1) | - listen to signals | - listen on socket cinit-0.3pre19/doc/do-not-read/ancient/init-idea-first000066400000000000000000000012701130343226700225560ustar00rootroot00000000000000- restarting/respawning touch respawn - dependencies a needs started b - clean multiply dependencies - start & stop dependencies start_depends stop_depends - parallel executation - start and stop commands start -> link start_param -> parameters, like minit stop -> link stop_param -> parameters, like minit if no stop command is available, try to kill the pid we started at stop /startup/ start_depends=gettys /shutdown/ stop_depends=power_off gettys/ start_depends=getty/1 start_depends=getty/2 start_depends=getty/3 start_depends=getty/4 ... getty/1/ start=/sbin/fgetty respawn power_off/ stop_depend=umount umount/ stop_depend= cinit-0.3pre19/doc/do-not-read/ancient/porting.to.other.os000066400000000000000000000017571130343226700234430ustar00rootroot00000000000000-------------------------------------------------------------------------------- Porting cinit to other operating systems, Nico Schottelius, 2005-06-02 -------------------------------------------------------------------------------- cinit is currently Linux-specific. It currently does not compile / work on other Unices, because we use O_ASYNC flag of open(2) which is _not_ a standard. This way we can act very elegant on incoming connections by our forks. If somebody finds a at least as elegant solution to act on incoming data which is more portable, I would be happy to recieve a diff -u. Additionally we currently do mount a temporarily filesystem on /etc/cinit/tmp, which allows us to create a socket, where nothing is mounted r/w yet. If a Unix has some kind of tmpfs, this can easily be changed to the appropriate value in conf/*tmp*. The O_ASYNC thing will perhaps become a compile option to cinit (via conf/socket_function for instance), so that using standard mechanism will be possible. cinit-0.3pre19/doc/do-not-read/ancient/removing.zombies000066400000000000000000000044261130343226700230710ustar00rootroot00000000000000-------------------------------------------------------------------------------- Removing Zombies, Nico Schottelius 2005-06-15 (Last Modified: 2005-06-15) -------------------------------------------------------------------------------- First of all, the definition of a zombie: ''Defunct ("zombie") process, terminated but not reaped by its parent.'' [Excerpt from ps(1)] ''In the case of a terminated child, performing a wait allows the system to release the resources associated with the child; if a wait is not performed, then terminated the child remains in a "zombie" state (see NOTES below). [...] NOTES A child that terminates, but has not been waited for becomes a "zom- bie". The kernel maintains a minimal set of information about the zombie process (PID, termination status, resource usage information) in order to allow the parent to later perform a wait to obtain information about the child. As long as a zombie is not removed from the system via a wait, it will consume a slot in the kernel process table, and if this table fills, it will not be possible to create further processes. If a parent process terminates, then its "zombie" children (if any) are adopted by init(8), which automati- cally performs a wait to remove the zombies.'' [Excerpt from waitpid(2)] So you can see, that if some process misbehaves and forgets about its children, we, cinit, will adopt it. In the first versions of cinit (cinit-0.0.1 <-> cinit-0.0.7) we ignored SIGCHLD. This way the zombies stayed in the system. Since cinit-0.0.8 we have sig_chld(), which removes the zombies. So far so good. Now let's remove this feature. Yes, you heard right. If cinit does not catch the zombies they will stay in the system. Yes, that's ugly. And that's how it should be. You should see, which software is broken and should contact the authors to fix it. To restore the 'old' behaviour of cinit, change generic/set_signals.c (ignore SIGCHLD) Makefile: remove serv/sig_child.c from modules list cinit in general will keep the behaviour of reaping the vestiges, which broken software left behind (as it is cleaner for the system to deallocate unused ressources). cinit-0.3pre19/doc/do-not-read/ancient/security000066400000000000000000000025151130343226700214400ustar00rootroot00000000000000-------------------------------------------------------------------------------- security, Nico Schottelius 2005-06-13 (Last Modified: 2005-06-14) -------------------------------------------------------------------------------- A little note about cinit security and how to exploit it: cinit trusts its socket, /etc/cinit/tmp/coala. If somebody not authorised has access to it, your system is taken over. Through this socket anybody with write access can: - shutdown, restart and power-off the host - spawn a local unprotected shell - execute anything as the user cinit runs (most likely root) Currently cinit does not care very much about the socket permissions. On my system this creates a socket with srwxr-x-rx permissions, which isi suitable for normal operation, which will not accept connect() by others than root. But you can also loosen the security and allow people from a specfic group to control your system: ei # chmod 770 /etc/cinit/tmp/coala ei # chown root:cinit /etc/cinit/tmp/coala Now everybody in the cinit group can control your system. Please think twice before doing that, as you read above, anyone from the cinit group may start a root shell on the initial console then! For extra parnoid settings you can do the following: ei # chmod 700 /etc/cinit/tmp/coala ei # chown root:root /etc/cinit/tmp/coala cinit-0.3pre19/doc/do-not-read/ancient/socket.poll_vs_o_async000066400000000000000000000024371130343226700242540ustar00rootroot00000000000000-------------------------------------------------------------------------------- Socket: poll(2) vs. O_ASYNC, Nico Schottelius 2005-06-22 (Last Modified: 2005-06-22) -------------------------------------------------------------------------------- 0. General problem 1. O_ASYNC 2. poll(2) 0. General problem cinit has to react, as soon as there's data on the socket. 1. O_ASYNC When you open a socket with O_ASYNC (or specify it with fcntl(2)) under Linux, your process recieves the SIGIO signal from the kernel, as soon as data is available. The problem is the handling of signals seems not to be serialised: The function, which is called on the SIGIO signal (called sigio() here) calls other functions. Those functions way recieve SIGIO while working, so the first data stream is not yet finished, though the next stream is beeing read. This gives very nice race-conditions, which are very nice to debug. 2. poll(2) poll(2) is a standard Unix-call (XPG4-UNIX), which waits a specific timeout (or infinite time if you specify a value less that zero) for the socket (or the fd in general) to be in a state where data is available to read (in fact poll can do much more, but we are not interested only in POLLIN and POLLPRI). While poll(2) seems to be a very bit slower than sigio it works reliable. cinit-0.3pre19/doc/do-not-read/ancient/thoughts.closed000066400000000000000000000041561130343226700227110ustar00rootroot00000000000000-------------------------------------------------------------------------------- Closed thoughts, Nico Schottelius, 2005-05-XX (Last Modified: 2005-06-14) -------------------------------------------------------------------------------- 1. using SIDs (service IDs) to communicated with external processes This was a very bad idea: The external program could exploit us by specifying an arbitary big SID (as the SID is simply the index of our service array). 2. using function pointers to handle messages Seems like it works fine. We have handlers for each message (do_*), which are called by client and server. The function pointer is simply to read or write, dependending if it is the client or the server. This way we don't need to rewrite communications parts. 3. Using different storage First all services were saved in a service array of the size MAX_SVC. This has been replaced by a double-linked list. Have a look at serv/list.c. 4. Using sockets for IPC (between cinit forks) Works very fine, though we have to mount a temporarily fs before. 5. Removing the maximum number of direct dependencies Is not planned, as it looks like the current number (32, see conf/max_deps) seems to be much more than needed. And if one really needs more, simply increase conf/max_deps. 6. Using a directory params with 1,2,3,4 for argv This would make substituting a single argument easier, but only if you know which one you have to change. This would add an additional dirent(), which would not replace the current read(), but add more open() and close()s. As this does not seem to make live easier for system administrators, this is not implemented. If you really like it, hack client/exec_svc.c 7. Using TCP/IP sockets This would be a very small change in the code, but would allow to control cinit over network. Since there is no authentication, this would be highly insecure. On the other hand, cinit could control the parallel start of many hosts, if they should become 'one' computer at the end. As this is not needed currently, it's not implemented. cinit-0.3pre19/doc/do-not-read/braindumps/000077500000000000000000000000001130343226700203665ustar00rootroot00000000000000cinit-0.3pre19/doc/do-not-read/braindumps/README.text000066400000000000000000000001621130343226700222300ustar00rootroot00000000000000DO NOT READ CONTENT IN THIS DIRECTORY. (or at least do not blame me, if you get really confused after reading it) cinit-0.3pre19/doc/do-not-read/braindumps/circular-dependencies.text000066400000000000000000000024561130343226700255330ustar00root