[Saga-devel] Fwd: help/ideas needed (fwd)

Shantenu Jha sjha at cct.lsu.edu
Fri Jan 23 08:29:33 CST 2009


>From Andre, Who is having e-mail problems.

Please read through. Thanks.

Shantenu


---------- Forwarded message ----------
From: Andre Merzky <andre at merzky.net>
Date: 2009/1/23
Subject: Re: help/ideas needed
To: SAGA Impl List <saga-devel at cct.lsu.edu>


attachements...

A

Quoting [Andre Merzky] (Jan 23 2009):
> Date: Fri, 23 Jan 2009 14:06:12 +0100
> From: Andre Merzky <andre at merzky.net>
> To: SAGA Impl List <saga-devel at cct.lsu.edu>
> Bcc: Andre Merzky <andre at merzky.net>
> Subject: help/ideas needed
>
> Hi Folx,
>
> I stumbled over a really strange problem, and have no idea
> how to explain, nor how to fix it.  So, I'd like to invite
> you all to brainstorm - all ideas are apreciated.
>
> So, what is happening?
>
> I execute the following script:
>
> ------------------------------------------------------------------------
> #!/bin/sh
>
> export SAGA_VERBOSE=100
> export SAGA_PARENT_JOBID=saga-parent-id10039
> export SAGA_SSH_KEY=`ls /tmp/saga_saga-parent-id*_ssh`
> export SAGA_SSH_PUB=`ls /tmp/saga_saga-parent-id*_ssh.pub`
> export SAGA_SSH_USER=amerzky
>
> env > /tmp/env-0
> /root/saga/examples/misc/context ssh                 1> /tmp/o-0-0 2>
/tmp/e-0-0
> saga-file list_dir /                                 1> /tmp/o-0-1 2>
/tmp/e-0-1
> saga-file list_dir ssh://amerzky@gg101.cct.lsu.edu/  1> /tmp/o-0-2 2>
/tmp/e-0-2
>
> sleep 600
>
> env > /tmp/env-1
> /root/saga/examples/misc/context ssh                 1> /tmp/o-1-0 2>
/tmp/e-1-0
> saga-file list_dir /                                 1> /tmp/o-1-1 2>
/tmp/e-1-1
> saga-file list_dir ssh://amerzky@gg101.cct.lsu.edu/  1> /tmp/o-1-2 2>
/tmp/e-1-2
> ------------------------------------------------------------------------
>
> You will notice that this is doing the same thing twice,
> after a sleep of 5 minutes.  This script is executed on a
> fresh EC2 virtual machine instance, which has SAGA and all
> requisites preinstalled.  As soon as the ssh deamon is up, I
> copy a couple of ssh keys araund, and then run that script.
> Nobody else is accesing the instance.  All other running
> processes look innocent, and should not (tm) interfere with
> SAGA.
>
> Now, what is the problem?
>
> In the above setup, the following files should show no
> differences, modulo logged saga object IDs:
>
>    /tmp/env-0  /tmp/env-1
>    /tmp/o-0-0  /tmp/o-1-0
>    /tmp/e-0-0  /tmp/e-1-0
>    /tmp/o-0-1  /tmp/o-1-1
>    /tmp/e-0-1  /tmp/e-1-1
>    /tmp/o-0-2  /tmp/o-1-2
>    /tmp/e-0-2  /tmp/e-1-2
>
> well, the env does not show any diff, but the saga logs do
> (they are attached)
> In particular, I make the following observations:
>
>   - the set of _loaded_ adaptors seems to be the same
>   - the set of _used_   adaptors differs
>
> I don't understand how that can be!  In the
> examples/misc/context case: the first run shows that the aws
> context adaptor fails (this is the _only_ adaptor used).
> The second run shows that aws_context, default_advert,
> default_replica, and gridsam_job fail - they all implement
> the context cpi.  the ssh_context adaptor (which is the one
> I need) succeeds.
>
> ------------------------------------------------------------------------
> e-0-0:
> Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file
  /etc/saga.ini
> Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file
  /etc/saga.ini
> INFO       : engine.cpp                : loading static adaptors
> INFO       : engine.cpp                : loading dynamic adaptors
> Created exception: SAGA(BadParameter): aws_context:
aws_context_adaptor.cpp(285): Can't handle context types others than ec2
eucalyptus gumbocloud - found ssh
> Created exception: SAGA(NoAdaptor): adaptor_selector.cpp(184): Could not
select any matching adaptor for: context_cpi::__init__
> Created exception: SAGA(NoAdaptor): proxy.cpp(227): No adaptor succeeded
in executing constructor for context_cpi
> Created exception: SAGA(BadParameter):
>   SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't
handle context types others than ec2 eucalyptus gumbocloud - found ssh
>   SAGA(NoAdaptor): proxy.cpp(227): No adaptor succeeded in executing
constructor for context_cpi
>
> SAGA(BadParameter):
>   SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't
handle context types others than ec2 eucalyptus gumbocloud - found ssh
>   SAGA(NoAdaptor): proxy.cpp(227): No adaptor succeeded in executing
constructor for context_cpi
> ------------------------------------------------------------------------
>
> ------------------------------------------------------------------------
> e-1-0:
> Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file
  /etc/saga.ini
> Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file
  /etc/saga.ini
> INFO       : engine.cpp                : loading static adaptors
> INFO       : engine.cpp                : loading dynamic adaptors
> Created exception: SAGA(BadParameter): aws_context:
aws_context_adaptor.cpp(285): Can't handle context types others than ec2
eucalyptus gumbocloud - found ssh
> Created exception: SAGA(BadParameter): default_advert: context.cpp(34):
Can't handle context types others than 'default_advert_db' (got: ssh)
> Created exception: SAGA(BadParameter): default_replica: context.cpp(33):
Can't handle context types others than 'default_replica_db' (got: ssh)
> Created exception: SAGA(BadParameter): omii_gridsam_job:
omii_gridsam_context.cpp(30): Can't handle context types others than
'omii_gridsam' (got: ssh)
> (no error shown as the ssh_context wins)
> ------------------------------------------------------------------------
>
> So, how can it be that identical runs behave differently
> after some waiting time?  Why are some adaptors not
> tried, after they loaded successfully?
>
> It is not the case that the second run always succeeds - the
> number of run's does not seem to have any effect.  Rather, it
> is the waiting time between the first run and the success
> chance of a later run which seem correlated.
>
> The above behaviour is screwing with my performance
> measurements, as you might expect.  Also, it explains the
> sudden loss of some of the mapreduce workers I saw (the
> early-starters fail).
>
> For now, I can add a 10 min waiting time - then the
> following SAGA jobs mostly succeed (at the moment).  Well,
> consider I want to do 10 Mapreduce workers - that are 10 ec2
> instances, times 10 minutes - that is 1.5 hours per test run
> - if everything else is perfect!  Difficult to do a parameter
> sweep, or to get some statistics.
>
> BTW, and unrelated: MapReduce should use async ops for
> creating job services and for creating/running jobs!
>
> So, that is where I am stuck.  As said: any idea on what I
> could investigate further would be appreciated!
>
> Cheers, Andre.
>
>
> PS.: CCT is swallowing my mails again -- it is that time of
> year again it seems.  So, I won't see any answers send via
> the cct mailer - my mail address itself seems fine (get the
> usual amount of spam ;-).  Sorry for that additional
> inconvenience - a ticket is filed (and dormant :-().
--
Nothing is ever easy.
-------------- next part --------------
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
INFO       : engine.cpp                : loading static adaptors
INFO       : engine.cpp                : loading dynamic adaptors
Created exception: SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found ssh
Created exception: SAGA(NoAdaptor): adaptor_selector.cpp(184): Could not select any matching adaptor for: context_cpi::__init__
Created exception: SAGA(NoAdaptor): proxy.cpp(227): No adaptor succeeded in executing constructor for context_cpi
Created exception: SAGA(BadParameter): 
  SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found ssh
  SAGA(NoAdaptor): proxy.cpp(227): No adaptor succeeded in executing constructor for context_cpi

SAGA(BadParameter): 
  SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found ssh
  SAGA(NoAdaptor): proxy.cpp(227): No adaptor succeeded in executing constructor for context_cpi
-------------- next part --------------
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
INFO       : engine.cpp                : loading static adaptors
INFO       : engine.cpp                : loading dynamic adaptors
-------------- next part --------------
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
INFO       : engine.cpp                : loading static adaptors
INFO       : engine.cpp                : loading dynamic adaptors
Created exception: SAGA(BadParameter): default_file: default_dir.cpp(52): dir_cpi_impl::init: cannot handle file: ssh://amerzky@gg101.cct.lsu.edu/
Created exception: SAGA(NoAdaptor): adaptor_selector.cpp(184): Could not select any matching adaptor for: directory_cpi::__init__
Created exception: SAGA(NoAdaptor): proxy.cpp(227): No adaptor succeeded in executing constructor for directory_cpi
Created exception: SAGA(BadParameter): 
  SAGA(BadParameter): default_file: default_dir.cpp(52): dir_cpi_impl::init: cannot handle file: ssh://amerzky@gg101.cct.lsu.edu/
  SAGA(NoAdaptor): proxy.cpp(227): No adaptor succeeded in executing constructor for directory_cpi

SAGA(BadParameter): 
  SAGA(BadParameter): default_file: default_dir.cpp(52): dir_cpi_impl::init: cannot handle file: ssh://amerzky@gg101.cct.lsu.edu/
  SAGA(NoAdaptor): proxy.cpp(227): No adaptor succeeded in executing constructor for directory_cpi
-------------- next part --------------
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
INFO       : engine.cpp                : loading static adaptors
INFO       : engine.cpp                : loading dynamic adaptors
Created exception: SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found ssh
Created exception: SAGA(BadParameter): default_advert: context.cpp(34): Can't handle context types others than 'default_advert_db' (got: ssh)
Created exception: SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: ssh)
Created exception: SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: ssh)
-------------- next part --------------
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
INFO       : engine.cpp                : loading static adaptors
INFO       : engine.cpp                : loading dynamic adaptors
-------------- next part --------------
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
INFO       : engine.cpp                : loading static adaptors
INFO       : engine.cpp                : loading dynamic adaptors
Created exception: SAGA(BadParameter): default_file: default_dir.cpp(52): dir_cpi_impl::init: cannot handle file: ssh://amerzky@gg101.cct.lsu.edu/
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
Created exception: SAGA(NoSuccess): ini.cpp(646): Cannot open file  /etc/saga.ini
INFO       : engine.cpp                : loading static adaptors
INFO       : engine.cpp                : loading dynamic adaptors
LOG        : ssh_file_adaptor_dir_impl.cpp : ssh://amerzky@gg101.cct.lsu.edu/
LOG        : ssh_file_adaptor.cpp      : need to mount new sshfs
LOG        : ssh_file_adaptor.cpp      : gg101.cct.lsu.edu:22
LOG        : ssh_file_adaptor.cpp      : ssh://amerzky@gg101.cct.lsu.edu/
DEBUG      : ssh_file_adaptor_sshfs.cpp : ssh://amerzky@gg101.cct.lsu.edu/
Created exception: SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(DoesNotExist): proxy.cpp(282): SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(BadParameter): default_advert: context.cpp(56): Can't handle context types others than 'default_advert_db' (got: ec2)
LOG        : process.cpp               :  >> /usr/local/saga/bin/aws-tools//bin/ec2-delete-keypair ec2-saga-keypair-ec2 
LOG        : process.cpp               : exit status != 0
LOG        : process.cpp               : File not found: '/root/.ec2_keys//ec2-key.pem'
LOG        : process.cpp               :  >> /usr/local/saga/bin/aws-tools//bin/ec2-add-keypair ec2-saga-keypair-ec2 
LOG        : process.cpp               : exit status != 0
LOG        : process.cpp               : File not found: '/root/.ec2_keys//ec2-key.pem'
LOG        : process.cpp               : File not found: '/root/.ec2_keys//ec2-key.pem'
Created exception: SAGA(NoSuccess): aws_context: aws_context_adaptor.cpp(234): Could not add keypair
Created exception: SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: ec2)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: ec2)
Created exception: SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: ec2)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: ec2)
Created exception: SAGA(BadParameter): ssh_context: ssh_context_adaptor.cpp(42): Can't handle context types others than 'ssh'
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): ssh_context: ssh_context_adaptor.cpp(42): Can't handle context types others than 'ssh'
Created exception: SAGA(NoAdaptor): adaptor_selector.cpp(184): Could not select any matching adaptor for: context_cpi::sync_set_defaults
Created exception: SAGA(NoAdaptor): adaptor_selector.cpp(184): Could not select any matching adaptor for: context_cpi::async_set_defaults
Created exception: SAGA(NoAdaptor): proxy.cpp(213): No (other) adaptor implements context_cpi::set_defaults
Created exception: SAGA(NoAdaptor): proxy.cpp(282): SAGA(NoAdaptor): proxy.cpp(213): No (other) adaptor implements context_cpi::set_defaults
Created exception: SAGA(BadParameter): 
  SAGA(BadParameter): default_advert: context.cpp(56): Can't handle context types others than 'default_advert_db' (got: ec2)
  SAGA(NoSuccess): aws_context: aws_context_adaptor.cpp(234): Could not add keypair
  SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: ec2)
  SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: ec2)
  SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): ssh_context: ssh_context_adaptor.cpp(42): Can't handle context types others than 'ssh'

Created exception: SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(DoesNotExist): proxy.cpp(282): SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(BadParameter): default_advert: context.cpp(56): Can't handle context types others than 'default_advert_db' (got: eucalyptus)
LOG        : process.cpp               :  >> /usr/local/saga/bin/aws-tools//bin/ec2-delete-keypair ec2-saga-keypair-eucalyptus 
LOG        : process.cpp               : exit status != 0
LOG        : process.cpp               : File not found: '/root/.ec2_keys//eucalyptus-key.pem'
LOG        : process.cpp               :  >> /usr/local/saga/bin/aws-tools//bin/ec2-add-keypair ec2-saga-keypair-eucalyptus 
LOG        : process.cpp               : exit status != 0
LOG        : process.cpp               : File not found: '/root/.ec2_keys//eucalyptus-key.pem'
LOG        : process.cpp               : File not found: '/root/.ec2_keys//eucalyptus-key.pem'
Created exception: SAGA(NoSuccess): aws_context: aws_context_adaptor.cpp(234): Could not add keypair
Created exception: SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: eucalyptus)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: eucalyptus)
Created exception: SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: eucalyptus)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: eucalyptus)
Created exception: SAGA(BadParameter): ssh_context: ssh_context_adaptor.cpp(42): Can't handle context types others than 'ssh'
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): ssh_context: ssh_context_adaptor.cpp(42): Can't handle context types others than 'ssh'
Created exception: SAGA(NoAdaptor): adaptor_selector.cpp(184): Could not select any matching adaptor for: context_cpi::sync_set_defaults
Created exception: SAGA(NoAdaptor): adaptor_selector.cpp(184): Could not select any matching adaptor for: context_cpi::async_set_defaults
Created exception: SAGA(NoAdaptor): proxy.cpp(213): No (other) adaptor implements context_cpi::set_defaults
Created exception: SAGA(NoAdaptor): proxy.cpp(282): SAGA(NoAdaptor): proxy.cpp(213): No (other) adaptor implements context_cpi::set_defaults
Created exception: SAGA(BadParameter): 
  SAGA(BadParameter): default_advert: context.cpp(56): Can't handle context types others than 'default_advert_db' (got: eucalyptus)
  SAGA(NoSuccess): aws_context: aws_context_adaptor.cpp(234): Could not add keypair
  SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: eucalyptus)
  SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: eucalyptus)
  SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): ssh_context: ssh_context_adaptor.cpp(42): Can't handle context types others than 'ssh'

