source: examples/access_tests/creddy_prover/cleanup.sh @ 11ca336

mei_rt2
Last change on this file since 11ca336 was 2e9455f, checked in by Mei <mei@…>, 11 years ago

1) added namespace
2) tweak ?This,
3) allowing linking role/oset as constraining conditions
4) adding access_tests regression testing that uses GENI's access policy
5) added couple multi contexts regression tests
6) add compression/uncompression calls to abac_encode_string/abac_decode_string
(libstrongwan only allows 512 char for attribute rule storage)
7) add attribute_now option to creddy that takes a whole char string for attribute
rule

  • Property mode set to 100755
File size: 415 bytes
Line 
1#!/bin/sh
2
3# cleanup.sh
4# complete cleanup,  ./cleanup.sh all
5# partial,           ./cleanup.sh
6
7sidx=$1
8
9#complete
10if [ "$sidx" = "all" ]; then
11   rm -rf *.pem
12   rm -rf *.der
13   rm -rf *yap_clauses
14   rm -rf *test.log
15   rm -rf sfile*
16   rm -rf *.cn
17   rm -rf *creds_dump
18#partial
19else
20   rm -rf *.pem
21   rm -rf *.der
22   rm -rf my_*_yap_clauses
23   rm -rf *_creds_dump
24   rm -rf *_result.sha
25   rm -rf sfile*
26fi
27
28
Note: See TracBrowser for help on using the repository browser.