diff options
-rwxr-xr-x | client/nfsexport/scripts/admBootOs | 3 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admCreateImage | 3 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admCreateLogicalPartitions | 3 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admCreatePrimaryPartitions | 5 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admFormatFs | 4 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admGetFsType | 6 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admGetIpAddress | 6 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admGetOsVersion | 6 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admListHardwareInfo | 6 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admListPrimaryPartitions | 7 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admListSoftwareInfo | 6 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admMenuBrowser | 3 | ||||
-rwxr-xr-x | client/nfsexport/scripts/admRestoreImage | 4 | ||||
-rw-r--r-- | doc/VERSION.txt | 2 | ||||
-rw-r--r-- | doc/udeb.list | 120 |
15 files changed, 1 insertions, 183 deletions
diff --git a/client/nfsexport/scripts/admBootOs b/client/nfsexport/scripts/admBootOs deleted file mode 100755 index c94ffae1..00000000 --- a/client/nfsexport/scripts/admBootOs +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -RETORNO=$(bootOs $* 2>/dev/null) || exit $? -exit 0 diff --git a/client/nfsexport/scripts/admCreateImage b/client/nfsexport/scripts/admCreateImage deleted file mode 100755 index 338d46bd..00000000 --- a/client/nfsexport/scripts/admCreateImage +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -RETORNO=$(createImage $* 2>/dev/null) || exit $? -exit 0 diff --git a/client/nfsexport/scripts/admCreateLogicalPartitions b/client/nfsexport/scripts/admCreateLogicalPartitions deleted file mode 100755 index 7a693aac..00000000 --- a/client/nfsexport/scripts/admCreateLogicalPartitions +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - - diff --git a/client/nfsexport/scripts/admCreatePrimaryPartitions b/client/nfsexport/scripts/admCreatePrimaryPartitions deleted file mode 100755 index 2296d7f7..00000000 --- a/client/nfsexport/scripts/admCreatePrimaryPartitions +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash -RETORNO=$(createPrimaryPartitions $* 2>/dev/null) || exit $? -exit 0 - - diff --git a/client/nfsexport/scripts/admFormatFs b/client/nfsexport/scripts/admFormatFs deleted file mode 100755 index 96c9b1c6..00000000 --- a/client/nfsexport/scripts/admFormatFs +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -RETORNO=$(formatFs $* 2>/dev/null) || exit $? -exit 0 - diff --git a/client/nfsexport/scripts/admGetFsType b/client/nfsexport/scripts/admGetFsType deleted file mode 100755 index 29e9ce1d..00000000 --- a/client/nfsexport/scripts/admGetFsType +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -RETORNO=$(getFsType $* 2>/dev/null) || exit $? -# Fichero tempotal de salida para intercambio de datos con el servicio -OTPUTFILE="/tmp/retorno" -echo $RETORNO>$OTPUTFILE || exit $? -exit 0 diff --git a/client/nfsexport/scripts/admGetIpAddress b/client/nfsexport/scripts/admGetIpAddress deleted file mode 100755 index 36fc834a..00000000 --- a/client/nfsexport/scripts/admGetIpAddress +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -RETORNO=$(getIpAddress $* 2>/dev/null) || exit $? -# Fichero tempotal de salida para intercambio de datos con el servicio -OTPUTFILE="/tmp/retorno" -echo $RETORNO>$OTPUTFILE || exit $? -exit 0 diff --git a/client/nfsexport/scripts/admGetOsVersion b/client/nfsexport/scripts/admGetOsVersion deleted file mode 100755 index 47a3991a..00000000 --- a/client/nfsexport/scripts/admGetOsVersion +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -RETORNO=$(getOsVersion $* 2>/dev/null) || exit $? -# Fichero tempotal de salida para intercambio de datos con el servicio -OTPUTFILE="/tmp/retorno" -echo $RETORNO>$OTPUTFILE || exit $? -exit 0 diff --git a/client/nfsexport/scripts/admListHardwareInfo b/client/nfsexport/scripts/admListHardwareInfo deleted file mode 100755 index 429f1d07..00000000 --- a/client/nfsexport/scripts/admListHardwareInfo +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -RETORNO=$(listHardwareInfo $* 2>/dev/null) || exit $? -# Fichero tempotal de salida para intercambio de datos con el servicio -OTPUTFILE="/tmp/retorno" -echo $RETORNO>$OTPUTFILE || exit $? -exit 0 diff --git a/client/nfsexport/scripts/admListPrimaryPartitions b/client/nfsexport/scripts/admListPrimaryPartitions deleted file mode 100755 index 1d8ce077..00000000 --- a/client/nfsexport/scripts/admListPrimaryPartitions +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -RETORNO=$(listPrimaryPartitions $* 2>/dev/null) || exit $? -# Fichero tempotal de salida para intercambio de datos con el servicio -OTPUTFILE="/tmp/retorno" -echo $RETORNO>$OTPUTFILE || exit $? -exit 0 - diff --git a/client/nfsexport/scripts/admListSoftwareInfo b/client/nfsexport/scripts/admListSoftwareInfo deleted file mode 100755 index e41bbb93..00000000 --- a/client/nfsexport/scripts/admListSoftwareInfo +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -RETORNO=$(listSoftwareInfo $* 2>/dev/null) || exit $? -# Fichero tempotal de salida para intercambio de datos con el servicio -OTPUTFILE="/tmp/retorno" -echo $RETORNO>$OTPUTFILE || exit $? -exit 0 diff --git a/client/nfsexport/scripts/admMenuBrowser b/client/nfsexport/scripts/admMenuBrowser deleted file mode 100755 index 2214920f..00000000 --- a/client/nfsexport/scripts/admMenuBrowser +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -RETORNO=$(menuBrowser $* 2>/dev/null) || exit $? -exit 0 diff --git a/client/nfsexport/scripts/admRestoreImage b/client/nfsexport/scripts/admRestoreImage deleted file mode 100755 index 642cd298..00000000 --- a/client/nfsexport/scripts/admRestoreImage +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -RETORNO=$(restoreImage $* 2>/dev/null) || exit $? -exit 0 - diff --git a/doc/VERSION.txt b/doc/VERSION.txt index cec11621..20234723 100644 --- a/doc/VERSION.txt +++ b/doc/VERSION.txt @@ -1 +1 @@ -OpenGnSys 0.10 +OpenGnSys 1.0pre diff --git a/doc/udeb.list b/doc/udeb.list deleted file mode 100644 index 606881a5..00000000 --- a/doc/udeb.list +++ /dev/null @@ -1,120 +0,0 @@ -apt-setup-udeb - Configure apt -beep-udeb - advanced pc-speaker beeper - minimal package -binutils-static-udeb - statically linked binutils tools for for the Debian installer -bogl-bterm-udeb - Ben's Own Graphics Library - graphical terminal -brltty-udeb - Access software for a blind person using a braille display -busybox-udeb - Tiny utilities for the debian-installer -cdebconf-gtk-udeb - Gtk+ frontend for Debian Configuration Management System -cdebconf-newt-udeb - Newt frontend for Debian Configuration Management System -cdebconf-priority - Change debconf priority -cdebconf-text-udeb - Plain text frontend for Debian Configuration Management System -cdebconf-udeb - Debian Configuration Management System (C-implementation) -console-setup-fonts-udeb - console fonts for Debian Installer -console-setup-udeb - Configure the keyboard -cryptsetup-udeb - configures encrypted block devices -debootstrap-udeb - Bootstrap the Debian system -devio-udeb - correctly read (or write) a region of a block device -dhcp3-client-udeb - DHCP Client for debian-installer -dmraid-udeb - Device-Mapper Software RAID support tool (udeb) -dmsetup-udeb - The Linux Kernel Device Mapper userspace library -e2fsprogs-udeb - stripped-down versions of e2fsprogs, for debian-installer -eject-udeb - ejects CDs from d-i menu -eucalyptus-udeb - Elastic Utility Computing Architecture - installer integration -fbset-udeb - framebuffer device maintenance program -fdisk-udeb - Manually partition a hard drive (fdisk) -fontconfig-udeb - generic font configuration library - minimal runtime -fuse-utils-udeb - Filesystem in USErspace (utilities) -gpgv-udeb - minimal signature verification tool -gptsync-udeb - GPT and MBR partition tables synchronisation tool -gtk2-engines-udeb - theme engines for GTK+ 2.x in the Debian installer -hdparm-udeb - tune hard disk parameters for high performance -iso-scan - Scan hard drives for an installer ISO image -jfsutils-udeb - A stripped-down version of jfsutils, for debian-installer -kbd-udeb - Linux console keyboard setup utilities -klibc-utils-floppy-udeb - small utilities built with klibc for the boot floppy -libatk1.0-udeb - The ATK accessibility toolkit -libavahi-common3-udeb - Avahi common library (debian-installer) -libavahi-core6-udeb - Avahi's embeddable mDNS/DNS-SD library (debian-installer) -libblkid1-udeb - block device id library -libc6-udeb - GNU C Library: Shared libraries - udeb -libcairo-directfb2-udeb - The Cairo 2D vector graphics library DirectFB build -libcrypto0.9.8-udeb - crypto shared library - udeb -libdebconfclient0-udeb - Debian Configuration Management System (C-implementation) -libdebian-installer4-udeb - Library of common debian-installer functions -libdevmapper1.02.1-udeb - The Linux Kernel Device Mapper userspace library -libdirectfb-1.2-0-udeb - direct frame buffer graphics - shared libraries -libdmraid1.0.0.rc15-udeb - Device-Mapper Software RAID support tool - shared library (udeb) -libexpat1-udeb - XML parsing C library - runtime library -libfreetype6-udeb - FreeType 2 font engine for the debian-installer -libfribidi0-udeb - Free Implementation of the Unicode BiDi algorithm -libfuse2-udeb - Filesystem in USErspace library -libgcrypt11-udeb - LGPL Crypto library - runtime library -libglib2.0-udeb - The GLib library of C routines - minimal runtime -libgpg-error0-udeb - library for common error values and messages in GnuPG components -libgtk-directfb-2.0-0-udeb - The GTK+ graphical user interface library - minimal runtime -libiw29-udeb - Tools for manipulating Linux Wireless Extensions -libklibc-udeb - minimal libc subset for use with initramfs -libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb -libnss-files-udeb - GNU C Library: NSS helper for files - udeb -libntfs-3g54-udeb - ntfs-3g filesystem in userspace (FUSE) library -libpango1.0-udeb - Layout and rendering of internationalized text - minimal runtime -libparted1.8-udeb - The GNU Parted disk partitioning shared library -libpcre3-udeb - Perl 5 Compatible Regular Expression Library - runtime files (udeb) -libpixman-1-0-udeb - pixel-manipulation library for X and cairo -libpng12-0-udeb - PNG library - minimal runtime library -libpopt0-udeb - lib for parsing cmdline parameters -libslang2-udeb - S-Lang library for Debian Installer -libsysfs2-udeb - interface library to sysfs -libtextwrap1-udeb - text-wrapping library with i18n - runtime udeb -libusb-0.1-udeb - userspace USB programming library -libuuid1-udeb - stripped down universally unique id library, for debian-installer -libvte9-udeb - Terminal emulator widget for GTK+ 2.0 - minimal runtime -libxml2-udeb - GNOME XML library -lsb-release-udeb - LSB release information -ltsp-client-builder - Build an LTSP environment in the installer target -lvm2-udeb - The Linux Logical Volume Manager -mdadm-udeb - tool to administer Linux MD arrays (software RAID) -mii-diag-udeb - A little tool to manipulate network cards -mkreiserfs-udeb - User-level tools for ReiserFS filesystems -module-init-tools-udeb - tools for managing Linux kernel modules -nano-udeb - free curses-based text editor, inspired by Pico - udeb -ntfs-3g-udeb - read-write NTFS driver for FUSE -ntfsprogs-udeb - Tools for doing neat things in NTFS partitions from Linux - udeb -oem-config-udeb - Prepare for OEM configuration -oldsys-preseed - Preseed debian-installer from an existing device -open-iscsi-udeb - Configure iSCSI -openssh-client-udeb - secure shell client for the Debian installer -openssh-server-udeb - secure shell server for the Debian installer -os-prober-udeb - utility to detect other OSes on a set of drives -parted-udeb - Manually partition a hard drive (parted) -partman-partitioning - Partitioning operations for partman -partman-target - Provides partman with ability to prepare /target -pciutils-udeb - Linux PCI Utilities (udeb) -pcmciautils-udeb - PCMCIA utilities for Linux 2.6 -ppp-udeb - Point-to-Point Protocol (PPP) - package for Debian Installer -rdate-udeb - sets the system's date from a remote host -redboot-tools-udeb - Collection of utilities to manipulate RedBoot data (udeb) -reiserfsprogs-udeb - User-level tools for ReiserFS filesystems -strace-udeb - A system call tracer -ttf-cjk-compact-udeb - Shrinked CJK TrueType fonts for GUI d-i. -ttf-dejavu-mono-udeb - Monospace Vera font family derivate with additional characters -ttf-dejavu-udeb - Vera font family derivate with additional characters -ttf-farsiweb-udeb - Farsiweb TrueType fonts for the graphical installer -ttf-freefont-udeb - Freefont Sans fonts for the graphical installer -ttf-khmeros-udeb - Debian-Installer font for the Khmer language of Cambodia -ttf-malayalam-fonts-udeb - Free TrueType fonts for the Malayalam language -ttf-sil-abyssinica-udeb - Debian-Installer font for the Ethiopic script (Amharic) -ttf-tamil-fonts-udeb - Free TrueType fonts for the Tamil language -ttf-thai-tlwg-udeb - Thai fonts in TrueType format for D-I use -ttf-tmuni-udeb - font for Tibetan, Dzongkha and Ladakhi (OpenType Unicode) -tzsetup-udeb - choose time zone -ubuntu-keyring-udeb - GnuPG keys of the Ubuntu archive -udev-udeb - rule-based device node and kernel event manager -usbutils-udeb - Linux USB utilities -user-setup-udeb - Set up users and passwords -util-linux-udeb - Miscellaneous system utilities -wireless-tools-udeb - Tools for manipulating Linux Wireless Extensions -xfsprogs-udeb - A stripped-down version of xfsprogs, for debian-installer -zlib1g-udeb - compression library - runtime for Debian installer -kernel-wedge - constructor del paquete udeb para el instalador de Debian -reprepro - Debian package repository producer |