Created
July 7, 2018 23:41
-
-
Save ryantm/ed6db09ad43a19c6abf2d35d15ef489c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/nix/store/3igwiqi311c18w13y5r7zrgpcnzylg9l-singularity-2.5.2 | |
├── bin | |
│ ├── run-singularity | |
│ └── singularity | |
├── etc | |
│ ├── bash_completion.d | |
│ │ └── singularity | |
│ └── singularity | |
│ ├── default-nsswitch.conf | |
│ ├── init | |
│ ├── nvliblist.conf | |
│ └── singularity.conf | |
├── include | |
│ └── singularity | |
│ ├── bind.h | |
│ ├── image.h | |
│ └── runtime.h | |
├── lib | |
│ └── singularity | |
│ ├── libsingularity-image.la | |
│ ├── libsingularity-image.so -> libsingularity-image.so.1.0.0 | |
│ ├── libsingularity-image.so.1 -> libsingularity-image.so.1.0.0 | |
│ ├── libsingularity-image.so.1.0.0 | |
│ ├── libsingularity-runtime.la | |
│ ├── libsingularity-runtime.so -> libsingularity-runtime.so.1.0.0 | |
│ ├── libsingularity-runtime.so.1 -> libsingularity-runtime.so.1.0.0 | |
│ └── libsingularity-runtime.so.1.0.0 | |
├── libexec | |
│ └── singularity | |
│ ├── bin | |
│ │ ├── action | |
│ │ ├── action-suid | |
│ │ ├── builddef | |
│ │ ├── cleanupd | |
│ │ ├── docker-extract | |
│ │ ├── get-section | |
│ │ ├── image-type | |
│ │ ├── mount | |
│ │ ├── mount-suid | |
│ │ ├── prepheader | |
│ │ ├── start | |
│ │ └── start-suid | |
│ ├── bootstrap-scripts | |
│ │ ├── checks.sh | |
│ │ ├── deffile-driver-arch.sh | |
│ │ ├── deffile-driver-busybox.sh | |
│ │ ├── deffile-driver-debootstrap.sh | |
│ │ ├── deffile-driver-docker.sh | |
│ │ ├── deffile-driver-localimage.sh | |
│ │ ├── deffile-driver-self.sh | |
│ │ ├── deffile-driver-shub.sh | |
│ │ ├── deffile-driver-yum.sh | |
│ │ ├── deffile-driver-zypper.sh | |
│ │ ├── deffile-post.sh | |
│ │ ├── deffile-sections.sh | |
│ │ ├── environment.sh | |
│ │ ├── environment.tar | |
│ │ ├── functions | |
│ │ ├── main-deffile.sh | |
│ │ ├── main-dockerhub.sh | |
│ │ ├── main-null.sh | |
│ │ ├── post.sh | |
│ │ └── pre.sh | |
│ ├── cli | |
│ │ ├── action_argparser.sh | |
│ │ ├── apps.exec | |
│ │ ├── apps.info | |
│ │ ├── bootstrap.exec | |
│ │ ├── bootstrap.info | |
│ │ ├── build.exec | |
│ │ ├── build.info | |
│ │ ├── check.exec | |
│ │ ├── check.info | |
│ │ ├── create.exec | |
│ │ ├── create.info | |
│ │ ├── exec.exec | |
│ │ ├── exec.info | |
│ │ ├── help.exec | |
│ │ ├── help.info | |
│ │ ├── image.create.exec | |
│ │ ├── image.create.info | |
│ │ ├── image.exec | |
│ │ ├── image.expand.exec | |
│ │ ├── image.expand.info | |
│ │ ├── image.export.exec | |
│ │ ├── image.export.info | |
│ │ ├── image.import.exec | |
│ │ ├── image.import.info | |
│ │ ├── image.info | |
│ │ ├── inspect.exec | |
│ │ ├── inspect.info | |
│ │ ├── instance.exec | |
│ │ ├── instance.info | |
│ │ ├── instance.list.exec | |
│ │ ├── instance.list.info | |
│ │ ├── instance.start.exec | |
│ │ ├── instance.start.info | |
│ │ ├── instance.stop.exec | |
│ │ ├── instance.stop.info | |
│ │ ├── mount.exec | |
│ │ ├── mount.info | |
│ │ ├── pull.exec | |
│ │ ├── pull.info | |
│ │ ├── run.exec | |
│ │ ├── run.info | |
│ │ ├── selftest.exec | |
│ │ ├── selftest.info | |
│ │ ├── shell.exec | |
│ │ ├── shell.info | |
│ │ ├── test.exec | |
│ │ └── test.info | |
│ ├── functions | |
│ ├── handlers | |
│ │ ├── archive-cpio.sh | |
│ │ ├── archive-tar.sh | |
│ │ ├── image-docker.sh | |
│ │ ├── image-http.sh | |
│ │ ├── image-instance.sh | |
│ │ └── image-shub.sh | |
│ ├── helpers | |
│ │ ├── apps | |
│ │ │ └── list.sh | |
│ │ ├── checks | |
│ │ │ ├── 1-bash-hiddens.py | |
│ │ │ ├── 1-cache-content.py | |
│ │ │ ├── 1-docker.py | |
│ │ │ ├── 1-hello-world.sh | |
│ │ │ └── 3-cve.py | |
│ │ ├── check.sh | |
│ │ ├── help.sh | |
│ │ ├── image.sh | |
│ │ ├── inspect.sh | |
│ │ └── record-env.sh | |
│ ├── image-handler.sh | |
│ └── python | |
│ ├── base.py | |
│ ├── defaults.py | |
│ ├── docker | |
│ │ ├── api.py | |
│ │ ├── __init__.py | |
│ │ ├── main.py | |
│ │ └── tasks.py | |
│ ├── helpers | |
│ │ ├── __init__.py | |
│ │ └── json | |
│ │ ├── add.py | |
│ │ ├── delete.py | |
│ │ ├── dump.py | |
│ │ ├── get.py | |
│ │ ├── __init__.py | |
│ │ ├── inspect.py | |
│ │ └── main.py | |
│ ├── import.py | |
│ ├── __init__.py | |
│ ├── message.py | |
│ ├── pull.py | |
│ ├── shell.py | |
│ ├── shub | |
│ │ ├── api.py | |
│ │ ├── __init__.py | |
│ │ └── main.py | |
│ ├── size.py | |
│ ├── sutils.py | |
│ └── templates.py | |
└── share | |
└── man | |
└── man1 | |
└── singularity.1 | |
25 directories, 142 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment