################################################################# # MiniKick for FC3 # by Thomas Chung # 2005-05-06 # base -> 276 pkg = 595 Mb # This is default install group includes a minimal set of packages. # Useful for creating small router/firewall boxes, for example. ################################################################## # Install a fresh system rather than upgrade an existing system install # Perform the kickstart installation in text mode text # Install from an installation tree on a remote server via FTP or HTTP url --url http://mirrors.kernel.org/fedora/core/3/i386/os/ # Sets the language to use during installation lang en_US # Sets the language(s) to install on the system langsupport en_US # Sets system keyboard type keyboard us # Configures the mouse for the system # If the mouse command is given without any arguments, or it is omitted, # the installation program attempts to automatically detect the mouse mouse # Sets up the authentication options for the system authconfig --enableshadow --enablemd5 # Sets the system time zone timezone America/Los_Angeles # Configures network information for the system network --device eth0 --bootproto static # Sets the system's root password rootpw minikick # Sets Firewall with ssh service allowed firewall --enabled --ssh # Sets the system's SELinux mode selinux --disabled # Specifies how the GRUB boot loader should be installed bootloader --location mbr --append quiet # Removes partitions from the system, prior to creation of new partitions clearpart --all --initlabel part swap --recommended part /boot --fstype ext3 --size 100 part / --fstype ext3 --size 1024 --grow # Package Selection %packages @ base # Post-installation Script %post rpm --import /usr/share/rhn/RPM-GPG-KEY-fedora