Created exception: SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(DoesNotExist): proxy.cpp(282): SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(BadParameter): default_advert: context.cpp(56): Can't handle context types others than 'default_advert_db' (got: nimbus)
Created exception: SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found nimbus
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found nimbus
Created exception: SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: nimbus)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: nimbus)
Created exception: SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: nimbus)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: nimbus)
Created exception: SAGA(BadParameter): ssh_context: ssh_context_adaptor.cpp(42): Can't handle context types others than 'ssh'
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): ssh_context: ssh_context_adaptor.cpp(42): Can't handle context types others than 'ssh'
Created exception: SAGA(NoAdaptor): adaptor_selector.cpp(184): Could not select any matching adaptor for: context_cpi::sync_set_defaults
Created exception: SAGA(NoAdaptor): adaptor_selector.cpp(184): Could not select any matching adaptor for: context_cpi::async_set_defaults
Created exception: SAGA(NoAdaptor): proxy.cpp(213): No (other) adaptor implements context_cpi::set_defaults
Created exception: SAGA(NoAdaptor): proxy.cpp(282): SAGA(NoAdaptor): proxy.cpp(213): No (other) adaptor implements context_cpi::set_defaults
Created exception: SAGA(BadParameter): 
  SAGA(BadParameter): default_advert: context.cpp(56): Can't handle context types others than 'default_advert_db' (got: nimbus)
  SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found nimbus
  SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: nimbus)
  SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: nimbus)
  SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): ssh_context: ssh_context_adaptor.cpp(42): Can't handle context types others than 'ssh'

Created exception: SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(DoesNotExist): proxy.cpp(282): SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(DoesNotExist): proxy.cpp(282): SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(BadParameter): default_advert: context.cpp(56): Can't handle context types others than 'default_advert_db' (got: default_replica_db)
Created exception: SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found default_replica_db
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found default_replica_db
Created exception: SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(DoesNotExist): proxy.cpp(282): SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(BadParameter): default_advert: context.cpp(56): Can't handle context types others than 'default_advert_db' (got: omii_gridsam)
Created exception: SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found omii_gridsam
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found omii_gridsam
Created exception: SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: omii_gridsam)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: omii_gridsam)
Created exception: SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(DoesNotExist): proxy.cpp(282): SAGA(DoesNotExist): attribute_impl.hpp(88): attribute 'Type' does not exist
Created exception: SAGA(BadParameter): default_advert: context.cpp(56): Can't handle context types others than 'default_advert_db' (got: ssh)
Created exception: SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found ssh
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found ssh
Created exception: SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: ssh)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: ssh)
Created exception: SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: ssh)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: ssh)
Created exception: SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found default_advert_db
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found default_advert_db
Created exception: SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found default_replica_db
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found default_replica_db
Created exception: SAGA(BadParameter): default_advert: context.cpp(34): Can't handle context types others than 'default_advert_db' (got: default_replica_db)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_advert: context.cpp(34): Can't handle context types others than 'default_advert_db' (got: default_replica_db)
Created exception: SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found omii_gridsam
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found omii_gridsam
Created exception: SAGA(BadParameter): default_advert: context.cpp(34): Can't handle context types others than 'default_advert_db' (got: omii_gridsam)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_advert: context.cpp(34): Can't handle context types others than 'default_advert_db' (got: omii_gridsam)
Created exception: SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: omii_gridsam)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: omii_gridsam)
Created exception: SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found ssh
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): aws_context: aws_context_adaptor.cpp(285): Can't handle context types others than ec2 eucalyptus gumbocloud - found ssh
Created exception: SAGA(BadParameter): default_advert: context.cpp(34): Can't handle context types others than 'default_advert_db' (got: ssh)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_advert: context.cpp(34): Can't handle context types others than 'default_advert_db' (got: ssh)
Created exception: SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: ssh)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): default_replica: context.cpp(33): Can't handle context types others than 'default_replica_db' (got: ssh)
Created exception: SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: ssh)
Created exception: SAGA(BadParameter): proxy.cpp(282): SAGA(BadParameter): omii_gridsam_job: omii_gridsam_context.cpp(30): Can't handle context types others than 'omii_gridsam' (got: ssh)
LOG        : process.cpp               :  >> mount 
LOG        : process.cpp               :  >> /usr/bin/sshfs -o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay -p 22 -o IdentityFile=/tmp/saga_saga-parent-id15863_ssh amerzky at gg101.cct.lsu.edu:/ /root/.saga/adaptors/ssh/ssh_file/mnt/amerzky at gg101.cct.lsu.edu:22 
DEBUG      : ssh_file_adaptor_sshfs.cpp : new sshfs mounted
LOG        : ssh_file_adaptor.cpp      : register mounted sshfs
LOG        : ssh_file_adaptor.cpp      : gg101.cct.lsu.edu:22
LOG        : ssh_file_adaptor_dir_impl.cpp : file://localhost/root/.saga/adaptors/ssh/ssh_file/mnt/amerzky@gg101.cct.lsu.edu:22/
-------------- next part --------------
MACHTYPE=i486
SSH_CLIENT=130.39.12.142 52202 22
USER=root
MAIL=/var/mail/root
LD_LIBRARY_PATH=/usr/local/saga/lib
SHLVL=1
VENDOR=intel
HOME=/root
SAGA_PARENT_JOBID=saga-parent-id10039
SAGA_LOCATION=/usr/local/saga
SAGA_SSH_PUB=/tmp/saga_saga-parent-id15863_ssh.pub
SAGA_SSH_KEY=/tmp/saga_saga-parent-id15863_ssh
GROUP=root
LOGNAME=root
SAGA_VERBOSE=100
SAGA_SSH_USER=amerzky
PATH=/usr/local/saga/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
LANG=en_US.UTF-8
HOST=ip-10-251-109-192
SHELL=/bin/tcsh
OSTYPE=linux
JAVA_HOME=/usr/lib/jvm/java-6-sun/jre
PWD=/root
SSH_CONNECTION=130.39.12.142 52202 10.251.109.192 22
HOSTTYPE=i486-linux
EDITOR=vim
-------------- next part --------------
MACHTYPE=i486
SSH_CLIENT=130.39.12.142 52202 22
USER=root
MAIL=/var/mail/root
LD_LIBRARY_PATH=/usr/local/saga/lib
SHLVL=1
VENDOR=intel
HOME=/root
SAGA_PARENT_JOBID=saga-parent-id10039
SAGA_LOCATION=/usr/local/saga
SAGA_SSH_PUB=/tmp/saga_saga-parent-id15863_ssh.pub
SAGA_SSH_KEY=/tmp/saga_saga-parent-id15863_ssh
GROUP=root
LOGNAME=root
SAGA_VERBOSE=100
SAGA_SSH_USER=amerzky
PATH=/usr/local/saga/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
LANG=en_US.UTF-8
HOST=ip-10-251-109-192
SHELL=/bin/tcsh
OSTYPE=linux
JAVA_HOME=/usr/lib/jvm/java-6-sun/jre
PWD=/root
SSH_CONNECTION=130.39.12.142 52202 10.251.109.192 22
HOSTTYPE=i486-linux
EDITOR=vim
-------------- next part --------------
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
ini_path: /usr/local/saga/share/saga/
merging /usr/local/saga/share/saga/saga_adaptor_default_advert.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_context.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_file.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_context.ini
merging /usr/local/saga/share/saga/saga.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_replica.ini
merging /usr/local/saga/share/saga/saga_adaptor_omii_gridsam_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_file.ini
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
============================
  [saga]
    'ini_path' : '/usr/local/saga/share/saga/'
    'location' : '/usr/local/saga'
    [adaptor_suite]
      [aws]
        [preferences]
          'cloud_names' : 'ec2 eucalyptus gumbocloud'
          'ec2_home' : '/usr/local/saga/bin/aws-tools/'
          'ec2_keepalive' : 'true'
          'ec2_keystore' : '/root/.ec2_keys/'
          'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
          'java_home' : '/usr/'
          [ec2]
            'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
            'ec2_instance' : 'ami-4286612b'
            'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-ec2'
            'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
            'ec2_type' : 'ec2'
            'ec2_url' : 'https://ec2.amazonaws.com/'
          [eucalyptus]
            'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
            'ec2_instance' : 'emi-0D05022C'
            'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
            'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
            'ec2_type' : 'eucalyptus'
            'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
          [gumbocloud]
            'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
            'ec2_instance' : 'emi-0B680212'
            'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
            'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
            'ec2_type' : 'gumbocloud'
            'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
          [nimbus]
            'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
            'ec2_instance' : 'hello-cloud'
            'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
            'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
            'ec2_type' : 'nimbus'
            'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
      [ssh]
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
    [adaptors]
      [aws_context]
        'name' : 'aws_context'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [aws_job]
        'name' : 'aws_job'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [default_advert]
        'name' : 'default_advert'
        [preferences]
          'dbtype' : 'postgresql'
          [postgresql]
            'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
          [sqlite3]
            'dbconnect' : '/root/.saga/saga_advert.db'
      [default_file]
        'name' : 'default_file'
        [preferences]
      [default_job]
        'name' : 'default_job'
        [preferences]
      [default_replica]
        'name' : 'default_replica'
        [preferences]
          'dbtype' : 'sqlite3'
          [sqlite3]
            'dbconnect' : 'saga_replica.db'
      [omii_gridsam_job]
        'name' : 'omii_gridsam_job'
        [preferences]
          'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
      [ssh_context]
        'name' : 'ssh_context'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
      [ssh_file]
        'name' : 'ssh_file'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_keepalive' : 'yes'
          'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
          'sshfs_ondemand' : 'yes'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
      [ssh_job]
        'name' : 'ssh_job'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
