Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 29, 2020 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/01b18202606e1886eb69e0f1e238e9c3 to your computer and use it in GitHub Desktop.
Save r-ryantm/01b18202606e1886eb69e0f1e238e9c3 to your computer and use it in GitHub Desktop.
/nix/store/5xlyhpdvqn2plzdc4r2j0pafm8232vhl-charliecloud-0.20
├── bin
│   ├── ch-build
│   ├── ch-build2dir
│   ├── ch-builder2squash
│   ├── ch-builder2tar
│   ├── ch-checkns
│   ├── ch-dir2squash
│   ├── ch-fromhost
│   ├── ch-grow
│   ├── ch-mount
│   ├── ch-pull2dir
│   ├── ch-pull2tar
│   ├── ch-run
│   ├── ch-run-oci
│   ├── ch-ssh
│   ├── ch-tar2dir
│   ├── ch-test
│   └── ch-umount
├── lib
│   └── charliecloud
│   ├── base.sh
│   ├── build.py
│   ├── charliecloud.py
│   ├── contributors.bash
│   ├── fakeroot.py
│   ├── misc.py
│   ├── version.py
│   ├── version.sh
│   └── version.txt
├── libexec
│   └── charliecloud
│   └── test
│   ├── build
│   │   ├── 10_sanity.bats
│   │   ├── 50_ch-grow.bats
│   │   ├── 50_dockerfile.bats
│   │   ├── 50_misc.bats
│   │   ├── 50_pull.bats
│   │   └── 99_cleanup.bats
│   ├── Build.centos7xz
│   ├── Build.ch-build2dir
│   ├── Build.ch-pull2dir
│   ├── Build.ch-pull2tar
│   ├── Build.docker_pull
│   ├── Build.missing
│   ├── common.bash
│   ├── Dockerfile.00_tiny
│   ├── Dockerfile.argenv
│   ├── Dockerfile.build2dir
│   ├── docs-sane
│   ├── fixtures
│   │   ├── empty-file
│   │   └── symlink-to-tmp -> /tmp
│   ├── make-auto.d
│   │   ├── build.bats.in
│   │   ├── build_custom.bats.in
│   │   ├── builder_to_archive.bats.in
│   │   └── unpack.bats.in
│   ├── make-perms-test
│   ├── run
│   │   ├── build-rpms.bats
│   │   ├── ch-fromhost.bats
│   │   ├── ch-run_escalated.bats
│   │   ├── ch-run_isolation.bats
│   │   ├── ch-run_join.bats
│   │   ├── ch-run_misc.bats
│   │   ├── ch-run_uidgid.bats
│   │   └── ch-tar2dir.bats
│   ├── run_first.bats
│   └── sotest
│   ├── bin
│   │   └── sotest
│   ├── files_inferrable.txt
│   ├── lib
│   │   └── libsotest.so.1.0
│   ├── libsotest.c
│   ├── libsotest.so
│   ├── libsotest.so.1
│   ├── libsotest.so.1.0
│   ├── sotest
│   └── sotest.c
└── share
└── doc
└── charliecloud
└── examples
├── chtest
│   ├── bind_priv.py
│   ├── Build
│   ├── chroot-escape.c
│   ├── dev_proc_sys.py
│   ├── fs_perms.py
│   ├── Makefile
│   ├── mknods.c
│   ├── printns
│   ├── setgroups.c
│   ├── setuid.c
│   └── signal_out.py
├── copy
│   ├── dirA
│   │   └── fileAa
│   ├── dirB
│   │   ├── fileBa
│   │   └── fileBb
│   ├── dirCa
│   │   ├── dirCb
│   │   │   ├── fileCba
│   │   │   └── fileCbb
│   │   └── symlink-to-dirCb -> dirCb
│   ├── dirD
│   │   ├── fileDa
│   │   └── symlink-to-fileDa -> fileDa
│   ├── dirEa
│   │   ├── dirEb
│   │   │   ├── fileEba
│   │   │   └── fileEbb
│   │   └── symlink-to-dirEb -> dirEb
│   ├── Dockerfile
│   ├── fileA
│   ├── fileB
│   ├── symlink-to-fileA -> fileA
│   ├── symlink-to-fileB-A -> fileB
│   ├── symlink-to-fileB-B -> fileB
│   └── test.bats
├── Dockerfile.centos7
├── Dockerfile.centos8
├── Dockerfile.debian9
├── Dockerfile.mpich
├── Dockerfile.nvidia
├── Dockerfile.openmpi
├── dont-init-ucx-on-intel-cray.patch
├── exhaustive
│   ├── Dockerfile
│   └── test.bats
├── hello
│   ├── Dockerfile
│   ├── hello.sh
│   ├── README
│   └── test.bats
├── lammps
│   ├── Dockerfile
│   ├── melt.patch
│   ├── simple.patch
│   └── test.bats
├── lustre
│   ├── Dockerfile
│   └── test.bats
├── mpibench
│   ├── Dockerfile.mpich
│   ├── Dockerfile.openmpi
│   └── test.bats
├── mpihello
│   ├── Dockerfile.mpich
│   ├── Dockerfile.openmpi
│   ├── hello.c
│   ├── Makefile
│   ├── slurm.sh
│   └── test.bats
├── multistage
│   ├── Dockerfile
│   └── test.bats
├── obspy
│   ├── Dockerfile
│   ├── README
│   └── test.bats
├── paraview
│   ├── cone.2ranks.vtk
│   ├── cone.nranks.vtk
│   ├── cone.png
│   ├── cone.py
│   ├── cone.serial.vtk
│   ├── Dockerfile
│   └── test.bats
├── spack
│   ├── Dockerfile
│   └── test.bats
└── spark
├── Dockerfile
├── slurm.sh
└── test.bats
40 directories, 139 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment