Navigation


Changeset 870:54c4d3e840ff in freeDiameter for contrib/PKI


Ignore:
Timestamp:
Oct 23, 2012, 10:50:01 PM (12 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Remove unnecessary whitespace from Makefiles.

Location:
contrib/PKI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • contrib/PKI/ca_script/Makefile

    r740 r870  
    33# This file is designed to automatize the CA tasks such as:
    44#  -> init  : create the initial CA tree and the CA root certificate.
    5 #  -> newcsr: create a new private key and csr. $name and $email must be set. C, ST, L, O, OU may be overwitten (exemple: make newcsr C=FR)
     5#  -> newcsr: create a new private key and csr. $name and $email must be set. C, ST, L, O, OU may be overwitten (example: make newcsr C=FR)
    66#  -> cert  : sign a pending CSR and generate the certificate. $name must be provided.
    77#  -> revoke: revoke a certificate. $name must be provided.
     
    7070   A cron job should execute make gencrl once a month.\n\
    7171";
    72        
    73 # Destroy the CA completly. Use with care.
     72
     73# Destroy the CA completely. Use with care.
    7474destroy:
    7575        @if [ -z "$(force)" ]; then echo "Restart disabled, use: make destroy force=y"; exit 1; fi
     
    7979        @ln -sf $(STATIC_DIR)/Makefile $(DIR)
    8080        @ln -sf $(STATIC_DIR)/openssl.cnf $(DIR)
    81        
    8281
    8382# Initialize the CA structure and keys.
     
    147146        @rm -f $(DIR)/certs/`openssl x509 -noout -hash < $(DIR)/clients/certs/$(name).cert`.0
    148147        @$(MAKE) gencrl
    149        
     148
    150149# End of file...
  • contrib/PKI/ca_script2/Makefile

    r394 r870  
    4444\n\
    4545";
    46        
    47 # Destroy the CA hierarchy completly. Use with care.
     46
     47# Destroy the CA hierarchy completely. Use with care.
    4848destroy:
    4949        @if [ -z "$(force)" ]; then echo "Destroy disabled, use: make destroy force=y"; exit 1; fi
     
    6666        @echo "01" > $(DATA_DIR)/$(caname)/crlnumber
    6767        @touch $(DATA_DIR)/$(caname)/index.txt
    68        
     68
    6969# Initialize the top-level CA structure and keys.
    7070init:
     
    167167        @CA_ROOT_DIR=$(DATA_DIR)/$(ca) openssl ca $(CONFIG) -revoke $(DATA_DIR)/$(ca)/clients/$(name)/cert.pem;
    168168        @$(REMAKE) gencrl ca=$(ca)
    169        
     169
    170170# Regenerate the Certificate Revocation List.
    171171gencrl:
Note: See TracChangeset for help on using the changeset viewer.