begin register_context_functions (context_cpi): 7f88b8f0-e944-11dd-a6bd-7ff581ef80c2:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 7f88b8f0-e944-11dd-a6bd-7ff581ef80c2:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_context'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_context (aws_context) from file: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_context.so - aws_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
begin register_job_service_functions: 7f88b8f0-e944-11dd-a6bd-7ff581ef80c2:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: 7f88b8f0-e944-11dd-a6bd-7ff581ef80c2:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_job'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_job (aws_job) from file: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_job.so - aws_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
begin register_namespace_entry_functions (advert_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_advert_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_store_object
  function registration: disabled: async_store_object
  function registration: sync_retrieve_object
  function registration: disabled: async_retrieve_object
  function registration: sync_store_string
  function registration: disabled: async_store_string
  function registration: sync_retrieve_string
  function registration: disabled: async_retrieve_string
end register_advert_functions
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (advert_directory_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (advert_directory_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_advert_directory_entry_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_advert_directory_functions
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_advert'
  [preferences]
    'dbtype' : 'postgresql'
    [postgresql]
      'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
    [sqlite3]
      'dbconnect' : '/root/.saga/saga_advert.db'
============================
loaded adaptor: libsaga_adaptor_default_advert (default_advert) from file: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_advert.so - default_advert
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_file.so
begin register_namespace_entry_functions (file_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_size
  function registration: disabled: async_get_size
  function registration: sync_read
  function registration: disabled: async_read
  function registration: sync_write
  function registration: disabled: async_write
  function registration: sync_seek
  function registration: disabled: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: skipped: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
end register_directory_functions
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'default_file'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_file (default_file) from file: /usr/local/saga/lib/libsaga_adaptor_default_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_file.so - default_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_job.so
begin register_job_service_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_job'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_job (default_job) from file: /usr/local/saga/lib/libsaga_adaptor_default_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_job.so - default_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
begin register_namespace_entry_functions (logical_file_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_logical_file_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_add_location
  function registration: disabled: async_add_location
  function registration: sync_remove_location
  function registration: disabled: async_remove_location
  function registration: sync_update_location
  function registration: disabled: async_update_location
  function registration: sync_list_locations
  function registration: disabled: async_list_locations
  function registration: sync_replicate
  function registration: disabled: async_replicate
end register_logical_file_functions
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (logical_directory_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (logical_directory_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_logical_directory_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_is_file
  function registration: disabled: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_logical_directory_functions
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_replica'
  [preferences]
    'dbtype' : 'sqlite3'
    [sqlite3]
      'dbconnect' : 'saga_replica.db'
============================
loaded adaptor: libsaga_adaptor_default_replica (default_replica) from file: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_replica.so - default_replica
loaded module: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
begin register_job_service_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: skipped: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: skipped: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_context_functions (context_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'omii_gridsam_job'
  [preferences]
    'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
============================
loaded adaptor: libsaga_adaptor_omii_gridsam_job (omii_gridsam_job) from file: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so - omii_gridsam_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
begin register_context_functions (context_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_context'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_ssh_context (ssh_context) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so - ssh_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
begin register_namespace_entry_functions (file_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_read
  function registration: skipped: async_read
  function registration: sync_write
  function registration: skipped: async_write
  function registration: sync_seek
  function registration: skipped: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_change_dir
  function registration: skipped: async_change_dir
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_exists
  function registration: skipped: async_exists
  function registration: sync_get_num_entries
  function registration: skipped: async_get_num_entries
  function registration: sync_get_entry
  function registration: skipped: async_get_entry
  function registration: sync_make_dir
  function registration: skipped: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: skipped: async_open
  function registration: sync_open_dir
  function registration: skipped: async_open_dir
end register_directory_functions
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'ssh_file'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_keepalive' : 'yes'
    'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
    'sshfs_ondemand' : 'yes'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_file (ssh_file) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so - ssh_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
begin register_job_service_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_get_job
  function registration: disabled: async_get_job
  function registration: sync_get_self
  function registration: disabled: async_get_self
end register_job_service_functions
begin register_permissions_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_job_id
  function registration: disabled: async_get_job_id
  function registration: sync_get_state
  function registration: disabled: async_get_state
  function registration: sync_get_description
  function registration: disabled: async_get_description
  function registration: sync_get_stdin
  function registration: disabled: async_get_stdin
  function registration: sync_get_stdout
  function registration: disabled: async_get_stdout
  function registration: sync_get_stderr
  function registration: disabled: async_get_stderr
  function registration: sync_suspend
  function registration: disabled: async_suspend
  function registration: sync_resume
  function registration: disabled: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: disabled: async_migrate
  function registration: sync_signal
  function registration: disabled: async_signal
  function registration: sync_run
  function registration: disabled: async_run
  function registration: sync_cancel
  function registration: disabled: async_cancel
  function registration: sync_wait
  function registration: disabled: async_wait
end register_job_functions
begin register_attribute_functions: 7fba3bf0-e944-11dd-9ca1-832007ae45aa:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_job'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_job (ssh_job) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so - ssh_job
Trying to create CPI: context_cpi for operation: __init__
from proxy for CPI: context_cpi using adaptor instance: aws_context (7f88b8f0-e944-11dd-a6bd-7ff581ef80c2)
-------------- next part --------------
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
ini_path: /usr/local/saga/share/saga/
merging /usr/local/saga/share/saga/saga_adaptor_default_advert.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_context.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_file.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_context.ini
merging /usr/local/saga/share/saga/saga.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_replica.ini
merging /usr/local/saga/share/saga/saga_adaptor_omii_gridsam_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_file.ini
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
============================
  [saga]
    'ini_path' : '/usr/local/saga/share/saga/'
    'location' : '/usr/local/saga'
    [adaptor_suite]
      [aws]
        [preferences]
          'cloud_names' : 'ec2 eucalyptus gumbocloud'
          'ec2_home' : '/usr/local/saga/bin/aws-tools/'
          'ec2_keepalive' : 'true'
          'ec2_keystore' : '/root/.ec2_keys/'
          'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
          'java_home' : '/usr/'
          [ec2]
            'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
            'ec2_instance' : 'ami-4286612b'
            'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-ec2'
            'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
            'ec2_type' : 'ec2'
            'ec2_url' : 'https://ec2.amazonaws.com/'
          [eucalyptus]
            'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
            'ec2_instance' : 'emi-0D05022C'
            'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
            'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
            'ec2_type' : 'eucalyptus'
            'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
          [gumbocloud]
            'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
            'ec2_instance' : 'emi-0B680212'
            'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
            'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
            'ec2_type' : 'gumbocloud'
            'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
          [nimbus]
            'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
            'ec2_instance' : 'hello-cloud'
            'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
            'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
            'ec2_type' : 'nimbus'
            'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
      [ssh]
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
    [adaptors]
      [aws_context]
        'name' : 'aws_context'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [aws_job]
        'name' : 'aws_job'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [default_advert]
        'name' : 'default_advert'
        [preferences]
          'dbtype' : 'postgresql'
          [postgresql]
            'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
          [sqlite3]
            'dbconnect' : '/root/.saga/saga_advert.db'
      [default_file]
        'name' : 'default_file'
        [preferences]
      [default_job]
        'name' : 'default_job'
        [preferences]
      [default_replica]
        'name' : 'default_replica'
        [preferences]
          'dbtype' : 'sqlite3'
          [sqlite3]
            'dbconnect' : 'saga_replica.db'
      [omii_gridsam_job]
        'name' : 'omii_gridsam_job'
        [preferences]
          'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
      [ssh_context]
        'name' : 'ssh_context'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
      [ssh_file]
        'name' : 'ssh_file'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_keepalive' : 'yes'
          'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
          'sshfs_ondemand' : 'yes'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
      [ssh_job]
        'name' : 'ssh_job'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
begin register_context_functions (context_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_context'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_context (aws_context) from file: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_context.so - aws_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
begin register_job_service_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_job'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_job (aws_job) from file: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_job.so - aws_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
begin register_namespace_entry_functions (advert_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_advert_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_store_object
  function registration: disabled: async_store_object
  function registration: sync_retrieve_object
  function registration: disabled: async_retrieve_object
  function registration: sync_store_string
  function registration: disabled: async_store_string
  function registration: sync_retrieve_string
  function registration: disabled: async_retrieve_string
end register_advert_functions
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (advert_directory_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (advert_directory_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_advert_directory_entry_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_advert_directory_functions
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_advert'
  [preferences]
    'dbtype' : 'postgresql'
    [postgresql]
      'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
    [sqlite3]
      'dbconnect' : '/root/.saga/saga_advert.db'
============================
loaded adaptor: libsaga_adaptor_default_advert (default_advert) from file: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_advert.so - default_advert
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_file.so
begin register_namespace_entry_functions (file_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_size
  function registration: disabled: async_get_size
  function registration: sync_read
  function registration: disabled: async_read
  function registration: sync_write
  function registration: disabled: async_write
  function registration: sync_seek
  function registration: disabled: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: skipped: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
end register_directory_functions
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'default_file'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_file (default_file) from file: /usr/local/saga/lib/libsaga_adaptor_default_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_file.so - default_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_job.so
begin register_job_service_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_job'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_job (default_job) from file: /usr/local/saga/lib/libsaga_adaptor_default_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_job.so - default_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
begin register_namespace_entry_functions (logical_file_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_logical_file_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_add_location
  function registration: disabled: async_add_location
  function registration: sync_remove_location
  function registration: disabled: async_remove_location
  function registration: sync_update_location
  function registration: disabled: async_update_location
  function registration: sync_list_locations
  function registration: disabled: async_list_locations
  function registration: sync_replicate
  function registration: disabled: async_replicate
end register_logical_file_functions
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (logical_directory_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (logical_directory_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_logical_directory_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_is_file
  function registration: disabled: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_logical_directory_functions
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_replica'
  [preferences]
    'dbtype' : 'sqlite3'
    [sqlite3]
      'dbconnect' : 'saga_replica.db'
============================
loaded adaptor: libsaga_adaptor_default_replica (default_replica) from file: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_replica.so - default_replica
loaded module: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
begin register_job_service_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: skipped: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: skipped: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_context_functions (context_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'omii_gridsam_job'
  [preferences]
    'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
============================
loaded adaptor: libsaga_adaptor_omii_gridsam_job (omii_gridsam_job) from file: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so - omii_gridsam_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
begin register_context_functions (context_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_context'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_ssh_context (ssh_context) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so - ssh_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
begin register_namespace_entry_functions (file_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_read
  function registration: skipped: async_read
  function registration: sync_write
  function registration: skipped: async_write
  function registration: sync_seek
  function registration: skipped: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_change_dir
  function registration: skipped: async_change_dir
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_exists
  function registration: skipped: async_exists
  function registration: sync_get_num_entries
  function registration: skipped: async_get_num_entries
  function registration: sync_get_entry
  function registration: skipped: async_get_entry
  function registration: sync_make_dir
  function registration: skipped: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: skipped: async_open
  function registration: sync_open_dir
  function registration: skipped: async_open_dir
end register_directory_functions
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'ssh_file'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_keepalive' : 'yes'
    'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
    'sshfs_ondemand' : 'yes'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_file (ssh_file) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so - ssh_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
begin register_job_service_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_get_job
  function registration: disabled: async_get_job
  function registration: sync_get_self
  function registration: disabled: async_get_self
end register_job_service_functions
begin register_permissions_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_job_id
  function registration: disabled: async_get_job_id
  function registration: sync_get_state
  function registration: disabled: async_get_state
  function registration: sync_get_description
  function registration: disabled: async_get_description
  function registration: sync_get_stdin
  function registration: disabled: async_get_stdin
  function registration: sync_get_stdout
  function registration: disabled: async_get_stdout
  function registration: sync_get_stderr
  function registration: disabled: async_get_stderr
  function registration: sync_suspend
  function registration: disabled: async_suspend
  function registration: sync_resume
  function registration: disabled: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: disabled: async_migrate
  function registration: sync_signal
  function registration: disabled: async_signal
  function registration: sync_run
  function registration: disabled: async_run
  function registration: sync_cancel
  function registration: disabled: async_cancel
  function registration: sync_wait
  function registration: disabled: async_wait
end register_job_functions
begin register_attribute_functions: 800a4960-e944-11dd-9a72-63349d94448f:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_job'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_job (ssh_job) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so - ssh_job
Trying to create CPI: directory_cpi for operation: __init__
from proxy for CPI: directory_cpi using adaptor instance: aws_context (800a4960-e944-11dd-9a72-63349d94448f)
Successfully created CPI: directory_cpi using adaptor instance: aws_context
Testing adaptor aws_context for namespace_dir_cpi -> sync_list : 1
  devTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  initrdTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  sysTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  optTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  tmpTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  bootTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  procTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  binTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  mntTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  srvTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  rootTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  homeTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  libTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  sbinTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  varTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  usrTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  etcTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1

  lost%2BfoundTesting adaptor aws_context for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor aws_context for namespace_dir_cpi -> sync_is_link : 1
-------------- next part --------------
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
ini_path: /usr/local/saga/share/saga/
merging /usr/local/saga/share/saga/saga_adaptor_default_advert.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_context.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_file.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_context.ini
merging /usr/local/saga/share/saga/saga.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_replica.ini
merging /usr/local/saga/share/saga/saga_adaptor_omii_gridsam_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_file.ini
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
============================
  [saga]
    'ini_path' : '/usr/local/saga/share/saga/'
    'location' : '/usr/local/saga'
    [adaptor_suite]
      [aws]
        [preferences]
          'cloud_names' : 'ec2 eucalyptus gumbocloud'
          'ec2_home' : '/usr/local/saga/bin/aws-tools/'
          'ec2_keepalive' : 'true'
          'ec2_keystore' : '/root/.ec2_keys/'
          'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
          'java_home' : '/usr/'
          [ec2]
            'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
            'ec2_instance' : 'ami-4286612b'
            'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-ec2'
            'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
            'ec2_type' : 'ec2'
            'ec2_url' : 'https://ec2.amazonaws.com/'
          [eucalyptus]
            'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
            'ec2_instance' : 'emi-0D05022C'
            'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
            'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
            'ec2_type' : 'eucalyptus'
            'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
          [gumbocloud]
            'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
            'ec2_instance' : 'emi-0B680212'
            'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
            'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
            'ec2_type' : 'gumbocloud'
            'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
          [nimbus]
            'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
            'ec2_instance' : 'hello-cloud'
            'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
            'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
            'ec2_type' : 'nimbus'
            'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
      [ssh]
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
    [adaptors]
      [aws_context]
        'name' : 'aws_context'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [aws_job]
        'name' : 'aws_job'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [default_advert]
        'name' : 'default_advert'
        [preferences]
          'dbtype' : 'postgresql'
          [postgresql]
            'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
          [sqlite3]
            'dbconnect' : '/root/.saga/saga_advert.db'
      [default_file]
        'name' : 'default_file'
        [preferences]
      [default_job]
        'name' : 'default_job'
        [preferences]
      [default_replica]
        'name' : 'default_replica'
        [preferences]
          'dbtype' : 'sqlite3'
          [sqlite3]
            'dbconnect' : 'saga_replica.db'
      [omii_gridsam_job]
        'name' : 'omii_gridsam_job'
        [preferences]
          'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
      [ssh_context]
        'name' : 'ssh_context'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
      [ssh_file]
        'name' : 'ssh_file'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_keepalive' : 'yes'
          'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
          'sshfs_ondemand' : 'yes'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
      [ssh_job]
        'name' : 'ssh_job'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
begin register_context_functions (context_cpi): 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_context'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_context (aws_context) from file: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_context.so - aws_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
begin register_job_service_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_job'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_job (aws_job) from file: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_job.so - aws_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
begin register_namespace_entry_functions (advert_cpi): 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_advert_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_store_object
  function registration: disabled: async_store_object
  function registration: sync_retrieve_object
  function registration: disabled: async_retrieve_object
  function registration: sync_store_string
  function registration: disabled: async_store_string
  function registration: sync_retrieve_string
  function registration: disabled: async_retrieve_string
end register_advert_functions
begin register_attribute_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (advert_directory_cpi): 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (advert_directory_cpi): 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_advert_directory_entry_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_advert_directory_functions
begin register_attribute_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_advert'
  [preferences]
    'dbtype' : 'postgresql'
    [postgresql]
      'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
    [sqlite3]
      'dbconnect' : '/root/.saga/saga_advert.db'
============================
loaded adaptor: libsaga_adaptor_default_advert (default_advert) from file: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_advert.so - default_advert
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_file.so
begin register_namespace_entry_functions (file_cpi): 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_get_size
  function registration: disabled: async_get_size
  function registration: sync_read
  function registration: disabled: async_read
  function registration: sync_write
  function registration: disabled: async_write
  function registration: sync_seek
  function registration: disabled: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: skipped: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
end register_directory_functions
begin register_attribute_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 800a4960-e944-11dd-9f7c-77ab3099ac42:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'default_file'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_file (default_file) from file: /usr/local/saga/lib/libsaga_adaptor_default_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_file.so - default_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_job.so
begin register_job_service_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_job'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_job (default_job) from file: /usr/local/saga/lib/libsaga_adaptor_default_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_job.so - default_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
begin register_namespace_entry_functions (logical_file_cpi): 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_logical_file_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_add_location
  function registration: disabled: async_add_location
  function registration: sync_remove_location
  function registration: disabled: async_remove_location
  function registration: sync_update_location
  function registration: disabled: async_update_location
  function registration: sync_list_locations
  function registration: disabled: async_list_locations
  function registration: sync_replicate
  function registration: disabled: async_replicate
end register_logical_file_functions
begin register_attribute_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (logical_directory_cpi): 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (logical_directory_cpi): 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_logical_directory_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_is_file
  function registration: disabled: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_logical_directory_functions
begin register_attribute_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_replica'
  [preferences]
    'dbtype' : 'sqlite3'
    [sqlite3]
      'dbconnect' : 'saga_replica.db'
============================
loaded adaptor: libsaga_adaptor_default_replica (default_replica) from file: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_replica.so - default_replica
loaded module: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
begin register_job_service_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: skipped: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: skipped: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_context_functions (context_cpi): 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'omii_gridsam_job'
  [preferences]
    'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
============================
loaded adaptor: libsaga_adaptor_omii_gridsam_job (omii_gridsam_job) from file: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so - omii_gridsam_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
begin register_context_functions (context_cpi): 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_context'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_ssh_context (ssh_context) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so - ssh_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
begin register_namespace_entry_functions (file_cpi): 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_read
  function registration: skipped: async_read
  function registration: sync_write
  function registration: skipped: async_write
  function registration: sync_seek
  function registration: skipped: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_change_dir
  function registration: skipped: async_change_dir
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_exists
  function registration: skipped: async_exists
  function registration: sync_get_num_entries
  function registration: skipped: async_get_num_entries
  function registration: sync_get_entry
  function registration: skipped: async_get_entry
  function registration: sync_make_dir
  function registration: skipped: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: skipped: async_open
  function registration: sync_open_dir
  function registration: skipped: async_open_dir
end register_directory_functions
begin register_attribute_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'ssh_file'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_keepalive' : 'yes'
    'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
    'sshfs_ondemand' : 'yes'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_file (ssh_file) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so - ssh_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
begin register_job_service_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_get_job
  function registration: disabled: async_get_job
  function registration: sync_get_self
  function registration: disabled: async_get_self
end register_job_service_functions
begin register_permissions_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_job_id
  function registration: disabled: async_get_job_id
  function registration: sync_get_state
  function registration: disabled: async_get_state
  function registration: sync_get_description
  function registration: disabled: async_get_description
  function registration: sync_get_stdin
  function registration: disabled: async_get_stdin
  function registration: sync_get_stdout
  function registration: disabled: async_get_stdout
  function registration: sync_get_stderr
  function registration: disabled: async_get_stderr
  function registration: sync_suspend
  function registration: disabled: async_suspend
  function registration: sync_resume
  function registration: disabled: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: disabled: async_migrate
  function registration: sync_signal
  function registration: disabled: async_signal
  function registration: sync_run
  function registration: disabled: async_run
  function registration: sync_cancel
  function registration: disabled: async_cancel
  function registration: sync_wait
  function registration: disabled: async_wait
end register_job_functions
begin register_attribute_functions: 80a2d0a4-e944-11dd-86f7-7f6f846ff8ca:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_job'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_job (ssh_job) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so - ssh_job
Trying to create CPI: directory_cpi for operation: __init__
from proxy for CPI: directory_cpi using adaptor instance: aws_context (800a4960-e944-11dd-9f7c-77ab3099ac42)
-------------- next part --------------
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
ini_path: /usr/local/saga/share/saga/
merging /usr/local/saga/share/saga/saga_adaptor_default_advert.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_context.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_file.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_context.ini
merging /usr/local/saga/share/saga/saga.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_replica.ini
merging /usr/local/saga/share/saga/saga_adaptor_omii_gridsam_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_file.ini
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
============================
  [saga]
    'ini_path' : '/usr/local/saga/share/saga/'
    'location' : '/usr/local/saga'
    [adaptor_suite]
      [aws]
        [preferences]
          'cloud_names' : 'ec2 eucalyptus gumbocloud'
          'ec2_home' : '/usr/local/saga/bin/aws-tools/'
          'ec2_keepalive' : 'true'
          'ec2_keystore' : '/root/.ec2_keys/'
          'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
          'java_home' : '/usr/'
          [ec2]
            'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
            'ec2_instance' : 'ami-4286612b'
            'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-ec2'
            'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
            'ec2_type' : 'ec2'
            'ec2_url' : 'https://ec2.amazonaws.com/'
          [eucalyptus]
            'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
            'ec2_instance' : 'emi-0D05022C'
            'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
            'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
            'ec2_type' : 'eucalyptus'
            'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
          [gumbocloud]
            'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
            'ec2_instance' : 'emi-0B680212'
            'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
            'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
            'ec2_type' : 'gumbocloud'
            'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
          [nimbus]
            'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
            'ec2_instance' : 'hello-cloud'
            'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
            'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
            'ec2_type' : 'nimbus'
            'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
      [ssh]
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
    [adaptors]
      [aws_context]
        'name' : 'aws_context'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [aws_job]
        'name' : 'aws_job'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [default_advert]
        'name' : 'default_advert'
        [preferences]
          'dbtype' : 'postgresql'
          [postgresql]
            'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
          [sqlite3]
            'dbconnect' : '/root/.saga/saga_advert.db'
      [default_file]
        'name' : 'default_file'
        [preferences]
      [default_job]
        'name' : 'default_job'
        [preferences]
      [default_replica]
        'name' : 'default_replica'
        [preferences]
          'dbtype' : 'sqlite3'
          [sqlite3]
            'dbconnect' : 'saga_replica.db'
      [omii_gridsam_job]
        'name' : 'omii_gridsam_job'
        [preferences]
          'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
      [ssh_context]
        'name' : 'ssh_context'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
      [ssh_file]
        'name' : 'ssh_file'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_keepalive' : 'yes'
          'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
          'sshfs_ondemand' : 'yes'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
      [ssh_job]
        'name' : 'ssh_job'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
begin register_context_functions (context_cpi): e67e096a-e945-11dd-9cc0-0b55918a45cc:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e67e096a-e945-11dd-9cc0-0b55918a45cc:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_context'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_context (aws_context) from file: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_context.so - aws_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
begin register_job_service_functions: e67ea294-e945-11dd-8daa-efd9b3ee1a1c:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e67ea294-e945-11dd-8daa-efd9b3ee1a1c:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_job'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_job (aws_job) from file: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_job.so - aws_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
begin register_namespace_entry_functions (advert_cpi): e67fe064-e945-11dd-9915-ef9f609d32f9:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_advert_functions: e67fe064-e945-11dd-9915-ef9f609d32f9:
  function registration: sync_store_object
  function registration: disabled: async_store_object
  function registration: sync_retrieve_object
  function registration: disabled: async_retrieve_object
  function registration: sync_store_string
  function registration: disabled: async_store_string
  function registration: sync_retrieve_string
  function registration: disabled: async_retrieve_string
end register_advert_functions
begin register_attribute_functions: e67fe064-e945-11dd-9915-ef9f609d32f9:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e67fe064-e945-11dd-9915-ef9f609d32f9:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (advert_directory_cpi): e67fe064-e945-11dd-9915-ef9f609d32f9:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (advert_directory_cpi): e67fe064-e945-11dd-9915-ef9f609d32f9:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_advert_directory_entry_functions: e67fe064-e945-11dd-9915-ef9f609d32f9:
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_advert_directory_functions
begin register_attribute_functions: e67fe064-e945-11dd-9915-ef9f609d32f9:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e67fe064-e945-11dd-9915-ef9f609d32f9:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): e67fe064-e945-11dd-9915-ef9f609d32f9:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e67fe064-e945-11dd-9915-ef9f609d32f9:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_advert'
  [preferences]
    'dbtype' : 'postgresql'
    [postgresql]
      'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
    [sqlite3]
      'dbconnect' : '/root/.saga/saga_advert.db'
============================
loaded adaptor: libsaga_adaptor_default_advert (default_advert) from file: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_advert.so - default_advert
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_file.so
begin register_namespace_entry_functions (file_cpi): e680eca2-e945-11dd-bc6c-bb133a6e1916:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): e680eca2-e945-11dd-bc6c-bb133a6e1916:
  function registration: sync_get_size
  function registration: disabled: async_get_size
  function registration: sync_read
  function registration: disabled: async_read
  function registration: sync_write
  function registration: disabled: async_write
  function registration: sync_seek
  function registration: disabled: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: e680eca2-e945-11dd-bc6c-bb133a6e1916:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e680eca2-e945-11dd-bc6c-bb133a6e1916:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): e680eca2-e945-11dd-bc6c-bb133a6e1916:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): e680eca2-e945-11dd-bc6c-bb133a6e1916:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): e680eca2-e945-11dd-bc6c-bb133a6e1916:
  function registration: skipped: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
end register_directory_functions
begin register_attribute_functions: e680eca2-e945-11dd-bc6c-bb133a6e1916:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e680eca2-e945-11dd-bc6c-bb133a6e1916:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'default_file'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_file (default_file) from file: /usr/local/saga/lib/libsaga_adaptor_default_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_file.so - default_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_job.so
begin register_job_service_functions: e681a76e-e945-11dd-95ea-cb4d515ab839:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e681a76e-e945-11dd-95ea-cb4d515ab839:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e681a76e-e945-11dd-95ea-cb4d515ab839:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: e681a76e-e945-11dd-95ea-cb4d515ab839:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_job'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_job (default_job) from file: /usr/local/saga/lib/libsaga_adaptor_default_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_job.so - default_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
begin register_namespace_entry_functions (logical_file_cpi): e6825eac-e945-11dd-a8bf-37c99bf6b8c7:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_logical_file_functions: e6825eac-e945-11dd-a8bf-37c99bf6b8c7:
  function registration: sync_add_location
  function registration: disabled: async_add_location
  function registration: sync_remove_location
  function registration: disabled: async_remove_location
  function registration: sync_update_location
  function registration: disabled: async_update_location
  function registration: sync_list_locations
  function registration: disabled: async_list_locations
  function registration: sync_replicate
  function registration: disabled: async_replicate
end register_logical_file_functions
begin register_attribute_functions: e6825eac-e945-11dd-a8bf-37c99bf6b8c7:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e6825eac-e945-11dd-a8bf-37c99bf6b8c7:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (logical_directory_cpi): e6825eac-e945-11dd-a8bf-37c99bf6b8c7:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (logical_directory_cpi): e6825eac-e945-11dd-a8bf-37c99bf6b8c7:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_logical_directory_functions: e6825eac-e945-11dd-a8bf-37c99bf6b8c7:
  function registration: sync_is_file
  function registration: disabled: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_logical_directory_functions
begin register_attribute_functions: e6825eac-e945-11dd-a8bf-37c99bf6b8c7:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e6825eac-e945-11dd-a8bf-37c99bf6b8c7:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): e6825eac-e945-11dd-a8bf-37c99bf6b8c7:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e6825eac-e945-11dd-a8bf-37c99bf6b8c7:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_replica'
  [preferences]
    'dbtype' : 'sqlite3'
    [sqlite3]
      'dbconnect' : 'saga_replica.db'
============================
loaded adaptor: libsaga_adaptor_default_replica (default_replica) from file: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_replica.so - default_replica
loaded module: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
begin register_job_service_functions: e683d3c2-e945-11dd-83e6-835e15e6e6b5:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e683d3c2-e945-11dd-83e6-835e15e6e6b5:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e683d3c2-e945-11dd-83e6-835e15e6e6b5:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: skipped: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: skipped: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: e683d3c2-e945-11dd-83e6-835e15e6e6b5:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_context_functions (context_cpi): e683d3c2-e945-11dd-83e6-835e15e6e6b5:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e683d3c2-e945-11dd-83e6-835e15e6e6b5:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'omii_gridsam_job'
  [preferences]
    'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
============================
loaded adaptor: libsaga_adaptor_omii_gridsam_job (omii_gridsam_job) from file: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so - omii_gridsam_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
begin register_context_functions (context_cpi): e68457ac-e945-11dd-b347-c737be0beb4c:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e68457ac-e945-11dd-b347-c737be0beb4c:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_context'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_ssh_context (ssh_context) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so - ssh_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
begin register_namespace_entry_functions (file_cpi): e684a2b6-e945-11dd-9683-2796dddec038:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): e684a2b6-e945-11dd-9683-2796dddec038:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_read
  function registration: skipped: async_read
  function registration: sync_write
  function registration: skipped: async_write
  function registration: sync_seek
  function registration: skipped: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: e684a2b6-e945-11dd-9683-2796dddec038:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e684a2b6-e945-11dd-9683-2796dddec038:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): e684a2b6-e945-11dd-9683-2796dddec038:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): e684a2b6-e945-11dd-9683-2796dddec038:
  function registration: sync_change_dir
  function registration: skipped: async_change_dir
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_exists
  function registration: skipped: async_exists
  function registration: sync_get_num_entries
  function registration: skipped: async_get_num_entries
  function registration: sync_get_entry
  function registration: skipped: async_get_entry
  function registration: sync_make_dir
  function registration: skipped: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): e684a2b6-e945-11dd-9683-2796dddec038:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: skipped: async_open
  function registration: sync_open_dir
  function registration: skipped: async_open_dir
end register_directory_functions
begin register_attribute_functions: e684a2b6-e945-11dd-9683-2796dddec038:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e684a2b6-e945-11dd-9683-2796dddec038:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'ssh_file'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_keepalive' : 'yes'
    'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
    'sshfs_ondemand' : 'yes'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_file (ssh_file) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so - ssh_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
begin register_job_service_functions: e685641c-e945-11dd-b484-ef6de169eae2:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_get_job
  function registration: disabled: async_get_job
  function registration: sync_get_self
  function registration: disabled: async_get_self
end register_job_service_functions
begin register_permissions_functions: e685641c-e945-11dd-b484-ef6de169eae2:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e685641c-e945-11dd-b484-ef6de169eae2:
  function registration: sync_get_job_id
  function registration: disabled: async_get_job_id
  function registration: sync_get_state
  function registration: disabled: async_get_state
  function registration: sync_get_description
  function registration: disabled: async_get_description
  function registration: sync_get_stdin
  function registration: disabled: async_get_stdin
  function registration: sync_get_stdout
  function registration: disabled: async_get_stdout
  function registration: sync_get_stderr
  function registration: disabled: async_get_stderr
  function registration: sync_suspend
  function registration: disabled: async_suspend
  function registration: sync_resume
  function registration: disabled: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: disabled: async_migrate
  function registration: sync_signal
  function registration: disabled: async_signal
  function registration: sync_run
  function registration: disabled: async_run
  function registration: sync_cancel
  function registration: disabled: async_cancel
  function registration: sync_wait
  function registration: disabled: async_wait
end register_job_functions
begin register_attribute_functions: e685641c-e945-11dd-b484-ef6de169eae2:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_job'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_job (ssh_job) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so - ssh_job
Trying to create CPI: context_cpi for operation: __init__
from proxy for CPI: context_cpi using adaptor instance: aws_context (e67e096a-e945-11dd-9cc0-0b55918a45cc)
Trying to create CPI: context_cpi for operation: __init__
from proxy for CPI: context_cpi using adaptor instance: default_advert (e67fe064-e945-11dd-9915-ef9f609d32f9)
Trying to create CPI: context_cpi for operation: __init__
from proxy for CPI: context_cpi using adaptor instance: default_replica (e6825eac-e945-11dd-a8bf-37c99bf6b8c7)
Trying to create CPI: context_cpi for operation: __init__
from proxy for CPI: context_cpi using adaptor instance: omii_gridsam_job (e683d3c2-e945-11dd-83e6-835e15e6e6b5)
Trying to create CPI: context_cpi for operation: __init__
from proxy for CPI: context_cpi using adaptor instance: ssh_context (e68457ac-e945-11dd-b347-c737be0beb4c)
Successfully created CPI: context_cpi using adaptor instance: ssh_context
Testing adaptor ssh_context for context_cpi -> sync_set_defaults : 1
Testing adaptor ssh_context for attribute_cpi -> sync_list_attributes : 1
 ------------------------------ 
 Type 	: Testing adaptor ssh_context for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor ssh_context for attribute_cpi -> sync_attribute_is_vector : 1
Testing adaptor ssh_context for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor ssh_context for attribute_cpi -> sync_get_attribute : 1
ssh 
 UserCert 	: Testing adaptor ssh_context for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor ssh_context for attribute_cpi -> sync_attribute_is_vector : 1
Testing adaptor ssh_context for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor ssh_context for attribute_cpi -> sync_get_attribute : 1
/tmp/saga_saga-parent-id15863_ssh.pub 
 UserID 	: Testing adaptor ssh_context for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor ssh_context for attribute_cpi -> sync_attribute_is_vector : 1
Testing adaptor ssh_context for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor ssh_context for attribute_cpi -> sync_get_attribute : 1
amerzky 
 UserKey 	: Testing adaptor ssh_context for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor ssh_context for attribute_cpi -> sync_attribute_is_vector : 1
Testing adaptor ssh_context for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor ssh_context for attribute_cpi -> sync_get_attribute : 1
/tmp/saga_saga-parent-id15863_ssh 
 ------------------------------ 
-------------- next part --------------
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
ini_path: /usr/local/saga/share/saga/
merging /usr/local/saga/share/saga/saga_adaptor_default_advert.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_context.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_file.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_context.ini
merging /usr/local/saga/share/saga/saga.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_replica.ini
merging /usr/local/saga/share/saga/saga_adaptor_omii_gridsam_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_file.ini
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
============================
  [saga]
    'ini_path' : '/usr/local/saga/share/saga/'
    'location' : '/usr/local/saga'
    [adaptor_suite]
      [aws]
        [preferences]
          'cloud_names' : 'ec2 eucalyptus gumbocloud'
          'ec2_home' : '/usr/local/saga/bin/aws-tools/'
          'ec2_keepalive' : 'true'
          'ec2_keystore' : '/root/.ec2_keys/'
          'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
          'java_home' : '/usr/'
          [ec2]
            'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
            'ec2_instance' : 'ami-4286612b'
            'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-ec2'
            'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
            'ec2_type' : 'ec2'
            'ec2_url' : 'https://ec2.amazonaws.com/'
          [eucalyptus]
            'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
            'ec2_instance' : 'emi-0D05022C'
            'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
            'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
            'ec2_type' : 'eucalyptus'
            'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
          [gumbocloud]
            'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
            'ec2_instance' : 'emi-0B680212'
            'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
            'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
            'ec2_type' : 'gumbocloud'
            'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
          [nimbus]
            'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
            'ec2_instance' : 'hello-cloud'
            'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
            'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
            'ec2_type' : 'nimbus'
            'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
      [ssh]
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
    [adaptors]
      [aws_context]
        'name' : 'aws_context'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [aws_job]
        'name' : 'aws_job'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [default_advert]
        'name' : 'default_advert'
        [preferences]
          'dbtype' : 'postgresql'
          [postgresql]
            'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
          [sqlite3]
            'dbconnect' : '/root/.saga/saga_advert.db'
      [default_file]
        'name' : 'default_file'
        [preferences]
      [default_job]
        'name' : 'default_job'
        [preferences]
      [default_replica]
        'name' : 'default_replica'
        [preferences]
          'dbtype' : 'sqlite3'
          [sqlite3]
            'dbconnect' : 'saga_replica.db'
      [omii_gridsam_job]
        'name' : 'omii_gridsam_job'
        [preferences]
          'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
      [ssh_context]
        'name' : 'ssh_context'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
      [ssh_file]
        'name' : 'ssh_file'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_keepalive' : 'yes'
          'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
          'sshfs_ondemand' : 'yes'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
      [ssh_job]
        'name' : 'ssh_job'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
begin register_context_functions (context_cpi): e6c67fd8-e945-11dd-8187-c743e2ac0e2e:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e6c67fd8-e945-11dd-8187-c743e2ac0e2e:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_context'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_context (aws_context) from file: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_context.so - aws_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
begin register_job_service_functions: e6c719e8-e945-11dd-88df-2b220583bcb2:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e6c719e8-e945-11dd-88df-2b220583bcb2:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_job'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_job (aws_job) from file: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_job.so - aws_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
begin register_namespace_entry_functions (advert_cpi): e6c85c18-e945-11dd-956e-3734a553f615:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_advert_functions: e6c85c18-e945-11dd-956e-3734a553f615:
  function registration: sync_store_object
  function registration: disabled: async_store_object
  function registration: sync_retrieve_object
  function registration: disabled: async_retrieve_object
  function registration: sync_store_string
  function registration: disabled: async_store_string
  function registration: sync_retrieve_string
  function registration: disabled: async_retrieve_string
end register_advert_functions
begin register_attribute_functions: e6c85c18-e945-11dd-956e-3734a553f615:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e6c85c18-e945-11dd-956e-3734a553f615:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (advert_directory_cpi): e6c85c18-e945-11dd-956e-3734a553f615:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (advert_directory_cpi): e6c85c18-e945-11dd-956e-3734a553f615:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_advert_directory_entry_functions: e6c85c18-e945-11dd-956e-3734a553f615:
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_advert_directory_functions
begin register_attribute_functions: e6c85c18-e945-11dd-956e-3734a553f615:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e6c85c18-e945-11dd-956e-3734a553f615:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): e6c85c18-e945-11dd-956e-3734a553f615:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e6c85c18-e945-11dd-956e-3734a553f615:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_advert'
  [preferences]
    'dbtype' : 'postgresql'
    [postgresql]
      'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
    [sqlite3]
      'dbconnect' : '/root/.saga/saga_advert.db'
============================
loaded adaptor: libsaga_adaptor_default_advert (default_advert) from file: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_advert.so - default_advert
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_file.so
begin register_namespace_entry_functions (file_cpi): e6c96a4a-e945-11dd-9388-971ba2ee89dd:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): e6c96a4a-e945-11dd-9388-971ba2ee89dd:
  function registration: sync_get_size
  function registration: disabled: async_get_size
  function registration: sync_read
  function registration: disabled: async_read
  function registration: sync_write
  function registration: disabled: async_write
  function registration: sync_seek
  function registration: disabled: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: e6c96a4a-e945-11dd-9388-971ba2ee89dd:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e6c96a4a-e945-11dd-9388-971ba2ee89dd:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): e6c96a4a-e945-11dd-9388-971ba2ee89dd:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): e6c96a4a-e945-11dd-9388-971ba2ee89dd:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): e6c96a4a-e945-11dd-9388-971ba2ee89dd:
  function registration: skipped: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
end register_directory_functions
begin register_attribute_functions: e6c96a4a-e945-11dd-9388-971ba2ee89dd:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e6c96a4a-e945-11dd-9388-971ba2ee89dd:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'default_file'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_file (default_file) from file: /usr/local/saga/lib/libsaga_adaptor_default_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_file.so - default_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_job.so
begin register_job_service_functions: e6ca25ca-e945-11dd-a67f-4775edc03228:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e6ca25ca-e945-11dd-a67f-4775edc03228:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e6ca25ca-e945-11dd-a67f-4775edc03228:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: e6ca25ca-e945-11dd-a67f-4775edc03228:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_job'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_job (default_job) from file: /usr/local/saga/lib/libsaga_adaptor_default_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_job.so - default_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
begin register_namespace_entry_functions (logical_file_cpi): e6cfea64-e945-11dd-9847-43c1647ee152:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_logical_file_functions: e6cfea64-e945-11dd-9847-43c1647ee152:
  function registration: sync_add_location
  function registration: disabled: async_add_location
  function registration: sync_remove_location
  function registration: disabled: async_remove_location
  function registration: sync_update_location
  function registration: disabled: async_update_location
  function registration: sync_list_locations
  function registration: disabled: async_list_locations
  function registration: sync_replicate
  function registration: disabled: async_replicate
end register_logical_file_functions
begin register_attribute_functions: e6cfea64-e945-11dd-9847-43c1647ee152:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e6cfea64-e945-11dd-9847-43c1647ee152:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (logical_directory_cpi): e6cfea64-e945-11dd-9847-43c1647ee152:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (logical_directory_cpi): e6cfea64-e945-11dd-9847-43c1647ee152:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_logical_directory_functions: e6cfea64-e945-11dd-9847-43c1647ee152:
  function registration: sync_is_file
  function registration: disabled: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_logical_directory_functions
begin register_attribute_functions: e6cfea64-e945-11dd-9847-43c1647ee152:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e6cfea64-e945-11dd-9847-43c1647ee152:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): e6cfea64-e945-11dd-9847-43c1647ee152:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e6cfea64-e945-11dd-9847-43c1647ee152:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_replica'
  [preferences]
    'dbtype' : 'sqlite3'
    [sqlite3]
      'dbconnect' : 'saga_replica.db'
============================
loaded adaptor: libsaga_adaptor_default_replica (default_replica) from file: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_replica.so - default_replica
loaded module: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
begin register_job_service_functions: e6d16218-e945-11dd-a053-2744eae85fb7:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e6d16218-e945-11dd-a053-2744eae85fb7:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e6d16218-e945-11dd-a053-2744eae85fb7:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: skipped: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: skipped: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: e6d16218-e945-11dd-a053-2744eae85fb7:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_context_functions (context_cpi): e6d16218-e945-11dd-a053-2744eae85fb7:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e6d16218-e945-11dd-a053-2744eae85fb7:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'omii_gridsam_job'
  [preferences]
    'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
============================
loaded adaptor: libsaga_adaptor_omii_gridsam_job (omii_gridsam_job) from file: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so - omii_gridsam_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
begin register_context_functions (context_cpi): e6d1e698-e945-11dd-aa3f-6362b1f6909b:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e6d1e698-e945-11dd-aa3f-6362b1f6909b:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_context'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_ssh_context (ssh_context) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so - ssh_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
begin register_namespace_entry_functions (file_cpi): e6d2313e-e945-11dd-a02d-b3c14d5045f5:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): e6d2313e-e945-11dd-a02d-b3c14d5045f5:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_read
  function registration: skipped: async_read
  function registration: sync_write
  function registration: skipped: async_write
  function registration: sync_seek
  function registration: skipped: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: e6d2313e-e945-11dd-a02d-b3c14d5045f5:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e6d2313e-e945-11dd-a02d-b3c14d5045f5:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): e6d2313e-e945-11dd-a02d-b3c14d5045f5:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): e6d2313e-e945-11dd-a02d-b3c14d5045f5:
  function registration: sync_change_dir
  function registration: skipped: async_change_dir
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_exists
  function registration: skipped: async_exists
  function registration: sync_get_num_entries
  function registration: skipped: async_get_num_entries
  function registration: sync_get_entry
  function registration: skipped: async_get_entry
  function registration: sync_make_dir
  function registration: skipped: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): e6d2313e-e945-11dd-a02d-b3c14d5045f5:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: skipped: async_open
  function registration: sync_open_dir
  function registration: skipped: async_open_dir
end register_directory_functions
begin register_attribute_functions: e6d2313e-e945-11dd-a02d-b3c14d5045f5:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e6d2313e-e945-11dd-a02d-b3c14d5045f5:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'ssh_file'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_keepalive' : 'yes'
    'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
    'sshfs_ondemand' : 'yes'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_file (ssh_file) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so - ssh_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
begin register_job_service_functions: e6d2f5ba-e945-11dd-8e34-57474390b062:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_get_job
  function registration: disabled: async_get_job
  function registration: sync_get_self
  function registration: disabled: async_get_self
end register_job_service_functions
begin register_permissions_functions: e6d2f5ba-e945-11dd-8e34-57474390b062:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e6d2f5ba-e945-11dd-8e34-57474390b062:
  function registration: sync_get_job_id
  function registration: disabled: async_get_job_id
  function registration: sync_get_state
  function registration: disabled: async_get_state
  function registration: sync_get_description
  function registration: disabled: async_get_description
  function registration: sync_get_stdin
  function registration: disabled: async_get_stdin
  function registration: sync_get_stdout
  function registration: disabled: async_get_stdout
  function registration: sync_get_stderr
  function registration: disabled: async_get_stderr
  function registration: sync_suspend
  function registration: disabled: async_suspend
  function registration: sync_resume
  function registration: disabled: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: disabled: async_migrate
  function registration: sync_signal
  function registration: disabled: async_signal
  function registration: sync_run
  function registration: disabled: async_run
  function registration: sync_cancel
  function registration: disabled: async_cancel
  function registration: sync_wait
  function registration: disabled: async_wait
end register_job_functions
begin register_attribute_functions: e6d2f5ba-e945-11dd-8e34-57474390b062:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_job'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_job (ssh_job) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so - ssh_job
Trying to create CPI: directory_cpi for operation: __init__
from proxy for CPI: directory_cpi using adaptor instance: default_file (e6c96a4a-e945-11dd-9388-971ba2ee89dd)
Successfully created CPI: directory_cpi using adaptor instance: default_file
Testing adaptor default_file for namespace_dir_cpi -> sync_list : 1
  devTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  initrdTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  sysTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  optTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  tmpTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  bootTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  procTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  binTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  mntTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  srvTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  rootTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  homeTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  libTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  sbinTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  varTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  usrTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  etcTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  lost%2BfoundTesting adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1
-------------- next part --------------
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
ini_path: /usr/local/saga/share/saga/
merging /usr/local/saga/share/saga/saga_adaptor_default_advert.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_context.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_file.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_context.ini
merging /usr/local/saga/share/saga/saga.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_replica.ini
merging /usr/local/saga/share/saga/saga_adaptor_omii_gridsam_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_file.ini
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
============================
  [saga]
    'ini_path' : '/usr/local/saga/share/saga/'
    'location' : '/usr/local/saga'
    [adaptor_suite]
      [aws]
        [preferences]
          'cloud_names' : 'ec2 eucalyptus gumbocloud'
          'ec2_home' : '/usr/local/saga/bin/aws-tools/'
          'ec2_keepalive' : 'true'
          'ec2_keystore' : '/root/.ec2_keys/'
          'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
          'java_home' : '/usr/'
          [ec2]
            'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
            'ec2_instance' : 'ami-4286612b'
            'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-ec2'
            'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
            'ec2_type' : 'ec2'
            'ec2_url' : 'https://ec2.amazonaws.com/'
          [eucalyptus]
            'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
            'ec2_instance' : 'emi-0D05022C'
            'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
            'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
            'ec2_type' : 'eucalyptus'
            'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
          [gumbocloud]
            'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
            'ec2_instance' : 'emi-0B680212'
            'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
            'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
            'ec2_type' : 'gumbocloud'
            'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
          [nimbus]
            'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
            'ec2_instance' : 'hello-cloud'
            'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
            'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
            'ec2_type' : 'nimbus'
            'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
      [ssh]
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
    [adaptors]
      [aws_context]
        'name' : 'aws_context'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [aws_job]
        'name' : 'aws_job'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [default_advert]
        'name' : 'default_advert'
        [preferences]
          'dbtype' : 'postgresql'
          [postgresql]
            'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
          [sqlite3]
            'dbconnect' : '/root/.saga/saga_advert.db'
      [default_file]
        'name' : 'default_file'
        [preferences]
      [default_job]
        'name' : 'default_job'
        [preferences]
      [default_replica]
        'name' : 'default_replica'
        [preferences]
          'dbtype' : 'sqlite3'
          [sqlite3]
            'dbconnect' : 'saga_replica.db'
      [omii_gridsam_job]
        'name' : 'omii_gridsam_job'
        [preferences]
          'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
      [ssh_context]
        'name' : 'ssh_context'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
      [ssh_file]
        'name' : 'ssh_file'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_keepalive' : 'yes'
          'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
          'sshfs_ondemand' : 'yes'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
      [ssh_job]
        'name' : 'ssh_job'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
begin register_context_functions (context_cpi): e70ef416-e945-11dd-b58d-6fb3e38c65bc:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e70ef416-e945-11dd-b58d-6fb3e38c65bc:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_context'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_context (aws_context) from file: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_context.so - aws_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
begin register_job_service_functions: e70f8d5e-e945-11dd-9cd5-376ce2ea810f:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e70f8d5e-e945-11dd-9cd5-376ce2ea810f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_job'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_job (aws_job) from file: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_job.so - aws_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
begin register_namespace_entry_functions (advert_cpi): e710cae8-e945-11dd-b6d0-efbd3efdcc5b:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_advert_functions: e710cae8-e945-11dd-b6d0-efbd3efdcc5b:
  function registration: sync_store_object
  function registration: disabled: async_store_object
  function registration: sync_retrieve_object
  function registration: disabled: async_retrieve_object
  function registration: sync_store_string
  function registration: disabled: async_store_string
  function registration: sync_retrieve_string
  function registration: disabled: async_retrieve_string
end register_advert_functions
begin register_attribute_functions: e710cae8-e945-11dd-b6d0-efbd3efdcc5b:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e710cae8-e945-11dd-b6d0-efbd3efdcc5b:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (advert_directory_cpi): e710cae8-e945-11dd-b6d0-efbd3efdcc5b:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (advert_directory_cpi): e710cae8-e945-11dd-b6d0-efbd3efdcc5b:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_advert_directory_entry_functions: e710cae8-e945-11dd-b6d0-efbd3efdcc5b:
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_advert_directory_functions
begin register_attribute_functions: e710cae8-e945-11dd-b6d0-efbd3efdcc5b:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e710cae8-e945-11dd-b6d0-efbd3efdcc5b:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): e710cae8-e945-11dd-b6d0-efbd3efdcc5b:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e710cae8-e945-11dd-b6d0-efbd3efdcc5b:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_advert'
  [preferences]
    'dbtype' : 'postgresql'
    [postgresql]
      'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
    [sqlite3]
      'dbconnect' : '/root/.saga/saga_advert.db'
