#!/bin/sh #item ####description ###on off ### TMP=/var/log/setup/tmp if [ ! -d $TMP ]; then mkdir -p $TMP fi cat /dev/null > $TMP/SeTnewtag dialog --title "SELECTING PACKAGES FROM SERIES N (NETWORK/NEWS/MAIL/UUCP)" \ --checklist "Please confirm the packages you wish to install \ from series N. Use the UP/DOWN keys to scroll through the list, and \ the SPACE key to deselect any items you don't want to install. \ Press ENTER when you are done." \ 21 72 11 \ "ca-certificates" "PEM certificates to verify SSL connections" "on" \ "cifs-utils" "CIFS filesystem utilities" "on" \ "curl" "Command-line URL transfer utility" "on" \ "cyrus-sasl" "SASL email authentication library" "on" \ "dhcpcd" "DHCP client daemon" "on" \ "gnupg" "GNU Privacy Guard public key encryption" "on" \ "gnutls" "GNU TLS/SSL (secure communications) library" "on" \ "gpgme" "GnuPG Made Easy library" "on" \ "iputils" "Some common network tools" "on" \ "ipw2100-fw" "Firmware for Intel ipw2100 wireless." "off" \ "ipw2200-fw" "Firmware for Intel ipw2200 wireless." "off" \ "iw" "Utility for mac80211 based wireless devices" "off" \ "libassuan" "Interprocess Communication Library for GPG" "on" \ "libgcrypt" "General purpose crypto library" "on" \ "libgpg-error" "GnuPG Error Definitions Library" "on" \ "libndp" "Library for Neighbor Discovery Protocol" "on" \ "links" "Text-based WWW browser (with frames)" "on" \ "nc" "Netcat network utility" "off" \ "net-tools" "Utilities required for networking on Linux" "on" \ "nettle" "Cryptographic library" "on" \ "network-scripts" "Scripts required for networking on Slackware" "on" \ "ntp" "Network Time Protocol" "on" \ "openldap-client" "LDAP authentication libraries" "off" \ "openssh" "OpenSSH Secure Shell" "on" \ "openssl" "OpenSSL Secure Sockets Layer toolkit" "on" \ "p11-kit" "PKCS 11 public key toolkit" "on" \ "rfkill" "tool to query wireless interfaces" "on" \ "samba" "SMB print/file server for Windows LANs" "on" \ "tcpdump" "Tool for dumping network packets" "off" \ "wget" "WWW/FTP retrieval tool" "on" \ "wireless-tools" "Tools for wireless networking" "on" \ "wpa_supplicant" "WPA/WPA2/IEEE 802.1X (wireless) Supplicant" "on" \ "zd1211-firmware" "Firmware for zd1211 USB wireless" "off" \ 2> $TMP/SeTpkgs if [ $? = 1 -o $? = 255 ]; then rm -f $TMP/SeTpkgs > $TMP/SeTnewtag for pkg in \ ca-certificates cifs-utils curl cyrus-sasl dhcpcd gnupg gnutls gpgme iputils ipw2100-fw ipw2200-fw iw libassuan libgcrypt libgpg-error libndp links nc net-tools nettle network-scripts ntp openldap-client openssh openssl p11-kit rfkill samba tcpdump wget wireless-tools wpa_supplicant zd1211-firmware \ ; do echo "$pkg: SKP" >> $TMP/SeTnewtag done exit fi cat /dev/null > $TMP/SeTnewtag for PACKAGE in \ ca-certificates cifs-utils curl cyrus-sasl dhcpcd gnupg gnutls gpgme iputils ipw2100-fw ipw2200-fw iw libassuan libgcrypt libgpg-error libndp links nc net-tools nettle network-scripts ntp openldap-client openssh openssl p11-kit rfkill samba tcpdump wget wireless-tools wpa_supplicant zd1211-firmware \ ; do if grep "\(^\| \)$PACKAGE\( \|$\)" $TMP/SeTpkgs 1> /dev/null 2> /dev/null ; then echo "$PACKAGE: ADD" >> $TMP/SeTnewtag else echo "$PACKAGE: SKP" >> $TMP/SeTnewtag fi done rm -f $TMP/SeTpkgs