Changes between Version 21 and Version 22 of client_installation_guide_rpm

Show
Ignore:
Timestamp:
10/01/12 22:26:15 (12 years ago)
Author:
piontek
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • client_installation_guide_rpm

    v21 v22  
    3636 
    3737 For the PL-Grid project: Install Polish Grid and PL-Grid Simple-CA certificates: 
     38 
     39#add appropriate YUM repositories 
    3840{{{ 
    3941#!div style="font-size: 90%" 
    4042{{{#!sh 
    41  
    42 #add appropriate YUM repositories 
    4343cat > /etc/yum.repos.d/plgrid.repo << EOF 
    4444[PLGRID-general] 
     
    4949gpgcheck=0 
    5050EOF 
     51}}} 
     52}}} 
    5153 
     54{{{ 
     55#!div style="font-size: 90%" 
     56{{{#!sh 
    5257cat > /etc/yum.repos.d/eugridpma.repo << EOF 
    5358[EUGRIDPMA-igtf] 
     
    5762metadata_expire=300 
    5863gpgcheck=0 
     64}}} 
     65}}} 
    5966 
     67{{{ 
     68#!div style="font-size: 90%" 
     69{{{#!sh 
    6070[EUGRIDPMA-fetch-crl] 
    6171name=EUGRIDPMA fetch-crl repository 
     
    6575gpgcheck=0 
    6676EOF 
     77}}} 
     78}}} 
    6779 
    6880#install certificates 
     81{{{ 
     82#!div style="font-size: 90%" 
     83{{{#!sh 
    6984yum install ca_PolishGrid 
    7085yum install ca_PLGRID-SimpleCA 
     86}}} 
     87}}} 
    7188 
    7289#install certificate revocation list fetching utility  
     90 
     91{{{ 
     92#!div style="font-size: 90%" 
     93{{{#!sh 
    7394yum install fetch-crl 
     95}}} 
     96}}} 
    7497 
    7598#get fresh CRLs now 
     99{{{ 
     100#!div style="font-size: 90%" 
     101{{{#!sh 
    76102/usr/sbin/fetch-crl  
     103}}} 
     104}}} 
    77105 
    78106#install cron job for it 
     107{{{ 
     108#!div style="font-size: 90%" 
     109{{{#!sh 
    79110cat > /etc/cron.daily/fetch-crl.cron << EOF 
    80111#!/bin/sh  
    81112/usr/sbin/fetch-crl 
    82113EOF 
     114}}} 
     115}}} 
    83116 
     117{{{ 
     118#!div style="font-size: 90%" 
     119{{{#!sh 
    84120chmod a+x /etc/cron.daily/fetch-crl.cron 
     121}}} 
    85122}}} 
    86123