============================
loaded adaptor: libsaga_adaptor_default_advert (default_advert) from file: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_advert.so - default_advert
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_file.so
begin register_namespace_entry_functions (file_cpi): e711db18-e945-11dd-9ffb-ab4f9138beb4:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): e711db18-e945-11dd-9ffb-ab4f9138beb4:
  function registration: sync_get_size
  function registration: disabled: async_get_size
  function registration: sync_read
  function registration: disabled: async_read
  function registration: sync_write
  function registration: disabled: async_write
  function registration: sync_seek
  function registration: disabled: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: e711db18-e945-11dd-9ffb-ab4f9138beb4:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e711db18-e945-11dd-9ffb-ab4f9138beb4:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): e711db18-e945-11dd-9ffb-ab4f9138beb4:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): e711db18-e945-11dd-9ffb-ab4f9138beb4:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): e711db18-e945-11dd-9ffb-ab4f9138beb4:
  function registration: skipped: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
end register_directory_functions
begin register_attribute_functions: e711db18-e945-11dd-9ffb-ab4f9138beb4:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e711db18-e945-11dd-9ffb-ab4f9138beb4:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'default_file'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_file (default_file) from file: /usr/local/saga/lib/libsaga_adaptor_default_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_file.so - default_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_job.so
begin register_job_service_functions: e71dc3d8-e945-11dd-a849-c37f226d7099:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e71dc3d8-e945-11dd-a849-c37f226d7099:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e71dc3d8-e945-11dd-a849-c37f226d7099:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: e71dc3d8-e945-11dd-a849-c37f226d7099:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_job'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_job (default_job) from file: /usr/local/saga/lib/libsaga_adaptor_default_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_job.so - default_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
begin register_namespace_entry_functions (logical_file_cpi): e71e7cba-e945-11dd-a0c5-c76f09ddaecb:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_logical_file_functions: e71e7cba-e945-11dd-a0c5-c76f09ddaecb:
  function registration: sync_add_location
  function registration: disabled: async_add_location
  function registration: sync_remove_location
  function registration: disabled: async_remove_location
  function registration: sync_update_location
  function registration: disabled: async_update_location
  function registration: sync_list_locations
  function registration: disabled: async_list_locations
  function registration: sync_replicate
  function registration: disabled: async_replicate
