-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-These files were not related to OSD -They were only present in OrangeFS-2.8.6
- Loading branch information
root
committed
Jul 13, 2012
1 parent
369ca53
commit 0661d7a
Showing
50 changed files
with
16,803 additions
and
2,316 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# This script generates a proxy certificate with a policy in the format | ||
# of {UID}/{GID}, e.g. 1000/100. The certificate is stored in /tmp/x509up_u{UID}, | ||
# e.g. /tmp/x509up_u1000. This certificate is for use with the OrangeFS | ||
# Windows Client. | ||
# | ||
# $GLOBUS_LOCATION must be set, or grid-proxy-init must be on the path. | ||
# | ||
# Arguments to this script will be passed to grid-proxy-init. | ||
|
||
echo `id -u`/`id -g` > cert-policy | ||
if [ $? -ne 0 ]; then | ||
echo Could not create cert-policy, exiting | ||
exit 1 | ||
fi | ||
|
||
if [ "$GLOBUS_LOCATION" != "" ]; then | ||
$GLOBUS_LOCATION/bin/grid-proxy-init -policy cert-policy -pl id-ppl-anyLanguage $@ | ||
else | ||
grid-proxy-init -policy cert-policy -pl id-ppl-anyLanguage $@ | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* (C) 2001 Clemson University and The University of Chicago | ||
* | ||
* See COPYING in top-level directory. | ||
*/ | ||
|
||
/* This is the master header file for OrangeFS. It pulls in all header | ||
* files needed by client side for software that operates at or above | ||
* the system interface level. | ||
*/ | ||
|
||
#ifndef __ORANGE_H | ||
#define __ORANGE_H | ||
|
||
#include "pvfs2-usrint.h" | ||
#include "pvfs2.h" | ||
|
||
#endif /* __ORANGE_H */ | ||
|
||
/* | ||
* Local variables: | ||
* c-indent-level: 4 | ||
* c-basic-offset: 4 | ||
* End: | ||
* | ||
* vim: ts=8 sts=4 sw=4 expandtab | ||
*/ |
Oops, something went wrong.