Changeset 124

Show
Ignore:
Timestamp:
12/10/07 12:51:10 (1 year ago)
Author:
jjarrett
Message:

Updated Makefile and Spec to support working within CDSFramework.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/RHEL5/kickstart/clip.ks

    r89 r124  
    99text 
    1010skipx 
    11 rootpw password 
     11rootpw 123)(*qweASD 
     12bootloader --location=mbr --password=123)(*qweASD 
     13 
     14################ 
     15# Partitioning # 
     16################ 
     17 
     18clearpart --linux 
     19part /boot --size=128 
     20part swap  --recommended 
     21part pv.01 --size=1 --grow 
     22volgroup clipvg pv.01 
     23# Using Logical Volume Management lets the user resize partitions later. 
     24# STIG requires separate /var and /home. 
     25logvol /var  --vgname=clipvg --size=1024     --name=var 
     26logvol /home --vgname=clipvg --size=1024     --name=home 
     27logvol /     --vgname=clipvg --size=1 --grow --name=root 
     28 
    1229 
    1330#################### 
     
    2946#tk 
    3047#tk-devel 
     48##################################### 
     49# Remove tcpdump per STIG gen003865 # 
     50##################################### 
     51-tcpdump 
     52 
     53##################################### 
     54# Remove Packages per Red Hat's PL3 # 
     55# Kickstart file                    # 
     56##################################### 
     57-xdelta 
     58-nmap 
     59-emacspeak 
     60-byacc 
     61-gimp-help 
     62-splint 
     63-perl-Crypt-SSLeay 
     64-units 
     65-perl-XML-Grove 
     66-perl-XML-LibXML-Common 
     67-perl-XML-SAX 
     68-perl-XML-Twig 
     69-valgrind 
     70-valgrind-callgrind 
     71-gimp-gap 
     72-cdecl 
     73-perl-XML-Dumper 
     74-kernel-smp-devel 
     75-blas 
     76-lapack 
     77-java-1.4.2-gcj-compat 
     78-kernel-hugemem-devel 
     79-kernel-devel 
     80-perl-XML-Encoding 
     81-gnome-games 
     82-isdn4k-utils 
     83-vnc 
     84-vnc-server 
     85#e2fsprogs 
     86#kernel-smp 
     87-tog-pegasus 
     88-tog-pegasus-devel 
     89-ethereal 
     90-ethereal-gnome 
     91-tcpdump 
     92-xchat 
     93-vino 
     94-gaim 
     95-gnome-pilot 
     96#@ office 
     97#@ admin-tools 
     98#@ editors 
     99#@ system-tools 
     100#@ gnome-desktop 
     101#@ dialup 
     102#@ base-x 
     103#@ printing 
     104#@ server-cfg 
     105#@ graphical-internet 
     106#kernel 
     107-python-ldap 
     108-httpd-suexec 
     109-system-config-httpd 
     110-psgml 
     111-emacs-leim 
     112-gimp-data-extras 
     113-xcdroast 
     114-perl-XML-LibXML 
     115-gimp-print-plugin 
     116-xsane-gimp 
     117-gimp 
     118#lvm2 
     119-zsh 
     120#net-snmp-utils 
     121-rhythmbox 
     122-gcc-g77 
     123#grub 
     124-texinfo 
     125-octave 
     126-dia 
     127-perl-LDAP 
     128-oprofile 
     129-emacs 
     130#system-config-printer-gui 
     131-doxygen 
     132-planner 
     133-tux 
     134-indent 
     135-cdparanoia 
     136-gcc-java 
     137-gnomemeeting 
     138#openoffice.org-i18n 
     139#openoffice.org-libs 
     140#openoffice.org 
     141#firefox 
     142-evolution 
     143-xsane 
     144-ctags 
     145-cscope 
     146-sane-frontends 
     147-perl-XML-Parser 
     148-php-mysql 
     149-rcs 
     150-perl-XML-NamespaceSupport 
    31151 
    32152############################ 
  • trunk/RHEL5/refpolicy/build/Makefile

    r74 r124  
    2828RELEASE ?= 1 
    2929 
     30# The name of the Vendor 
     31VENDOR ?= Tresys Technology, LLC 
     32 
     33# The name of the Packager 
     34PACKAGER ?= Tresys Technology, LLC 
     35 
    3036# change this to "y" to build a src rpm 
    31 BUILDSRC = n 
     37BUILDSRC = y 
    3238 
    3339# This is the mode that /etc/selinux/config will be set to 
     
    108114                --define 'output_version $(OUTPUT_VER)' \ 
    109115                --define 'mode $(MODE)' --define 'polname $(POLNAME)' \ 
     116                --define 'vendor $(VENDOR)' --define 'packager $(PACKAGER)' \ 
    110117                -b$(BIN_OR_ALL) SPECS/$(notdir $(POLICY_SPEC)) 
    111118        mv  $(RPM_BUILDROOT)/RPMS/noarch/selinux-policy-$(POLNAME)-$(VERSION)-$(RELEASE).noarch.rpm $(OUTPUT_DIR) 
  • trunk/RHEL5/refpolicy/conf/selinux-policy.spec

    r13 r124  
    77Release: %{release} 
    88License: GPL 
    9 Vendor: Tresys Technology, LLC 
    10 Packager: Tresys Technology, LLC 
     9Vendor: %{vendor} 
     10Packager: %{packager} 
    1111Source: selinux-policy-%{polname}-%{version}.tar.gz 
    1212Group: System Environment/Base