end register_logical_file_functions
begin register_attribute_functions: e71e7cba-e945-11dd-a0c5-c76f09ddaecb:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e71e7cba-e945-11dd-a0c5-c76f09ddaecb:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (logical_directory_cpi): e71e7cba-e945-11dd-a0c5-c76f09ddaecb:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (logical_directory_cpi): e71e7cba-e945-11dd-a0c5-c76f09ddaecb:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_logical_directory_functions: e71e7cba-e945-11dd-a0c5-c76f09ddaecb:
  function registration: sync_is_file
  function registration: disabled: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_logical_directory_functions
begin register_attribute_functions: e71e7cba-e945-11dd-a0c5-c76f09ddaecb:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e71e7cba-e945-11dd-a0c5-c76f09ddaecb:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): e71e7cba-e945-11dd-a0c5-c76f09ddaecb:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e71e7cba-e945-11dd-a0c5-c76f09ddaecb:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_replica'
  [preferences]
    'dbtype' : 'sqlite3'
    [sqlite3]
      'dbconnect' : 'saga_replica.db'
============================
loaded adaptor: libsaga_adaptor_default_replica (default_replica) from file: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_replica.so - default_replica
loaded module: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
begin register_job_service_functions: e71ff112-e945-11dd-af45-97cc43dc3848:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e71ff112-e945-11dd-af45-97cc43dc3848:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e71ff112-e945-11dd-af45-97cc43dc3848:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: skipped: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: skipped: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: e71ff112-e945-11dd-af45-97cc43dc3848:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_context_functions (context_cpi): e71ff112-e945-11dd-af45-97cc43dc3848:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e71ff112-e945-11dd-af45-97cc43dc3848:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'omii_gridsam_job'
  [preferences]
    'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
