├── .dockerignore ├── .gitignore ├── .travis.yml ├── Dockerfile ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ ├── github.com │ ├── BurntSushi │ │ └── toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── COMPATIBLE │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ ├── toml-test-decoder │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── toml-test-encoder │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ └── tomlv │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── decode.go │ │ │ ├── decode_meta.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encoding_types.go │ │ │ ├── encoding_types_1.1.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ ├── type_check.go │ │ │ └── type_fields.go │ ├── davecgh │ │ └── go-spew │ │ │ └── LICENSE │ ├── fsouza │ │ └── go-dockerclient │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── DOCKER-LICENSE │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.markdown │ │ │ ├── auth.go │ │ │ ├── cancelable.go │ │ │ ├── cancelable_go14.go │ │ │ ├── change.go │ │ │ ├── client.go │ │ │ ├── container.go │ │ │ ├── env.go │ │ │ ├── event.go │ │ │ ├── exec.go │ │ │ ├── external │ │ │ ├── github.com │ │ │ │ ├── Sirupsen │ │ │ │ │ └── logrus │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── entry.go │ │ │ │ │ │ ├── exported.go │ │ │ │ │ │ ├── formatter.go │ │ │ │ │ │ ├── hooks.go │ │ │ │ │ │ ├── json_formatter.go │ │ │ │ │ │ ├── logger.go │ │ │ │ │ │ ├── logrus.go │ │ │ │ │ │ ├── terminal_bsd.go │ │ │ │ │ │ ├── terminal_linux.go │ │ │ │ │ │ ├── terminal_notwindows.go │ │ │ │ │ │ ├── terminal_solaris.go │ │ │ │ │ │ ├── terminal_windows.go │ │ │ │ │ │ ├── text_formatter.go │ │ │ │ │ │ └── writer.go │ │ │ │ ├── docker │ │ │ │ │ ├── docker │ │ │ │ │ │ ├── opts │ │ │ │ │ │ │ ├── envfile.go │ │ │ │ │ │ │ ├── hosts.go │ │ │ │ │ │ │ ├── hosts_unix.go │ │ │ │ │ │ │ ├── hosts_windows.go │ │ │ │ │ │ │ ├── ip.go │ │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ │ ├── opts_unix.go │ │ │ │ │ │ │ └── opts_windows.go │ │ │ │ │ │ └── pkg │ │ │ │ │ │ │ ├── archive │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── archive.go │ │ │ │ │ │ │ ├── archive_unix.go │ │ │ │ │ │ │ ├── archive_windows.go │ │ │ │ │ │ │ ├── changes.go │ │ │ │ │ │ │ ├── changes_linux.go │ │ │ │ │ │ │ ├── changes_other.go │ │ │ │ │ │ │ ├── changes_unix.go │ │ │ │ │ │ │ ├── changes_windows.go │ │ │ │ │ │ │ ├── copy.go │ │ │ │ │ │ │ ├── copy_unix.go │ │ │ │ │ │ │ ├── copy_windows.go │ │ │ │ │ │ │ ├── diff.go │ │ │ │ │ │ │ ├── example_changes.go │ │ │ │ │ │ │ ├── time_linux.go │ │ │ │ │ │ │ ├── time_unsupported.go │ │ │ │ │ │ │ ├── whiteouts.go │ │ │ │ │ │ │ └── wrap.go │ │ │ │ │ │ │ ├── fileutils │ │ │ │ │ │ │ ├── fileutils.go │ │ │ │ │ │ │ ├── fileutils_unix.go │ │ │ │ │ │ │ └── fileutils_windows.go │ │ │ │ │ │ │ ├── homedir │ │ │ │ │ │ │ └── homedir.go │ │ │ │ │ │ │ ├── idtools │ │ │ │ │ │ │ ├── idtools.go │ │ │ │ │ │ │ ├── idtools_unix.go │ │ │ │ │ │ │ ├── idtools_windows.go │ │ │ │ │ │ │ ├── usergroupadd_linux.go │ │ │ │ │ │ │ └── usergroupadd_unsupported.go │ │ │ │ │ │ │ ├── ioutils │ │ │ │ │ │ │ ├── bytespipe.go │ │ │ │ │ │ │ ├── fmt.go │ │ │ │ │ │ │ ├── multireader.go │ │ │ │ │ │ │ ├── readers.go │ │ │ │ │ │ │ ├── scheduler.go │ │ │ │ │ │ │ ├── scheduler_gccgo.go │ │ │ │ │ │ │ ├── temp_unix.go │ │ │ │ │ │ │ ├── temp_windows.go │ │ │ │ │ │ │ ├── writeflusher.go │ │ │ │ │ │ │ └── writers.go │ │ │ │ │ │ │ ├── longpath │ │ │ │ │ │ │ └── longpath.go │ │ │ │ │ │ │ ├── pools │ │ │ │ │ │ │ └── pools.go │ │ │ │ │ │ │ ├── promise │ │ │ │ │ │ │ └── promise.go │ │ │ │ │ │ │ ├── stdcopy │ │ │ │ │ │ │ └── stdcopy.go │ │ │ │ │ │ │ └── system │ │ │ │ │ │ │ ├── chtimes.go │ │ │ │ │ │ │ ├── chtimes_unix.go │ │ │ │ │ │ │ ├── chtimes_windows.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── events_windows.go │ │ │ │ │ │ │ ├── filesys.go │ │ │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ │ │ ├── lstat.go │ │ │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ │ │ ├── meminfo.go │ │ │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ │ │ ├── mknod.go │ │ │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ │ │ ├── path_unix.go │ │ │ │ │ │ │ ├── path_windows.go │ │ │ │ │ │ │ ├── stat.go │ │ │ │ │ │ │ ├── stat_freebsd.go │ │ │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ │ │ ├── stat_openbsd.go │ │ │ │ │ │ │ ├── stat_solaris.go │ │ │ │ │ │ │ ├── stat_unsupported.go │ │ │ │ │ │ │ ├── stat_windows.go │ │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ │ │ ├── umask.go │ │ │ │ │ │ │ ├── umask_windows.go │ │ │ │ │ │ │ ├── utimes_darwin.go │ │ │ │ │ │ │ ├── utimes_freebsd.go │ │ │ │ │ │ │ ├── utimes_linux.go │ │ │ │ │ │ │ ├── utimes_unsupported.go │ │ │ │ │ │ │ ├── xattrs_linux.go │ │ │ │ │ │ │ └── xattrs_unsupported.go │ │ │ │ │ └── go-units │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE.code │ │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── circle.yml │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ ├── size.go │ │ │ │ │ │ └── ulimit.go │ │ │ │ ├── gorilla │ │ │ │ │ ├── context │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ └── mux │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── mux.go │ │ │ │ │ │ ├── regexp.go │ │ │ │ │ │ └── route.go │ │ │ │ ├── hashicorp │ │ │ │ │ └── go-cleanhttp │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── cleanhttp.go │ │ │ │ └── opencontainers │ │ │ │ │ └── runc │ │ │ │ │ └── libcontainer │ │ │ │ │ └── user │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ ├── lookup.go │ │ │ │ │ ├── lookup_unix.go │ │ │ │ │ ├── lookup_unsupported.go │ │ │ │ │ └── user.go │ │ │ └── golang.org │ │ │ │ └── x │ │ │ │ ├── net │ │ │ │ └── context │ │ │ │ │ └── context.go │ │ │ │ └── sys │ │ │ │ └── unix │ │ │ │ ├── asm.s │ │ │ │ ├── asm_darwin_386.s │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ ├── asm_dragonfly_386.s │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── constants.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── flock.go │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mksyscall.pl │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ ├── mksysnum_linux.pl │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ ├── syscall_dragonfly_386.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── types_darwin.go │ │ │ │ ├── types_dragonfly.go │ │ │ │ ├── types_freebsd.go │ │ │ │ ├── types_linux.go │ │ │ │ ├── types_netbsd.go │ │ │ │ ├── types_openbsd.go │ │ │ │ ├── types_solaris.go │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_386.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_dragonfly_386.go │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsysctl_openbsd.go │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_386.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_386.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ ├── image.go │ │ │ ├── misc.go │ │ │ ├── network.go │ │ │ ├── signal.go │ │ │ ├── tar.go │ │ │ ├── testing │ │ │ ├── data │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── barfile │ │ │ │ ├── ca.pem │ │ │ │ ├── cert.pem │ │ │ │ ├── container.tar │ │ │ │ ├── dockerfile.tar │ │ │ │ ├── foofile │ │ │ │ ├── key.pem │ │ │ │ ├── server.pem │ │ │ │ └── serverkey.pem │ │ │ └── server.go │ │ │ ├── tls.go │ │ │ ├── travis-scripts │ │ │ ├── install.bash │ │ │ └── run-tests.bash │ │ │ └── volume.go │ ├── hashicorp │ │ └── hcl │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── decoder.go │ │ │ ├── hcl.go │ │ │ ├── hcl │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ └── walk.go │ │ │ ├── fmtcmd │ │ │ │ ├── fmtcmd.go │ │ │ │ └── test-fixtures │ │ │ │ │ ├── .hidden.ignore │ │ │ │ │ ├── dir.ignore │ │ │ │ │ ├── file.ignore │ │ │ │ │ └── good.hcl │ │ │ ├── parser │ │ │ │ ├── error.go │ │ │ │ ├── parser.go │ │ │ │ └── test-fixtures │ │ │ │ │ ├── array_comment.hcl │ │ │ │ │ ├── array_comment_2.hcl │ │ │ │ │ ├── assign_colon.hcl │ │ │ │ │ ├── assign_deep.hcl │ │ │ │ │ ├── comment.hcl │ │ │ │ │ ├── comment_lastline.hcl │ │ │ │ │ ├── comment_single.hcl │ │ │ │ │ ├── complex.hcl │ │ │ │ │ ├── complex_key.hcl │ │ │ │ │ ├── empty.hcl │ │ │ │ │ ├── list.hcl │ │ │ │ │ ├── list_comma.hcl │ │ │ │ │ ├── missing_braces.hcl │ │ │ │ │ ├── multiple.hcl │ │ │ │ │ ├── old.hcl │ │ │ │ │ ├── structure.hcl │ │ │ │ │ ├── structure_basic.hcl │ │ │ │ │ ├── structure_empty.hcl │ │ │ │ │ └── types.hcl │ │ │ ├── printer │ │ │ │ ├── nodes.go │ │ │ │ └── printer.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ ├── strconv │ │ │ │ └── quote.go │ │ │ ├── test-fixtures │ │ │ │ ├── array_comment.hcl │ │ │ │ ├── assign_colon.hcl │ │ │ │ ├── assign_deep.hcl │ │ │ │ ├── comment.hcl │ │ │ │ ├── comment_single.hcl │ │ │ │ ├── complex.hcl │ │ │ │ ├── complex_key.hcl │ │ │ │ ├── empty.hcl │ │ │ │ ├── list.hcl │ │ │ │ ├── list_comma.hcl │ │ │ │ ├── multiple.hcl │ │ │ │ ├── old.hcl │ │ │ │ ├── structure.hcl │ │ │ │ ├── structure_basic.hcl │ │ │ │ ├── structure_empty.hcl │ │ │ │ └── types.hcl │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ │ ├── json │ │ │ ├── parser │ │ │ │ ├── flatten.go │ │ │ │ ├── parser.go │ │ │ │ └── test-fixtures │ │ │ │ │ ├── array.json │ │ │ │ │ ├── basic.json │ │ │ │ │ ├── object.json │ │ │ │ │ └── types.json │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ ├── test-fixtures │ │ │ │ ├── array.json │ │ │ │ ├── basic.json │ │ │ │ ├── object.json │ │ │ │ └── types.json │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ └── test-fixtures │ │ │ ├── basic.hcl │ │ │ ├── basic.json │ │ │ ├── basic_int_string.hcl │ │ │ ├── basic_squish.hcl │ │ │ ├── decode_policy.hcl │ │ │ ├── decode_policy.json │ │ │ ├── decode_tf_variable.hcl │ │ │ ├── decode_tf_variable.json │ │ │ ├── empty.hcl │ │ │ ├── escape.hcl │ │ │ ├── flat.hcl │ │ │ ├── float.hcl │ │ │ ├── float.json │ │ │ ├── interpolate_escape.hcl │ │ │ ├── multiline.hcl │ │ │ ├── multiline.json │ │ │ ├── multiline_bad.hcl │ │ │ ├── multiline_no_eof.hcl │ │ │ ├── multiline_no_marker.hcl │ │ │ ├── nested_block_comment.hcl │ │ │ ├── object_list.json │ │ │ ├── scientific.hcl │ │ │ ├── scientific.json │ │ │ ├── slice_expand.hcl │ │ │ ├── structure.hcl │ │ │ ├── structure.json │ │ │ ├── structure2.hcl │ │ │ ├── structure2.json │ │ │ ├── structure_flat.json │ │ │ ├── structure_flatmap.hcl │ │ │ ├── structure_list.hcl │ │ │ ├── structure_list.json │ │ │ ├── structure_list_deep.json │ │ │ ├── structure_multi.hcl │ │ │ ├── structure_multi.json │ │ │ ├── terraform_heroku.hcl │ │ │ ├── terraform_heroku.json │ │ │ ├── tfvars.hcl │ │ │ └── unterminated_block_comment.hcl │ ├── inconshreveable │ │ └── mousetrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── trap_others.go │ │ │ ├── trap_windows.go │ │ │ └── trap_windows_1.4.go │ ├── kr │ │ ├── pretty │ │ │ ├── .gitignore │ │ │ ├── License │ │ │ ├── Readme │ │ │ ├── diff.go │ │ │ ├── formatter.go │ │ │ ├── pretty.go │ │ │ └── zero.go │ │ └── text │ │ │ ├── License │ │ │ ├── Readme │ │ │ ├── colwriter │ │ │ ├── Readme │ │ │ └── column.go │ │ │ ├── doc.go │ │ │ ├── indent.go │ │ │ ├── mc │ │ │ ├── Readme │ │ │ └── mc.go │ │ │ └── wrap.go │ ├── magiconair │ │ └── properties │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── lex.go │ │ │ ├── load.go │ │ │ ├── parser.go │ │ │ ├── properties.go │ │ │ └── rangecheck.go │ ├── mitchellh │ │ └── mapstructure │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ └── mapstructure.go │ └── spf13 │ │ ├── cast │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cast.go │ │ └── caste.go │ │ ├── cobra │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bash_completions.go │ │ ├── bash_completions.md │ │ ├── cobra.go │ │ ├── cobra │ │ │ ├── cmd │ │ │ │ ├── add.go │ │ │ │ ├── helpers.go │ │ │ │ ├── init.go │ │ │ │ ├── licenses.go │ │ │ │ └── root.go │ │ │ └── main.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ └── doc │ │ │ ├── man_docs.go │ │ │ ├── man_docs.md │ │ │ ├── md_docs.go │ │ │ ├── md_docs.md │ │ │ └── util.go │ │ ├── jwalterweatherman │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── thatswhyyoualwaysleaveanote.go │ │ ├── pflag │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float64.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int32.go │ │ ├── int64.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_slice.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── verify │ │ │ ├── all.sh │ │ │ ├── gofmt.sh │ │ │ └── golint.sh │ │ └── viper │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── flags.go │ │ ├── remote │ │ └── remote.go │ │ ├── util.go │ │ └── viper.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── pbkdf2 │ │ │ └── pbkdf2.go │ │ └── sys │ │ ├── LICENSE │ │ └── PATENTS │ └── gopkg.in │ ├── fsnotify.v1 │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── fsnotify.go │ ├── inotify.go │ ├── inotify_poller.go │ ├── kqueue.go │ ├── open_mode_bsd.go │ ├── open_mode_darwin.go │ └── windows.go │ └── yaml.v2 │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── cmd ├── cluster_lab.go ├── docker.go ├── docker_preload_images.go ├── hostname.go ├── hostname_set.go ├── root.go ├── runcommand.go ├── wifi.go └── wifi_set.go ├── main.go ├── package ├── DEBIAN │ ├── control │ └── postinst ├── etc │ └── systemd │ │ └── system │ │ └── device-init.service └── usr │ └── local │ └── bin │ └── .gitignore ├── scripts ├── build.sh └── build_deb.sh └── specs ├── device-init_spec.rb └── testdata ├── busybox.tar ├── busybox.tar.gz ├── cluster_lab_disabled.yaml ├── cluster_lab_enabled.yaml ├── fake_cluster_lab_command ├── no_wifi_interface.yaml ├── one_wifi_interface.yaml ├── preload_docker_images_non_existant.yaml ├── preload_docker_images_tar.yaml ├── preload_docker_images_tar_gz.yaml ├── runcommand.yaml └── two_wifi_interfaces.yaml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Dockerfile -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/COMPATIBLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/COMPATIBLE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/Makefile -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/decode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/decode_meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/decode_meta.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/encoding_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/encoding_types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/encoding_types_1.1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/encoding_types_1.1.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/parse.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/type_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/type_check.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/BurntSushi/toml/type_fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/BurntSushi/toml/type_fields.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/AUTHORS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/DOCKER-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/DOCKER-LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/Makefile -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/README.markdown -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/cancelable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/cancelable.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/cancelable_go14.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/cancelable_go14.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/change.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/container.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/env.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/event.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/exec.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_bsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_notwindows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_solaris.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/envfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/envfile.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/ip.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_other.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/diff.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/example_changes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/example_changes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/time_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/time_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/time_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/time_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/whiteouts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/whiteouts.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/wrap.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/homedir/homedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/homedir/homedir.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/usergroupadd_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/usergroupadd_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/bytespipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/bytespipe.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/fmt.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/multireader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/multireader.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/readers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/readers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/scheduler.go: -------------------------------------------------------------------------------- 1 | // +build !gccgo 2 | 3 | package ioutils 4 | 5 | func callSchedulerIfNecessary() { 6 | } 7 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/scheduler_gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/scheduler_gccgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/temp_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/temp_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/temp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/temp_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/writeflusher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/writeflusher.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/writers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/writers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/longpath/longpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/longpath/longpath.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/pools/pools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/pools/pools.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/promise/promise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/promise/promise.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/stdcopy/stdcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/stdcopy/stdcopy.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/events_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/events_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/filesys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/filesys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/filesys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/filesys_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/lstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/lstat.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/lstat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/lstat_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/mknod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/mknod.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/mknod_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/mknod_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/path_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/path_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/path_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/path_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_openbsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_solaris.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/syscall_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/syscall_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/umask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/umask.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/umask_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/umask_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/xattrs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/xattrs_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/CONTRIBUTING.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/LICENSE.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/LICENSE.code -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/LICENSE.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/LICENSE.docs -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/MAINTAINERS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/circle.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/duration.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/context/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/context/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/context/context.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/context/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/context/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/regexp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/cleanhttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/cleanhttp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/user.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_dragonfly_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_dragonfly_386.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_linux.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_linux.pl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_dragonfly_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_dragonfly_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_dragonfly_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_dragonfly_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_solaris_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysctl_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysctl_openbsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_dragonfly_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_dragonfly_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_solaris_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_dragonfly_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_dragonfly_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_solaris_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/image.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/misc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/network.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/signal.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/tar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/tar.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/.dockerignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/Dockerfile -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/barfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/ca.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/cert.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/container.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/container.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/dockerfile.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/dockerfile.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/foofile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/key.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/server.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/serverkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/serverkey.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/tls.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/travis-scripts/install.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/travis-scripts/install.bash -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/travis-scripts/run-tests.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/travis-scripts/run-tests.bash -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/volume.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | go: 1.5 4 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/ast/ast.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/ast/walk.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/fmtcmd/fmtcmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/fmtcmd/fmtcmd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/.hidden.ignore: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/dir.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/file.ignore: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/good.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/parser.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/array_comment.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/array_comment.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/array_comment_2.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/array_comment_2.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/assign_colon.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/assign_colon.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/assign_deep.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/assign_deep.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment_lastline.hcl: -------------------------------------------------------------------------------- 1 | #foo -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment_single.hcl: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/complex.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/complex.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/complex_key.hcl: -------------------------------------------------------------------------------- 1 | foo.bar = "baz" 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/list.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo"] 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/list_comma.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo",] 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/missing_braces.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/missing_braces.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/multiple.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | key = 7 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/old.hcl: -------------------------------------------------------------------------------- 1 | default = { 2 | "eu-west-1": "ami-b1cf19c6", 3 | } 4 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/structure.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/structure.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/structure_basic.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/structure_basic.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/structure_empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" "bar" {} 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/types.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/parser/test-fixtures/types.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/printer/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/printer/nodes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/printer/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/printer/printer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/scanner/scanner.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/strconv/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/strconv/quote.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/array_comment.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/array_comment.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/assign_colon.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/assign_colon.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/assign_deep.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/assign_deep.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/comment.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/comment.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/comment_single.hcl: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/complex.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/complex.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/complex_key.hcl: -------------------------------------------------------------------------------- 1 | foo.bar = "baz" 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/list.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo"] 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/list_comma.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo",] 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/multiple.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | key = 7 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/old.hcl: -------------------------------------------------------------------------------- 1 | default = { 2 | "eu-west-1": "ami-b1cf19c6", 3 | } 4 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/structure.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/structure.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/structure_basic.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/structure_basic.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/structure_empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" "bar" {} 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/types.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/test-fixtures/types.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/token/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/token/position.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/hcl/token/token.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/parser/flatten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/json/parser/flatten.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/json/parser/parser.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/parser/test-fixtures/array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/json/parser/test-fixtures/array.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/parser/test-fixtures/basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/parser/test-fixtures/object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/json/parser/test-fixtures/object.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/parser/test-fixtures/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/json/parser/test-fixtures/types.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/json/scanner/scanner.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/test-fixtures/array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/json/test-fixtures/array.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/test-fixtures/basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/test-fixtures/object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/json/test-fixtures/object.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/test-fixtures/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/json/test-fixtures/types.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/token/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/json/token/position.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/json/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/json/token/token.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/basic.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/basic.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/basic.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/basic_int_string.hcl: -------------------------------------------------------------------------------- 1 | count = "3" 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/basic_squish.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/basic_squish.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/decode_policy.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/decode_policy.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/decode_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/decode_policy.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/decode_tf_variable.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/decode_tf_variable.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/decode_tf_variable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/decode_tf_variable.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" {} 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/escape.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar\"baz\\n" 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/flat.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | Key = 7 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/float.hcl: -------------------------------------------------------------------------------- 1 | a = 1.02 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/float.json: -------------------------------------------------------------------------------- 1 | { 2 | "a": 1.02 3 | } 4 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/interpolate_escape.hcl: -------------------------------------------------------------------------------- 1 | foo="${file(\"bing/bong.txt\")}" 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/multiline.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/multiline.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/multiline.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar\nbaz" 3 | } 4 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/multiline_bad.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/multiline_bad.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/multiline_no_eof.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/multiline_no_eof.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/multiline_no_marker.hcl: -------------------------------------------------------------------------------- 1 | foo = << 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/nested_block_comment.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/nested_block_comment.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/object_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/object_list.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/scientific.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/scientific.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/scientific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/scientific.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/slice_expand.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/slice_expand.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure2.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure2.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure2.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_flat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_flat.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_flatmap.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_flatmap.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_list.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_list.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_list.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_list_deep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_list_deep.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_multi.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_multi.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/structure_multi.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/terraform_heroku.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/terraform_heroku.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/terraform_heroku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/terraform_heroku.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/tfvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/tfvars.hcl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/hcl/test-fixtures/unterminated_block_comment.hcl: -------------------------------------------------------------------------------- 1 | /* 2 | Foo 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/inconshreveable/mousetrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/inconshreveable/mousetrap/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/inconshreveable/mousetrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/inconshreveable/mousetrap/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_others.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_windows_1.4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_windows_1.4.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/pretty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/pretty/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/pretty/License -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/pretty/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/pretty/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/pretty/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/pretty/diff.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/pretty/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/pretty/formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/pretty/pretty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/pretty/pretty.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/pretty/zero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/pretty/zero.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/text/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/text/License -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/text/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/text/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/text/colwriter/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/text/colwriter/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/text/colwriter/column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/text/colwriter/column.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/text/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/text/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/text/indent.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/text/mc/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/text/mc/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/text/mc/mc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/text/mc/mc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/kr/text/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/kr/text/wrap.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/CHANGELOG.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/decode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/lex.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/load.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/parser.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/properties.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/magiconair/properties/rangecheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/magiconair/properties/rangecheck.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/decode_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/decode_hooks.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/bash_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/bash_completions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/bash_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/bash_completions.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/add.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/helpers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/init.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/licenses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/licenses.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/root.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/cobra/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/cobra/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) = nil 6 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/doc/man_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/doc/man_docs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/doc/man_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/doc/man_docs.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/doc/md_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/doc/md_docs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/doc/md_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/doc/md_docs.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/cobra/doc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/cobra/doc/util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/jwalterweatherman/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/jwalterweatherman/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/jwalterweatherman/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/jwalterweatherman/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/jwalterweatherman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/jwalterweatherman/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/jwalterweatherman/thatswhyyoualwaysleaveanote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/jwalterweatherman/thatswhyyoualwaysleaveanote.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/verify/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/verify/all.sh -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/verify/gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/verify/gofmt.sh -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/pflag/verify/golint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/pflag/verify/golint.sh -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/viper/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/viper/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/viper/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/viper/remote/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/viper/remote/remote.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/AUTHORS -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/CHANGELOG.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/CONTRIBUTING.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/fsnotify.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/inotify.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/inotify_poller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/inotify_poller.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/kqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/kqueue.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/open_mode_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/open_mode_bsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/open_mode_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/open_mode_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/fsnotify.v1/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/fsnotify.v1/windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v0.1.9 2 | -------------------------------------------------------------------------------- /cmd/cluster_lab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/cmd/cluster_lab.go -------------------------------------------------------------------------------- /cmd/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/cmd/docker.go -------------------------------------------------------------------------------- /cmd/docker_preload_images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/cmd/docker_preload_images.go -------------------------------------------------------------------------------- /cmd/hostname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/cmd/hostname.go -------------------------------------------------------------------------------- /cmd/hostname_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/cmd/hostname_set.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/runcommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/cmd/runcommand.go -------------------------------------------------------------------------------- /cmd/wifi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/cmd/wifi.go -------------------------------------------------------------------------------- /cmd/wifi_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/cmd/wifi_set.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/main.go -------------------------------------------------------------------------------- /package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/package/DEBIAN/control -------------------------------------------------------------------------------- /package/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/package/DEBIAN/postinst -------------------------------------------------------------------------------- /package/etc/systemd/system/device-init.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/package/etc/systemd/system/device-init.service -------------------------------------------------------------------------------- /package/usr/local/bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/package/usr/local/bin/.gitignore -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/build_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/scripts/build_deb.sh -------------------------------------------------------------------------------- /specs/device-init_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/device-init_spec.rb -------------------------------------------------------------------------------- /specs/testdata/busybox.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/testdata/busybox.tar -------------------------------------------------------------------------------- /specs/testdata/busybox.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/testdata/busybox.tar.gz -------------------------------------------------------------------------------- /specs/testdata/cluster_lab_disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/testdata/cluster_lab_disabled.yaml -------------------------------------------------------------------------------- /specs/testdata/cluster_lab_enabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/testdata/cluster_lab_enabled.yaml -------------------------------------------------------------------------------- /specs/testdata/fake_cluster_lab_command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/testdata/fake_cluster_lab_command -------------------------------------------------------------------------------- /specs/testdata/no_wifi_interface.yaml: -------------------------------------------------------------------------------- 1 | hostname: blue-diamond 2 | -------------------------------------------------------------------------------- /specs/testdata/one_wifi_interface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/testdata/one_wifi_interface.yaml -------------------------------------------------------------------------------- /specs/testdata/preload_docker_images_non_existant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/testdata/preload_docker_images_non_existant.yaml -------------------------------------------------------------------------------- /specs/testdata/preload_docker_images_tar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/testdata/preload_docker_images_tar.yaml -------------------------------------------------------------------------------- /specs/testdata/preload_docker_images_tar_gz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/testdata/preload_docker_images_tar_gz.yaml -------------------------------------------------------------------------------- /specs/testdata/runcommand.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/testdata/runcommand.yaml -------------------------------------------------------------------------------- /specs/testdata/two_wifi_interfaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/device-init/HEAD/specs/testdata/two_wifi_interfaces.yaml --------------------------------------------------------------------------------