]> git.pld-linux.org Git - packages/certificates.git/commitdiff
- dropped
authorJakub Bogusz <qboosh@pld-linux.org>
Sat, 1 Nov 2008 19:16:10 +0000 (19:16 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    cert-split -> 1.2

cert-split [deleted file]

diff --git a/cert-split b/cert-split
deleted file mode 100644 (file)
index ad71079..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/perl -w
-
-use strict;
-
-my $buf="";
-my $crt="";
-my $in=0;
-
-while(<STDIN>) {
-       next if /^#/;
-       if(/^=+$/) {
-               if($in) {
-                       print CRT $crt;
-                       close CRT;
-                       $buf=~s|/|-|g;
-                       $buf=~s|\n||;
-                       open CRT,">$buf.crt";
-                       $buf="";
-                       $crt="";
-               } else {
-                       $buf=~s|/|-|g;
-                       $buf=~s|\n||;
-                       open CRT,">$buf.crt";
-                       $buf="";
-                       $in=1;
-               }
-       } else {
-               $crt.=$buf;
-               $buf=$_;
-       }
-}
-print CRT $crt.$buf;
-close CRT;
This page took 0.073119 seconds and 4 git commands to generate.