============================
loaded adaptor: libsaga_adaptor_omii_gridsam_job (omii_gridsam_job) from file: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so - omii_gridsam_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
begin register_context_functions (context_cpi): e72074f2-e945-11dd-96e2-fbd5da4eab99:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e72074f2-e945-11dd-96e2-fbd5da4eab99:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_context'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_ssh_context (ssh_context) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so - ssh_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
begin register_namespace_entry_functions (file_cpi): e720c0c4-e945-11dd-8668-9f468c82ab85:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): e720c0c4-e945-11dd-8668-9f468c82ab85:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_read
  function registration: skipped: async_read
  function registration: sync_write
  function registration: skipped: async_write
  function registration: sync_seek
  function registration: skipped: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: e720c0c4-e945-11dd-8668-9f468c82ab85:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e720c0c4-e945-11dd-8668-9f468c82ab85:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): e720c0c4-e945-11dd-8668-9f468c82ab85:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): e720c0c4-e945-11dd-8668-9f468c82ab85:
  function registration: sync_change_dir
  function registration: skipped: async_change_dir
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_exists
  function registration: skipped: async_exists
  function registration: sync_get_num_entries
  function registration: skipped: async_get_num_entries
  function registration: sync_get_entry
  function registration: skipped: async_get_entry
  function registration: sync_make_dir
  function registration: skipped: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): e720c0c4-e945-11dd-8668-9f468c82ab85:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: skipped: async_open
  function registration: sync_open_dir
  function registration: skipped: async_open_dir
end register_directory_functions
begin register_attribute_functions: e720c0c4-e945-11dd-8668-9f468c82ab85:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e720c0c4-e945-11dd-8668-9f468c82ab85:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'ssh_file'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_keepalive' : 'yes'
    'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
    'sshfs_ondemand' : 'yes'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_file (ssh_file) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so - ssh_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
begin register_job_service_functions: e72182f2-e945-11dd-9e4e-d3f09476ab27:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_get_job
  function registration: disabled: async_get_job
  function registration: sync_get_self
  function registration: disabled: async_get_self
end register_job_service_functions
begin register_permissions_functions: e72182f2-e945-11dd-9e4e-d3f09476ab27:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e72182f2-e945-11dd-9e4e-d3f09476ab27:
  function registration: sync_get_job_id
  function registration: disabled: async_get_job_id
  function registration: sync_get_state
  function registration: disabled: async_get_state
  function registration: sync_get_description
  function registration: disabled: async_get_description
  function registration: sync_get_stdin
  function registration: disabled: async_get_stdin
  function registration: sync_get_stdout
  function registration: disabled: async_get_stdout
  function registration: sync_get_stderr
  function registration: disabled: async_get_stderr
  function registration: sync_suspend
  function registration: disabled: async_suspend
  function registration: sync_resume
  function registration: disabled: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: disabled: async_migrate
  function registration: sync_signal
  function registration: disabled: async_signal
  function registration: sync_run
  function registration: disabled: async_run
  function registration: sync_cancel
  function registration: disabled: async_cancel
  function registration: sync_wait
  function registration: disabled: async_wait
end register_job_functions
begin register_attribute_functions: e72182f2-e945-11dd-9e4e-d3f09476ab27:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_job'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_job (ssh_job) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so - ssh_job
Trying to create CPI: directory_cpi for operation: __init__
from proxy for CPI: directory_cpi using adaptor instance: default_file (e711db18-e945-11dd-9ffb-ab4f9138beb4)
Trying to create CPI: directory_cpi for operation: __init__
from proxy for CPI: directory_cpi using adaptor instance: ssh_file (e720c0c4-e945-11dd-8668-9f468c82ab85)
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
ini_path: /usr/local/saga/share/saga/
merging /usr/local/saga/share/saga/saga_adaptor_default_advert.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_context.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_file.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_context.ini
merging /usr/local/saga/share/saga/saga.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_aws_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_default_replica.ini
merging /usr/local/saga/share/saga/saga_adaptor_omii_gridsam_job.ini
merging /usr/local/saga/share/saga/saga_adaptor_ssh_file.ini
handle_ini_file_env (/usr/local/saga, /share/saga/saga.ini) = /usr/local/saga/share/saga/saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
handle_ini_file_env (/root, /.saga.ini) = /root/.saga.ini
============================
  [saga]
    'ini_path' : '/usr/local/saga/share/saga/'
    'location' : '/usr/local/saga'
    [adaptor_suite]
      [aws]
        [preferences]
          'cloud_names' : 'ec2 eucalyptus gumbocloud'
          'ec2_home' : '/usr/local/saga/bin/aws-tools/'
          'ec2_keepalive' : 'true'
          'ec2_keystore' : '/root/.ec2_keys/'
          'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
          'java_home' : '/usr/'
          [ec2]
            'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
            'ec2_instance' : 'ami-4286612b'
            'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-ec2'
            'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
            'ec2_type' : 'ec2'
            'ec2_url' : 'https://ec2.amazonaws.com/'
          [eucalyptus]
            'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
            'ec2_instance' : 'emi-0D05022C'
            'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
            'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
            'ec2_type' : 'eucalyptus'
            'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
          [gumbocloud]
            'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
            'ec2_instance' : 'emi-0B680212'
            'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
            'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
            'ec2_type' : 'gumbocloud'
            'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
          [nimbus]
            'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
            'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
            'ec2_instance' : 'hello-cloud'
            'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
            'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
            'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
            'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
            'ec2_type' : 'nimbus'
            'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
      [ssh]
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
    [adaptors]
      [aws_context]
        'name' : 'aws_context'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [aws_job]
        'name' : 'aws_job'
        'preferences' : 'saga.adaptor_suite.aws.preferences'
      [default_advert]
        'name' : 'default_advert'
        [preferences]
          'dbtype' : 'postgresql'
          [postgresql]
            'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
          [sqlite3]
            'dbconnect' : '/root/.saga/saga_advert.db'
      [default_file]
        'name' : 'default_file'
        [preferences]
      [default_job]
        'name' : 'default_job'
        [preferences]
      [default_replica]
        'name' : 'default_replica'
        [preferences]
          'dbtype' : 'sqlite3'
          [sqlite3]
            'dbconnect' : 'saga_replica.db'
      [omii_gridsam_job]
        'name' : 'omii_gridsam_job'
        [preferences]
          'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
      [ssh_context]
        'name' : 'ssh_context'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
      [ssh_file]
        'name' : 'ssh_file'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_keepalive' : 'yes'
          'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
          'sshfs_ondemand' : 'yes'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
      [ssh_job]
        'name' : 'ssh_job'
        'preferences' : 'saga.adaptor_suite.ssh.preferences'
        [preferences]
          'scp_bin' : '/usr/bin/scp'
          'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'ssh_bin' : '/usr/bin/ssh'
          'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
          'sshfs_bin' : '/usr/bin/sshfs'
          'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
