pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils/mcollective Initial import of mcollective, ve...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8f4848693490
branches:  trunk
changeset: 607448:8f4848693490
user:      imil <imil%pkgsrc.org@localhost>
date:      Sun Aug 12 09:15:57 2012 +0000

description:
Initial import of mcollective, version 2.1.1, into the NetBSD Packages
Collection.

The Marionette Collective aka. mcollective is a framework to build server
orchestration or parallel job execution systems.

Mcollective's primary use is to programmatically execute actions on clusters of
servers. In this regard it operates in the same space as tools like Func,
Fabric or Capistrano.

By not relying on central inventories and tools like SSH, it's not simply a
fancy SSH "for loop". MCollective uses modern tools like Publish Subscribe
Middleware and modern philosophies like real time discovery of network
resources using meta data and not hostnames. Delivering a very scalable and
very fast parallel execution environment.

The focus is on catering to the needs of enterprises and large deploys.
Pluggable Authentication, Authorization and Auditing capabilities sets it apart
from other tools in this space.

diffstat:

 sysutils/mcollective/DESCR                 |   16 +
 sysutils/mcollective/Makefile              |   75 ++++
 sysutils/mcollective/PLIST                 |  450 +++++++++++++++++++++++++++++
 sysutils/mcollective/distinfo              |    5 +
 sysutils/mcollective/files/mcollectived.sh |   19 +
 5 files changed, 565 insertions(+), 0 deletions(-)

diffs (truncated from 585 to 300 lines):

