This file contains hidden or 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
#!/bin/bash | |
mkdir /etc/vomses | |
echo '"vo.org" "emicert-voms.civ.zcu.cz" "15000" "/DC=org/DC=terena/DC=tcs/OU=Domain Control Validated/CN=emicert-voms.civ.zcu.cz" "vo.org"' > /etc/vomses/emicert-voms.civ.zcu.cz |
This file contains hidden or 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
#!/bin/sh | |
#Early steps, just to be sure | |
apt-get update | |
apt-get upgrade -y | |
#NFS Server -- Cargo Cult ;-) | |
apt-get install -y nfs-kernel-server | |
echo '/var/lib/one *(rw,sync,no_subtree_check,root_squash,anonuid=9869,anongid=9869)' >> /etc/exports |
This file contains hidden or 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
before(:each) do | |
require './spec/occi/api/client/auth_details.rb' | |
@client = Occi::Api::Client::ClientHttp.new({ | |
:endpoint => in_endpoint, | |
:auth => in_auth, | |
:log => { :out => "/dev/null", | |
:level => Occi::Log::DEBUG }, | |
:auto_connect => true, | |
:media_type => "text/plain,text/occi" | |
}) |
NewerOlder