begin register_context_functions (context_cpi): e74e13bc-e945-11dd-be73-1ffe72edbe2a:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e74e13bc-e945-11dd-be73-1ffe72edbe2a:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_context'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_context (aws_context) from file: /usr/local/saga/lib/libsaga_adaptor_aws_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_context.so - aws_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
begin register_job_service_functions: e74e89d2-e945-11dd-ad8b-a74ec8381cc7:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e74e89d2-e945-11dd-ad8b-a74ec8381cc7:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'cloud_names' : 'ec2 eucalyptus gumbocloud'
  'ec2_home' : '/usr/local/saga/bin/aws-tools/'
  'ec2_keepalive' : 'true'
  'ec2_keystore' : '/root/.ec2_keys/'
  'ec2_scripts' : '/usr/local/saga/bin/aws-tools/bin/'
  'java_home' : '/usr/'
  'name' : 'aws_job'
  'preferences' : 'saga.adaptor_suite.aws.preferences'
  [ec2]
    'ec2_cert' : '/root/.ec2_keys//ec2-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-ec2'
    'ec2_instance' : 'ami-4286612b'
    'ec2_key' : '/root/.ec2_keys//ec2-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-ec2'
    'ec2_keypair_name' : 'ec2-saga-keypair-ec2'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_ec2.pem'
    'ec2_type' : 'ec2'
    'ec2_url' : 'https://ec2.amazonaws.com/'
  [eucalyptus]
    'ec2_cert' : '/root/.ec2_keys//eucalyptus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-eucalyptus'
    'ec2_instance' : 'emi-0D05022C'
    'ec2_key' : '/root/.ec2_keys//eucalyptus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-eucalyptus'
    'ec2_keypair_name' : 'ec2-saga-keypair-eucalyptus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucalyptus.pem'
    'ec2_type' : 'eucalyptus'
    'ec2_url' : 'http://mayhem9.cs.ucsb.edu:8773/services/Eucalyptus'
  [gumbocloud]
    'ec2_cert' : '/root/.ec2_keys//gumbocloud-saga-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-gumbocloud'
    'ec2_instance' : 'emi-0B680212'
    'ec2_key' : '/root/.ec2_keys//gumbocloud-saga-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-gumbocloud'
    'ec2_keypair_name' : 'ec2-saga-keypair-gumbocloud'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_eucacct.pem'
    'ec2_type' : 'gumbocloud'
    'ec2_url' : 'http://vm02.cct.lsu.edu:8773/services/Eucalyptus'
  [nimbus]
    'ec2_cert' : '/root/.ec2_keys//nimbus-cert.pem'
    'ec2_image_prep' : '/usr/local/saga/bin/aws-tools/bin//saga-image-prep-nimbus'
    'ec2_instance' : 'hello-cloud'
    'ec2_key' : '/root/.ec2_keys//nimbus-key.pem'
    'ec2_keypair' : 'ec2-saga-keypair-nimbus||ssh-dss AAAAB3NzaC1kc3MAAACBAIk50fKUNQqx877qjmmVAhhLMcAq9nVrfsJktzdw5WkO8XGSOiVY15GF1k0tT95f49YlR/0mpXkDjsRo1nrwewQhyoJFf1U39p29vURoUXf8IVZr7NT2rVfs2Vf2xV06VBUl16UsbpeneeOP2bI9Xvmo3p3AZmSK8NGfudxdptA7AAAAFQCCzPteeRS2jrDtiY/HaOdgL0Gd1wAAAIAjnCR5ZVUPB5WH8JxRoaiUMzRkFNWa0kSeN4sNXk2RlvXzRkrS0xx98oO1ERMTIs3nb1nFkvXD3mRHMDAQXdOMxoHW4lOvrWa/t1nzOyyw+a2OlUWyXGznUrAll17JvAKv001wuEG9zIwR06n8Grj9fiB1IVdY/i06gSaTCyIGJwAAAIA/8KBo1x0CdUKAcDomI1wHbRCkAXwJYBwFzcoOB8ulvKJ13KIq3jpXDVXi61XMkl6RXuPdxTMAY3bh54GWyzcGuYs7YmCUNbEDDAytPmNKGq+8INQjc77bnRl6OkC6g69Sq/W4q7ieuT0/duDGasnqyhbK45fwDFoyuBpxOebLyA== bzfmerzk at cocos'
    'ec2_keypair_name' : 'ec2-saga-keypair-nimbus'
    'ec2_proxy' : '/root/.ec2_keys/saga.aws_private_nimbus.pem'
    'ec2_type' : 'nimbus'
    'ec2_url' : 'https://tp-vm1.ci.uchicago.edu:8445/wsrf/services/ElasticNimbusService'
============================
loaded adaptor: libsaga_adaptor_aws_job (aws_job) from file: /usr/local/saga/lib/libsaga_adaptor_aws_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_aws_job.so - aws_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
begin register_namespace_entry_functions (advert_cpi): e74efc14-e945-11dd-aaf4-835ba07f93df:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_advert_functions: e74efc14-e945-11dd-aaf4-835ba07f93df:
  function registration: sync_store_object
  function registration: disabled: async_store_object
  function registration: sync_retrieve_object
  function registration: disabled: async_retrieve_object
  function registration: sync_store_string
  function registration: disabled: async_store_string
  function registration: sync_retrieve_string
  function registration: disabled: async_retrieve_string
end register_advert_functions
begin register_attribute_functions: e74efc14-e945-11dd-aaf4-835ba07f93df:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e74efc14-e945-11dd-aaf4-835ba07f93df:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (advert_directory_cpi): e74efc14-e945-11dd-aaf4-835ba07f93df:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (advert_directory_cpi): e74efc14-e945-11dd-aaf4-835ba07f93df:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_advert_directory_entry_functions: e74efc14-e945-11dd-aaf4-835ba07f93df:
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_advert_directory_functions
begin register_attribute_functions: e74efc14-e945-11dd-aaf4-835ba07f93df:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e74efc14-e945-11dd-aaf4-835ba07f93df:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): e74efc14-e945-11dd-aaf4-835ba07f93df:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e74efc14-e945-11dd-aaf4-835ba07f93df:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_advert'
  [preferences]
    'dbtype' : 'postgresql'
    [postgresql]
      'dbconnect' : 'dbname=advertdb;host=fortytwo.cct.lsu.edu;port=5432;user=SAGA;password=SAGA_client'
    [sqlite3]
      'dbconnect' : '/root/.saga/saga_advert.db'
============================
loaded adaptor: libsaga_adaptor_default_advert (default_advert) from file: /usr/local/saga/lib/libsaga_adaptor_default_advert.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_advert.so - default_advert
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_file.so
begin register_namespace_entry_functions (file_cpi): e74fbb04-e945-11dd-9092-4bce4382be9f:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): e74fbb04-e945-11dd-9092-4bce4382be9f:
  function registration: sync_get_size
  function registration: disabled: async_get_size
  function registration: sync_read
  function registration: disabled: async_read
  function registration: sync_write
  function registration: disabled: async_write
  function registration: sync_seek
  function registration: disabled: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: e74fbb04-e945-11dd-9092-4bce4382be9f:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e74fbb04-e945-11dd-9092-4bce4382be9f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): e74fbb04-e945-11dd-9092-4bce4382be9f:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): e74fbb04-e945-11dd-9092-4bce4382be9f:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): e74fbb04-e945-11dd-9092-4bce4382be9f:
  function registration: skipped: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
end register_directory_functions
begin register_attribute_functions: e74fbb04-e945-11dd-9092-4bce4382be9f:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e74fbb04-e945-11dd-9092-4bce4382be9f:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'default_file'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_file (default_file) from file: /usr/local/saga/lib/libsaga_adaptor_default_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_file.so - default_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_job.so
begin register_job_service_functions: e7503f8e-e945-11dd-8528-4b42c2182dc8:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e7503f8e-e945-11dd-8528-4b42c2182dc8:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e7503f8e-e945-11dd-8528-4b42c2182dc8:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: e7503f8e-e945-11dd-8528-4b42c2182dc8:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_job'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_default_job (default_job) from file: /usr/local/saga/lib/libsaga_adaptor_default_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_job.so - default_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
begin register_namespace_entry_functions (logical_file_cpi): e75082d2-e945-11dd-bfa1-97bd4a4be27e:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_logical_file_functions: e75082d2-e945-11dd-bfa1-97bd4a4be27e:
  function registration: sync_add_location
  function registration: disabled: async_add_location
  function registration: sync_remove_location
  function registration: disabled: async_remove_location
  function registration: sync_update_location
  function registration: disabled: async_update_location
  function registration: sync_list_locations
  function registration: disabled: async_list_locations
  function registration: sync_replicate
  function registration: disabled: async_replicate
end register_logical_file_functions
begin register_attribute_functions: e75082d2-e945-11dd-bfa1-97bd4a4be27e:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e75082d2-e945-11dd-bfa1-97bd4a4be27e:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (logical_directory_cpi): e75082d2-e945-11dd-bfa1-97bd4a4be27e:
  function registration: sync_get_url
  function registration: disabled: async_get_url
  function registration: sync_get_cwd
  function registration: disabled: async_get_cwd
  function registration: sync_get_name
  function registration: disabled: async_get_name
  function registration: sync_close
  function registration: disabled: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (logical_directory_cpi): e75082d2-e945-11dd-bfa1-97bd4a4be27e:
  function registration: sync_change_dir
  function registration: disabled: async_change_dir
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_exists
  function registration: disabled: async_exists
  function registration: sync_get_num_entries
  function registration: disabled: async_get_num_entries
  function registration: sync_get_entry
  function registration: disabled: async_get_entry
  function registration: sync_make_dir
  function registration: disabled: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: skipped: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: skipped: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: skipped: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: skipped: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: skipped: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: skipped: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_logical_directory_functions: e75082d2-e945-11dd-bfa1-97bd4a4be27e:
  function registration: sync_is_file
  function registration: disabled: async_is_file
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
end register_logical_directory_functions
begin register_attribute_functions: e75082d2-e945-11dd-bfa1-97bd4a4be27e:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e75082d2-e945-11dd-bfa1-97bd4a4be27e:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_context_functions (context_cpi): e75082d2-e945-11dd-bfa1-97bd4a4be27e:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e75082d2-e945-11dd-bfa1-97bd4a4be27e:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'default_replica'
  [preferences]
    'dbtype' : 'sqlite3'
    [sqlite3]
      'dbconnect' : 'saga_replica.db'
============================
loaded adaptor: libsaga_adaptor_default_replica (default_replica) from file: /usr/local/saga/lib/libsaga_adaptor_default_replica.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_default_replica.so - default_replica
loaded module: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
begin register_job_service_functions: e75130ba-e945-11dd-b540-0bcd82d8453b:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_get_job
  function registration: skipped: async_get_job
  function registration: sync_get_self
  function registration: skipped: async_get_self
end register_job_service_functions
begin register_permissions_functions: e75130ba-e945-11dd-b540-0bcd82d8453b:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e75130ba-e945-11dd-b540-0bcd82d8453b:
  function registration: sync_get_job_id
  function registration: skipped: async_get_job_id
  function registration: sync_get_state
  function registration: skipped: async_get_state
  function registration: skipped: sync_get_description
  function registration: skipped: async_get_description
  function registration: sync_get_stdin
  function registration: skipped: async_get_stdin
  function registration: sync_get_stdout
  function registration: skipped: async_get_stdout
  function registration: sync_get_stderr
  function registration: skipped: async_get_stderr
  function registration: sync_suspend
  function registration: skipped: async_suspend
  function registration: sync_resume
  function registration: skipped: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: skipped: async_migrate
  function registration: skipped: sync_signal
  function registration: skipped: async_signal
  function registration: sync_run
  function registration: skipped: async_run
  function registration: sync_cancel
  function registration: skipped: async_cancel
  function registration: sync_wait
  function registration: skipped: async_wait
end register_job_functions
begin register_attribute_functions: e75130ba-e945-11dd-b540-0bcd82d8453b:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
begin register_context_functions (context_cpi): e75130ba-e945-11dd-b540-0bcd82d8453b:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e75130ba-e945-11dd-b540-0bcd82d8453b:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'omii_gridsam_job'
  [preferences]
    'connect' : 'https://gg101.cct.lsu.edu:18443/gridsam/services/gridsam'
============================
loaded adaptor: libsaga_adaptor_omii_gridsam_job (omii_gridsam_job) from file: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_omii_gridsam_job.so - omii_gridsam_job
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
begin register_context_functions (context_cpi): e75188e4-e945-11dd-a23b-3b9fca0b2566:
  function registration: sync_set_defaults
  function registration: skipped: async_set_defaults
end register_context_functions:
begin register_attribute_functions: e75188e4-e945-11dd-a23b-3b9fca0b2566:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_context'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
============================
loaded adaptor: libsaga_adaptor_ssh_context (ssh_context) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_context.so - ssh_context
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
begin register_namespace_entry_functions (file_cpi): e751b6c0-e945-11dd-87db-eba4be9d1202:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_file_functions (file_cpi): e751b6c0-e945-11dd-87db-eba4be9d1202:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_read
  function registration: skipped: async_read
  function registration: sync_write
  function registration: skipped: async_write
  function registration: sync_seek
  function registration: skipped: async_seek
  function registration: skipped: sync_read_v
  function registration: skipped: async_read_v
  function registration: skipped: sync_write_v
  function registration: skipped: async_write_v
  function registration: skipped: sync_size_p
  function registration: skipped: async_size_p
  function registration: skipped: sync_read_p
  function registration: skipped: async_read_p
  function registration: skipped: sync_write_p
  function registration: skipped: async_write_p
  function registration: skipped: sync_modes_e
  function registration: skipped: async_modes_e
  function registration: skipped: sync_size_e
  function registration: skipped: async_size_e
  function registration: skipped: sync_read_e
  function registration: skipped: async_read_e
  function registration: skipped: sync_write_e
  function registration: skipped: async_write_e
end register_file_functions
begin register_attribute_functions: e751b6c0-e945-11dd-87db-eba4be9d1202:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e751b6c0-e945-11dd-87db-eba4be9d1202:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_namespace_entry_functions (directory_cpi): e751b6c0-e945-11dd-87db-eba4be9d1202:
  function registration: sync_get_url
  function registration: skipped: async_get_url
  function registration: sync_get_cwd
  function registration: skipped: async_get_cwd
  function registration: sync_get_name
  function registration: skipped: async_get_name
  function registration: sync_close
  function registration: skipped: async_close
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
end register_namespace_entry_functions:
begin register_namespace_dir_functions (directory_cpi): e751b6c0-e945-11dd-87db-eba4be9d1202:
  function registration: sync_change_dir
  function registration: skipped: async_change_dir
  function registration: sync_list
  function registration: skipped: async_list
  function registration: sync_exists
  function registration: skipped: async_exists
  function registration: sync_get_num_entries
  function registration: skipped: async_get_num_entries
  function registration: sync_get_entry
  function registration: skipped: async_get_entry
  function registration: sync_make_dir
  function registration: skipped: async_make_dir
  function registration: sync_read_link
  function registration: disabled: async_read_link
  function registration: sync_is_dir
  function registration: disabled: async_is_dir
  function registration: sync_is_entry
  function registration: disabled: async_is_entry
  function registration: sync_is_link
  function registration: disabled: async_is_link
  function registration: sync_copy
  function registration: disabled: async_copy
  function registration: sync_link
  function registration: disabled: async_link
  function registration: sync_move
  function registration: disabled: async_move
  function registration: sync_remove
  function registration: disabled: async_remove
  function registration: sync_copy_wildcard
  function registration: skipped: async_copy_wildcard
  function registration: sync_link_wildcard
  function registration: skipped: async_link_wildcard
  function registration: sync_move_wildcard
  function registration: skipped: async_move_wildcard
  function registration: sync_remove_wildcard
  function registration: skipped: async_remove_wildcard
  function registration: sync_open
  function registration: disabled: async_open
  function registration: sync_open_dir
  function registration: disabled: async_open_dir
  function registration: sync_find
  function registration: disabled: async_find
  function registration: sync_permissions_allow
  function registration: skipped: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: skipped: async_permissions_deny
  function registration: skipped: sync_permissions_allow_wildcard
  function registration: skipped: async_permissions_allow_wildcard
  function registration: skipped: sync_permissions_deny_wildcard
  function registration: skipped: async_permissions_deny_wildcard