diff -r 7c79f2579c91 -r 8f4848693490 sysutils/mcollective/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/mcollective/DESCR        Sun Aug 12 09:15:57 2012 +0000
@@ -0,0 +1,16 @@
+The Marionette Collective aka. mcollective is a framework to build server
+orchestration or parallel job execution systems.
+
+Mcollective's primary use is to programmatically execute actions on clusters of
+servers. In this regard it operates in the same space as tools like Func,
+Fabric or Capistrano.
+
+By not relying on central inventories and tools like SSH, it's not simply a
+fancy SSH "for loop". MCollective uses modern tools like Publish Subscribe
+Middleware and modern philosophies like real time discovery of network
+resources using meta data and not hostnames. Delivering a very scalable and
+very fast parallel execution environment.
+
+The focus is on catering to the needs of enterprises and large deploys.
+Pluggable Authentication, Authorization and Auditing capabilities sets it apart
+from other tools in this space.
diff -r 7c79f2579c91 -r 8f4848693490 sysutils/mcollective/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/mcollective/Makefile     Sun Aug 12 09:15:57 2012 +0000
@@ -0,0 +1,75 @@
+# $NetBSD: Makefile,v 1.1 2012/08/12 09:15:57 imil Exp $
+#
+
+DISTNAME=      mcollective-2.1.1
+CATEGORIES=    sysutils
+MASTER_SITES=  http://downloads.puppetlabs.com/mcollective/
+EXTRACT_SUFX=  .tgz
+
+MAINTAINER=    imil%NetBSD.org@localhost
+HOMEPAGE=      http://puppetlabs.com/mcollective/
+COMMENT=       Framework to build server orchestration
+LICENSE=       apache-2.0
+
+PKG_DESTDIR_SUPPORT=   user-destdir
+
+DEPENDS+=      ${RUBY_PKGPREFIX}-stomp>=1.2.5:../../devel/ruby-stomp
+
+NO_BUILD=      yes
+USE_TOOLS+=    pax
+
+RCD_SCRIPTS=   mcollectived
+
+REPLACE_RUBY=  bin/mcollectived bin/mco bin/mc-call-agent      \
+               lib/mcollective/vendor/json/*/*                 \
+               lib/mcollective/vendor/json/*
+
+EGDIR=                 ${PREFIX}/share/examples/mcollective
+
+INSTALLATION_DIRS=     bin sbin share/doc/mcollective share/mcollective
+INSTALLATION_DIRS+=    ${RUBY_VENDORLIB}/mcollective
+INSTALLATION_DIRS+=    ${PKG_SYSCONFDIR}/mcollective
+INSTALLATION_DIRS+=    ${PKG_SYSCONFDIR}/mcollective/ssl ${EGDIR}
+
+CONF_FILES+=           ${EGDIR}/server.cfg.dist                \
+                       ${PKG_SYSCONFDIR}/mcollective/server.cfg
+CONF_FILES+=           ${EGDIR}/client.cfg.dist                \
+                       ${PKG_SYSCONFDIR}/mcollective/client.cfg
+
+SUBST_CLASSES+=                confpath
+SUBST_FILES.confpath=  ${WRKSRC}/bin/mcollectived              \
+                       ${WRKSRC}/etc/server.cfg.dist           \
+                       ${WRKSRC}/etc/client.cfg.dist           \
+                       ${WRKSRC}/lib/mcollective/config.rb     \
+                       ${WRKSRC}/lib/mcollective/util.rb       \
+                       ${WRKSRC}/lib/mcollective/rpc.rb
+SUBST_SED.confpath=    -e "s,/etc/mcollective,${PKG_SYSCONFDIR}/mcollective,"
+SUBST_STAGE.confpath=  post-patch
+
+SUBST_CLASSES+=                sharepath
+SUBST_FILES.sharepath= ${WRKSRC}/etc/server.cfg.dist           \
+                       ${WRKSRC}/etc/client.cfg.dist
+SUBST_SED.sharepath=   -e "s,/usr/libexec/mcollective,${PREFIX}/share,"
+SUBST_STAGE.sharepath= post-patch
+
+do-install:
+       ${INSTALL_SCRIPT} ${WRKSRC}/bin/mcollectived ${DESTDIR}${PREFIX}/sbin
+       ${INSTALL_SCRIPT} ${WRKSRC}/bin/mco ${DESTDIR}${PREFIX}/bin
+       ${INSTALL_SCRIPT} ${WRKSRC}/bin/mc-call-agent ${DESTDIR}${PREFIX}/bin
+
+       ${INSTALL_DATA} ${WRKSRC}/etc/server.cfg.dist           \
+               ${DESTDIR}${EGDIR}/server.cfg.dist
+       ${INSTALL_DATA} ${WRKSRC}/etc/client.cfg.dist           \
+               ${DESTDIR}${EGDIR}/client.cfg.dist
+
+       cd ${WRKSRC}/plugins/mcollective &&                     \
+               ${PAX} -wr * ${DESTDIR}${PREFIX}/share/mcollective
+
+       cd ${WRKSRC}/doc &&                                     \
+               ${PAX} -wr * ${DESTDIR}${PREFIX}/share/doc/mcollective
+
+       cd ${WRKSRC}/lib &&                                     \
+               ${PAX} -wr * ${DESTDIR}${PREFIX}/${RUBY_VENDORLIB}
+
+.include "../../lang/ruby/modules.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 7c79f2579c91 -r 8f4848693490 sysutils/mcollective/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/mcollective/PLIST        Sun Aug 12 09:15:57 2012 +0000
@@ -0,0 +1,450 @@
+@comment $NetBSD: PLIST,v 1.1 2012/08/12 09:15:57 imil Exp $
+bin/mc-call-agent
+bin/mco
+${RUBY_VENDORLIB}/mcollective.rb
+${RUBY_VENDORLIB}/mcollective/agent.rb
+${RUBY_VENDORLIB}/mcollective/agents.rb
+${RUBY_VENDORLIB}/mcollective/aggregate.rb
+${RUBY_VENDORLIB}/mcollective/aggregate/base.rb
+${RUBY_VENDORLIB}/mcollective/aggregate/result.rb
+${RUBY_VENDORLIB}/mcollective/aggregate/result/base.rb
+${RUBY_VENDORLIB}/mcollective/aggregate/result/collection_result.rb
+${RUBY_VENDORLIB}/mcollective/aggregate/result/numeric_result.rb
+${RUBY_VENDORLIB}/mcollective/application.rb
+${RUBY_VENDORLIB}/mcollective/applications.rb
+${RUBY_VENDORLIB}/mcollective/client.rb
+${RUBY_VENDORLIB}/mcollective/config.rb
+${RUBY_VENDORLIB}/mcollective/connector.rb
+${RUBY_VENDORLIB}/mcollective/connector/base.rb
+${RUBY_VENDORLIB}/mcollective/data.rb
+${RUBY_VENDORLIB}/mcollective/data/base.rb
+${RUBY_VENDORLIB}/mcollective/data/result.rb
+${RUBY_VENDORLIB}/mcollective/ddl.rb
+${RUBY_VENDORLIB}/mcollective/discovery.rb
+${RUBY_VENDORLIB}/mcollective/facts.rb
+${RUBY_VENDORLIB}/mcollective/facts/base.rb
+${RUBY_VENDORLIB}/mcollective/generators.rb
+${RUBY_VENDORLIB}/mcollective/generators/agent_generator.rb
+${RUBY_VENDORLIB}/mcollective/generators/base.rb
+${RUBY_VENDORLIB}/mcollective/generators/data_generator.rb
+${RUBY_VENDORLIB}/mcollective/generators/templates/action_snippet.erb
+${RUBY_VENDORLIB}/mcollective/generators/templates/data_input_snippet.erb
+${RUBY_VENDORLIB}/mcollective/generators/templates/ddl.erb
+${RUBY_VENDORLIB}/mcollective/generators/templates/plugin.erb
+${RUBY_VENDORLIB}/mcollective/log.rb
+${RUBY_VENDORLIB}/mcollective/logger.rb
+${RUBY_VENDORLIB}/mcollective/logger/base.rb
+${RUBY_VENDORLIB}/mcollective/logger/console_logger.rb
+${RUBY_VENDORLIB}/mcollective/logger/file_logger.rb
+${RUBY_VENDORLIB}/mcollective/logger/syslog_logger.rb
+${RUBY_VENDORLIB}/mcollective/matcher.rb
+${RUBY_VENDORLIB}/mcollective/matcher/parser.rb
+${RUBY_VENDORLIB}/mcollective/matcher/scanner.rb
+${RUBY_VENDORLIB}/mcollective/message.rb
+${RUBY_VENDORLIB}/mcollective/monkey_patches.rb
+${RUBY_VENDORLIB}/mcollective/optionparser.rb
+${RUBY_VENDORLIB}/mcollective/pluginmanager.rb
+${RUBY_VENDORLIB}/mcollective/pluginpackager.rb
+${RUBY_VENDORLIB}/mcollective/pluginpackager/agent_definition.rb
+${RUBY_VENDORLIB}/mcollective/pluginpackager/standard_definition.rb
+${RUBY_VENDORLIB}/mcollective/registration.rb
+${RUBY_VENDORLIB}/mcollective/registration/base.rb
+${RUBY_VENDORLIB}/mcollective/rpc.rb
+${RUBY_VENDORLIB}/mcollective/rpc/actionrunner.rb
+${RUBY_VENDORLIB}/mcollective/rpc/agent.rb
+${RUBY_VENDORLIB}/mcollective/rpc/audit.rb
+${RUBY_VENDORLIB}/mcollective/rpc/client.rb
+${RUBY_VENDORLIB}/mcollective/rpc/helpers.rb
+${RUBY_VENDORLIB}/mcollective/rpc/progress.rb
+${RUBY_VENDORLIB}/mcollective/rpc/reply.rb
+${RUBY_VENDORLIB}/mcollective/rpc/request.rb
+${RUBY_VENDORLIB}/mcollective/rpc/result.rb
+${RUBY_VENDORLIB}/mcollective/rpc/stats.rb
+${RUBY_VENDORLIB}/mcollective/runner.rb
+${RUBY_VENDORLIB}/mcollective/runnerstats.rb
+${RUBY_VENDORLIB}/mcollective/security.rb
+${RUBY_VENDORLIB}/mcollective/security/base.rb
+${RUBY_VENDORLIB}/mcollective/shell.rb
+${RUBY_VENDORLIB}/mcollective/ssl.rb
+${RUBY_VENDORLIB}/mcollective/unix_daemon.rb
+${RUBY_VENDORLIB}/mcollective/util.rb
+${RUBY_VENDORLIB}/mcollective/vendor.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/.gitignore
+${RUBY_VENDORLIB}/mcollective/vendor/json/CHANGES
+${RUBY_VENDORLIB}/mcollective/vendor/json/COPYING
+${RUBY_VENDORLIB}/mcollective/vendor/json/COPYING-json-jruby
+${RUBY_VENDORLIB}/mcollective/vendor/json/GPL
+${RUBY_VENDORLIB}/mcollective/vendor/json/README
+${RUBY_VENDORLIB}/mcollective/vendor/json/README-json-jruby.markdown
+${RUBY_VENDORLIB}/mcollective/vendor/json/Rakefile
+${RUBY_VENDORLIB}/mcollective/vendor/json/TODO
+${RUBY_VENDORLIB}/mcollective/vendor/json/VERSION
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/.keep
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/data/.keep
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/generator2_benchmark.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/generator_benchmark.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/ohai.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/ohai.ruby
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/parser2_benchmark.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/benchmarks/parser_benchmark.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/bin/edit_json.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/bin/prettify_json.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/data/example.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/data/index.html
+${RUBY_VENDORLIB}/mcollective/vendor/json/data/prototype.js
+${RUBY_VENDORLIB}/mcollective/vendor/json/diagrams/.keep
+${RUBY_VENDORLIB}/mcollective/vendor/json/ext/json/ext/generator/extconf.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/ext/json/ext/generator/generator.c
+${RUBY_VENDORLIB}/mcollective/vendor/json/ext/json/ext/generator/generator.h
+${RUBY_VENDORLIB}/mcollective/vendor/json/ext/json/ext/parser/extconf.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/ext/json/ext/parser/parser.c
+${RUBY_VENDORLIB}/mcollective/vendor/json/ext/json/ext/parser/parser.h
+${RUBY_VENDORLIB}/mcollective/vendor/json/ext/json/ext/parser/parser.rl
+${RUBY_VENDORLIB}/mcollective/vendor/json/install.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/lib/bytelist-1.0.6.jar
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/lib/jcodings.jar
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/ByteListTranscoder.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/Generator.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/GeneratorMethods.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/GeneratorService.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/GeneratorState.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/OptionsReader.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/Parser.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/Parser.rl
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/ParserService.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/RuntimeInfo.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/StringDecoder.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/StringEncoder.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/java/src/json/ext/Utils.java
+${RUBY_VENDORLIB}/mcollective/vendor/json/json-java.gemspec
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/Array.xpm
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/FalseClass.xpm
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/Hash.xpm
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/Key.xpm
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/NilClass.xpm
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/Numeric.xpm
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/String.xpm
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/TrueClass.xpm
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/add/core.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/add/rails.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/common.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/editor.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/ext.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/ext/.keep
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/json.xpm
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/pure.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/pure/generator.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/pure/parser.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/lib/json/version.rb
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail1.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail10.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail11.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail12.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail13.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail14.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail18.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail19.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail2.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail20.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail21.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail22.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail23.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail24.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail25.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail27.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail28.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail3.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail4.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail5.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail6.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail7.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail8.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/fail9.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/pass1.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/pass15.json
+${RUBY_VENDORLIB}/mcollective/vendor/json/tests/fixtures/pass16.json



Home | Main Index | Thread Index | Old Index