end register_namespace_dir_functions
begin register_directory_functions (directory_cpi): e751b6c0-e945-11dd-87db-eba4be9d1202:
  function registration: sync_get_size
  function registration: skipped: async_get_size
  function registration: sync_is_file
  function registration: skipped: async_is_file
  function registration: sync_open
  function registration: skipped: async_open
  function registration: sync_open_dir
  function registration: skipped: async_open_dir
end register_directory_functions
begin register_attribute_functions: e751b6c0-e945-11dd-87db-eba4be9d1202:
  function registration: skipped: sync_get_attribute
  function registration: skipped: async_get_attribute
  function registration: skipped: sync_set_attribute
  function registration: skipped: async_set_attribute
  function registration: skipped: sync_get_vector_attribute
  function registration: skipped: async_get_vector_attribute
  function registration: skipped: sync_set_vector_attribute
  function registration: skipped: async_set_vector_attribute
  function registration: skipped: sync_remove_attribute
  function registration: skipped: async_remove_attribute
  function registration: skipped: sync_list_attributes
  function registration: skipped: async_list_attributes
  function registration: skipped: sync_find_attributes
  function registration: skipped: async_find_attributes
  function registration: skipped: sync_attribute_exists
  function registration: skipped: async_attribute_exists
  function registration: skipped: sync_attribute_is_readonly
  function registration: skipped: async_attribute_is_readonly
  function registration: skipped: sync_attribute_is_writable
  function registration: skipped: async_attribute_is_writable
  function registration: skipped: sync_attribute_is_vector
  function registration: skipped: async_attribute_is_vector
  function registration: skipped: sync_attribute_is_extended
  function registration: skipped: async_attribute_is_extended
end register_attribute_functions
begin register_permissions_functions: e751b6c0-e945-11dd-87db-eba4be9d1202:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
============================
  'name' : 'ssh_file'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_keepalive' : 'yes'
    'sshfs_mnt' : '/root/.saga/adaptors/ssh/ssh_file/mnt/'
    'sshfs_ondemand' : 'yes'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_file (ssh_file) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_file.so - ssh_file
loaded module: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
begin register_job_service_functions: e7523f5a-e945-11dd-a138-4bda57343a7c:
  function registration: sync_create_job
  function registration: disabled: async_create_job
  function registration: sync_run_job
  function registration: disabled: async_run_job
  function registration: sync_run_job_noio
  function registration: disabled: async_run_job_noio
  function registration: sync_list
  function registration: disabled: async_list
  function registration: sync_get_job
  function registration: disabled: async_get_job
  function registration: sync_get_self
  function registration: disabled: async_get_self
end register_job_service_functions
begin register_permissions_functions: e7523f5a-e945-11dd-a138-4bda57343a7c:
  function registration: sync_permissions_allow
  function registration: disabled: async_permissions_allow
  function registration: sync_permissions_deny
  function registration: disabled: async_permissions_deny
  function registration: skipped: sync_permissions_check
  function registration: skipped: async_permissions_check
  function registration: skipped: sync_get_owner
  function registration: skipped: async_get_owner
  function registration: skipped: sync_get_group
  function registration: skipped: async_get_group
end register_permissions_functions
begin register_job_functions: e7523f5a-e945-11dd-a138-4bda57343a7c:
  function registration: sync_get_job_id
  function registration: disabled: async_get_job_id
  function registration: sync_get_state
  function registration: disabled: async_get_state
  function registration: sync_get_description
  function registration: disabled: async_get_description
  function registration: sync_get_stdin
  function registration: disabled: async_get_stdin
  function registration: sync_get_stdout
  function registration: disabled: async_get_stdout
  function registration: sync_get_stderr
  function registration: disabled: async_get_stderr
  function registration: sync_suspend
  function registration: disabled: async_suspend
  function registration: sync_resume
  function registration: disabled: async_resume
  function registration: sync_checkpoint
  function registration: disabled: async_checkpoint
  function registration: sync_migrate
  function registration: disabled: async_migrate
  function registration: sync_signal
  function registration: disabled: async_signal
  function registration: sync_run
  function registration: disabled: async_run
  function registration: sync_cancel
  function registration: disabled: async_cancel
  function registration: sync_wait
  function registration: disabled: async_wait
end register_job_functions
begin register_attribute_functions: e7523f5a-e945-11dd-a138-4bda57343a7c:
  function registration: sync_get_attribute
  function registration: disabled: async_get_attribute
  function registration: sync_set_attribute
  function registration: disabled: async_set_attribute
  function registration: sync_get_vector_attribute
  function registration: disabled: async_get_vector_attribute
  function registration: sync_set_vector_attribute
  function registration: disabled: async_set_vector_attribute
  function registration: sync_remove_attribute
  function registration: disabled: async_remove_attribute
  function registration: sync_list_attributes
  function registration: disabled: async_list_attributes
  function registration: sync_find_attributes
  function registration: disabled: async_find_attributes
  function registration: sync_attribute_exists
  function registration: disabled: async_attribute_exists
  function registration: sync_attribute_is_readonly
  function registration: disabled: async_attribute_is_readonly
  function registration: sync_attribute_is_writable
  function registration: disabled: async_attribute_is_writable
  function registration: sync_attribute_is_vector
  function registration: disabled: async_attribute_is_vector
  function registration: sync_attribute_is_extended
  function registration: disabled: async_attribute_is_extended
end register_attribute_functions
============================
  'name' : 'ssh_job'
  'preferences' : 'saga.adaptor_suite.ssh.preferences'
  'scp_bin' : '/usr/bin/scp'
  'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'ssh_bin' : '/usr/bin/ssh'
  'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
  'sshfs_bin' : '/usr/bin/sshfs'
  'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
  [preferences]
    'scp_bin' : '/usr/bin/scp'
    'scp_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'ssh_bin' : '/usr/bin/ssh'
    'ssh_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0'
    'sshfs_bin' : '/usr/bin/sshfs'
    'sshfs_opt' : '-o StrictHostKeyChecking=no -o NumberOfPasswordPrompts=0 -o workaround=nonodelay'
============================
loaded adaptor: libsaga_adaptor_ssh_job (ssh_job) from file: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so
dynamic loading ok: /usr/local/saga/lib/libsaga_adaptor_ssh_job.so - ssh_job
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_advert (e710cae8-e945-11dd-b6d0-efbd3efdcc5b)
Successfully created CPI: attribute_cpi using adaptor instance: default_advert
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for context_cpi -> sync_set_defaults : 1
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Successfully created CPI: context_cpi using adaptor instance: aws_context
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: default_replica (e71e7cba-e945-11dd-a0c5-c76f09ddaecb)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: omii_gridsam_job (e71ff112-e945-11dd-af45-97cc43dc3848)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: ssh_context (e72074f2-e945-11dd-96e2-fbd5da4eab99)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_advert (e710cae8-e945-11dd-b6d0-efbd3efdcc5b)
Successfully created CPI: attribute_cpi using adaptor instance: default_advert
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for context_cpi -> sync_set_defaults : 1
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Successfully created CPI: context_cpi using adaptor instance: aws_context
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: default_replica (e71e7cba-e945-11dd-a0c5-c76f09ddaecb)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: omii_gridsam_job (e71ff112-e945-11dd-af45-97cc43dc3848)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: ssh_context (e72074f2-e945-11dd-96e2-fbd5da4eab99)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_advert (e710cae8-e945-11dd-b6d0-efbd3efdcc5b)
Successfully created CPI: attribute_cpi using adaptor instance: default_advert
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for context_cpi -> sync_set_defaults : 1
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: default_replica (e71e7cba-e945-11dd-a0c5-c76f09ddaecb)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: omii_gridsam_job (e71ff112-e945-11dd-af45-97cc43dc3848)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: ssh_context (e72074f2-e945-11dd-96e2-fbd5da4eab99)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_advert (e710cae8-e945-11dd-b6d0-efbd3efdcc5b)
Successfully created CPI: attribute_cpi using adaptor instance: default_advert
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for context_cpi -> sync_set_defaults : 1
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_advert (e710cae8-e945-11dd-b6d0-efbd3efdcc5b)
Successfully created CPI: attribute_cpi using adaptor instance: default_advert
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for context_cpi -> sync_set_defaults : 1
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: default_replica (e71e7cba-e945-11dd-a0c5-c76f09ddaecb)
Successfully created CPI: context_cpi using adaptor instance: default_replica
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_advert (e710cae8-e945-11dd-b6d0-efbd3efdcc5b)
Successfully created CPI: attribute_cpi using adaptor instance: default_advert
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for context_cpi -> sync_set_defaults : 1
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: default_replica (e71e7cba-e945-11dd-a0c5-c76f09ddaecb)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: omii_gridsam_job (e71ff112-e945-11dd-af45-97cc43dc3848)
Successfully created CPI: context_cpi using adaptor instance: omii_gridsam_job
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_advert (e710cae8-e945-11dd-b6d0-efbd3efdcc5b)
Successfully created CPI: attribute_cpi using adaptor instance: default_advert
Testing adaptor default_advert for attribute_cpi -> sync_set_attribute : 1
Testing adaptor default_advert for context_cpi -> sync_set_defaults : 1
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: default_replica (e71e7cba-e945-11dd-a0c5-c76f09ddaecb)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: omii_gridsam_job (e71ff112-e945-11dd-af45-97cc43dc3848)
Trying to create CPI: context_cpi for operation: sync_set_defaults
from proxy for CPI: context_cpi using adaptor instance: ssh_context (e72074f2-e945-11dd-96e2-fbd5da4eab99)
Successfully created CPI: context_cpi using adaptor instance: ssh_context
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_advert (e710cae8-e945-11dd-b6d0-efbd3efdcc5b)
Successfully created CPI: attribute_cpi using adaptor instance: default_advert
Testing adaptor default_advert for attribute_cpi -> sync_get_attribute : 1
 == matching ctype? default_advert_db
Testing adaptor default_advert for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor default_advert for attribute_cpi -> sync_get_attribute : 1
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_advert (e710cae8-e945-11dd-b6d0-efbd3efdcc5b)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_replica (e71e7cba-e945-11dd-a0c5-c76f09ddaecb)
Successfully created CPI: attribute_cpi using adaptor instance: default_replica
Testing adaptor default_replica for attribute_cpi -> sync_get_attribute : 1
 == matching ctype? default_replica_db
Testing adaptor default_replica for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor default_replica for attribute_cpi -> sync_get_attribute : 1
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_advert (e710cae8-e945-11dd-b6d0-efbd3efdcc5b)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_replica (e71e7cba-e945-11dd-a0c5-c76f09ddaecb)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: omii_gridsam_job (e71ff112-e945-11dd-af45-97cc43dc3848)
Successfully created CPI: attribute_cpi using adaptor instance: omii_gridsam_job
Testing adaptor omii_gridsam_job for attribute_cpi -> sync_get_attribute : 1
 == matching ctype? omii_gridsam
Testing adaptor omii_gridsam_job for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor omii_gridsam_job for attribute_cpi -> sync_get_attribute : 1
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: aws_context (e70ef416-e945-11dd-b58d-6fb3e38c65bc)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_advert (e710cae8-e945-11dd-b6d0-efbd3efdcc5b)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: default_replica (e71e7cba-e945-11dd-a0c5-c76f09ddaecb)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: omii_gridsam_job (e71ff112-e945-11dd-af45-97cc43dc3848)
Trying to create CPI: attribute_cpi for operation: sync_attribute_exists
from proxy for CPI: context_cpi using adaptor instance: ssh_context (e72074f2-e945-11dd-96e2-fbd5da4eab99)
Successfully created CPI: attribute_cpi using adaptor instance: ssh_context
Testing adaptor ssh_context for attribute_cpi -> sync_get_attribute : 1
 == matching ctype? ssh
Testing adaptor ssh_context for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor ssh_context for attribute_cpi -> sync_get_attribute : 1
 == matching ctype! 
Testing adaptor ssh_context for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor ssh_context for attribute_cpi -> sync_get_attribute : 1
Testing adaptor ssh_context for attribute_cpi -> sync_attribute_exists : 1
Testing adaptor ssh_context for attribute_cpi -> sync_get_attribute : 1
Trying to create CPI: directory_cpi for operation: __init__
from proxy for CPI: directory_cpi using adaptor instance: default_file (e711db18-e945-11dd-9ffb-ab4f9138beb4)
Successfully created CPI: directory_cpi using adaptor instance: default_file
Testing adaptor default_file for namespace_dir_cpi -> sync_exists : 1
Testing adaptor default_file for directory_cpi -> sync_open_dir : 1
Trying to create CPI: directory_cpi for operation: __init__
from proxy for CPI: directory_cpi using adaptor instance: default_file (e711db18-e945-11dd-9ffb-ab4f9138beb4)
Successfully created CPI: directory_cpi using adaptor instance: default_file
Trying to create CPI: directory_cpi for operation: __init__
from proxy for CPI: directory_cpi using adaptor instance: default_file (e711db18-e945-11dd-9ffb-ab4f9138beb4)
Successfully created CPI: directory_cpi using adaptor instance: default_file
Successfully created CPI: directory_cpi using adaptor instance: ssh_file
Testing adaptor ssh_file for namespace_dir_cpi -> sync_list : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_list : 1
  .automountTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  usrTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  sbinTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  varTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  mediaTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  devTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  optTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  .viminfoTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  procTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  srvTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  .autofsckTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  binTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  libTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  rootTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  .bash_historyTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  sysTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  bootTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  mntTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  initrdTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  lost%2BfoundTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  miscTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  tmpTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  lib64Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  homeTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  dataTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  etcTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1

  selinuxTesting adaptor ssh_file for namespace_dir_cpi -> sync_is_dir : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_dir : 1
/Testing adaptor ssh_file for namespace_dir_cpi -> sync_is_link : 1
Testing adaptor default_file for namespace_dir_cpi -> sync_is_link : 1
-------------- next part --------------
#!/bin/sh 


export SAGA_VERBOSE=100
export SAGA_PARENT_JOBID=saga-parent-id10039 
export SAGA_SSH_KEY=`ls /tmp/saga_saga-parent-id*_ssh` 
export SAGA_SSH_PUB=`ls /tmp/saga_saga-parent-id*_ssh.pub` 
export SAGA_SSH_USER=amerzky

env > /tmp/env-0
/root/saga/examples/misc/context ssh                 1> /tmp/o-0-0 2> /tmp/e-0-0
saga-file list_dir /                                 1> /tmp/o-0-1 2> /tmp/e-0-1
saga-file list_dir ssh://amerzky@gg101.cct.lsu.edu/  1> /tmp/o-0-2 2> /tmp/e-0-2

sleep 600

env > /tmp/env-1
/root/saga/examples/misc/context ssh                 1> /tmp/o-1-0 2> /tmp/e-1-0
saga-file list_dir /                                 1> /tmp/o-1-1 2> /tmp/e-1-1
saga-file list_dir ssh://amerzky@gg101.cct.lsu.edu/  1> /tmp/o-1-2 2> /tmp/e-1-2


More information about the saga-devel mailing list