├── .exrc ├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── .gitlab-ci.yml ├── CMakeLists.txt ├── HOWTO ├── LICENSE ├── MIGRATION ├── Makefile.orig ├── README.md ├── admin-guide.md ├── bin ├── ws_extend ├── ws_find ├── ws_list ├── ws_register ├── ws_send_ical └── ws_share ├── contribs ├── completion │ └── ws_tools.sh ├── schemas │ └── hpc-workspace-config-v1_5.json └── ws_prepare ├── debian ├── changelog ├── control ├── copyright ├── postinst ├── rules ├── source │ └── format └── watch ├── getyamlcpp.sh ├── man └── man1 │ ├── ws_allocate.1 │ ├── ws_extend.1 │ ├── ws_find.1 │ ├── ws_list.1 │ ├── ws_register.1 │ ├── ws_release.1 │ ├── ws_restore.1 │ ├── ws_send_ical.1 │ └── ws_share.1 ├── old ├── ws_allocate.cpp ├── ws_release.cpp └── ws_util.cpp ├── prepare.sh ├── pyproject.toml ├── sbin ├── ws_expirer ├── ws_restore └── ws_validate_config ├── src ├── .exrc ├── Makefile.orig ├── prefix.lua ├── ruh.cpp ├── ruh.h ├── ws.cpp ├── ws.h ├── ws_allocate.cpp ├── ws_release.cpp ├── ws_restore.cpp ├── wsdb.cpp └── wsdb.h ├── testing ├── README.md ├── TODO ├── Vagrantfile ├── Vagrantfile_ubu16 ├── Vagrantfile_ubu18 ├── centos7 │ └── Vagrantfile ├── input │ ├── ws.conf.1 │ └── ws.conf.2 ├── prepare_and_run.sh ├── rockylinux8 │ └── Vagrantfile ├── run_tests.sh ├── scripts │ ├── cleanup_tests.sh │ └── prepare_tests.sh └── tests │ ├── 00-basic │ ├── err.ref │ ├── err.res │ ├── lsout1.ref │ ├── lsout1.res │ ├── lsout2.ref │ ├── out.ref │ ├── out.res │ └── test.sh │ ├── 01-reuse │ ├── err.ref │ ├── err.res │ ├── out.ref │ ├── out.res │ └── test.sh │ ├── 02-extend │ ├── err.ref │ ├── out.ref │ ├── out.res │ └── test.sh │ ├── 03-release │ ├── err.ref │ ├── err.res │ ├── ls.ref │ ├── out.ref │ ├── out.res │ └── test.sh │ ├── 04-change-default │ ├── err.ref │ ├── lsout1.ref │ ├── lsout2.ref │ ├── out.ref │ └── test.sh │ ├── 05-qualified-create-after-default-change │ ├── err.ref │ ├── lsout1.ref │ ├── lsout2.ref │ ├── out.ref │ └── test.sh │ ├── 06-parameters │ ├── err1.ref │ ├── err2.ref │ ├── err3.ref │ ├── err4.ref │ ├── err5.ref │ ├── out1.ref │ ├── out2.ref │ ├── out3.ref │ ├── out4.ref │ ├── out5.ref │ └── test.sh │ ├── 07-extend0 │ ├── err.ref │ ├── out.ref │ ├── out.res │ └── test.sh │ └── 08-list │ ├── err.ref │ ├── out.ref │ └── test.sh ├── user-guide.md ├── ws.conf ├── ws.conf_full_sample └── ws_private.conf /.exrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/.exrc -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/HOWTO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/MIGRATION -------------------------------------------------------------------------------- /Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/Makefile.orig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/README.md -------------------------------------------------------------------------------- /admin-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/admin-guide.md -------------------------------------------------------------------------------- /bin/ws_extend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/bin/ws_extend -------------------------------------------------------------------------------- /bin/ws_find: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/bin/ws_find -------------------------------------------------------------------------------- /bin/ws_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/bin/ws_list -------------------------------------------------------------------------------- /bin/ws_register: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/bin/ws_register -------------------------------------------------------------------------------- /bin/ws_send_ical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/bin/ws_send_ical -------------------------------------------------------------------------------- /bin/ws_share: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/bin/ws_share -------------------------------------------------------------------------------- /contribs/completion/ws_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/contribs/completion/ws_tools.sh -------------------------------------------------------------------------------- /contribs/schemas/hpc-workspace-config-v1_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/contribs/schemas/hpc-workspace-config-v1_5.json -------------------------------------------------------------------------------- /contribs/ws_prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/contribs/ws_prepare -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/debian/watch -------------------------------------------------------------------------------- /getyamlcpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/getyamlcpp.sh -------------------------------------------------------------------------------- /man/man1/ws_allocate.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/man/man1/ws_allocate.1 -------------------------------------------------------------------------------- /man/man1/ws_extend.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/man/man1/ws_extend.1 -------------------------------------------------------------------------------- /man/man1/ws_find.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/man/man1/ws_find.1 -------------------------------------------------------------------------------- /man/man1/ws_list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/man/man1/ws_list.1 -------------------------------------------------------------------------------- /man/man1/ws_register.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/man/man1/ws_register.1 -------------------------------------------------------------------------------- /man/man1/ws_release.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/man/man1/ws_release.1 -------------------------------------------------------------------------------- /man/man1/ws_restore.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/man/man1/ws_restore.1 -------------------------------------------------------------------------------- /man/man1/ws_send_ical.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/man/man1/ws_send_ical.1 -------------------------------------------------------------------------------- /man/man1/ws_share.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/man/man1/ws_share.1 -------------------------------------------------------------------------------- /old/ws_allocate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/old/ws_allocate.cpp -------------------------------------------------------------------------------- /old/ws_release.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/old/ws_release.cpp -------------------------------------------------------------------------------- /old/ws_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/old/ws_util.cpp -------------------------------------------------------------------------------- /prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/prepare.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sbin/ws_expirer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/sbin/ws_expirer -------------------------------------------------------------------------------- /sbin/ws_restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/sbin/ws_restore -------------------------------------------------------------------------------- /sbin/ws_validate_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/sbin/ws_validate_config -------------------------------------------------------------------------------- /src/.exrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/.exrc -------------------------------------------------------------------------------- /src/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/Makefile.orig -------------------------------------------------------------------------------- /src/prefix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/prefix.lua -------------------------------------------------------------------------------- /src/ruh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/ruh.cpp -------------------------------------------------------------------------------- /src/ruh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/ruh.h -------------------------------------------------------------------------------- /src/ws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/ws.cpp -------------------------------------------------------------------------------- /src/ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/ws.h -------------------------------------------------------------------------------- /src/ws_allocate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/ws_allocate.cpp -------------------------------------------------------------------------------- /src/ws_release.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/ws_release.cpp -------------------------------------------------------------------------------- /src/ws_restore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/ws_restore.cpp -------------------------------------------------------------------------------- /src/wsdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/wsdb.cpp -------------------------------------------------------------------------------- /src/wsdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/src/wsdb.h -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/TODO -------------------------------------------------------------------------------- /testing/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/Vagrantfile -------------------------------------------------------------------------------- /testing/Vagrantfile_ubu16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/Vagrantfile_ubu16 -------------------------------------------------------------------------------- /testing/Vagrantfile_ubu18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/Vagrantfile_ubu18 -------------------------------------------------------------------------------- /testing/centos7/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/centos7/Vagrantfile -------------------------------------------------------------------------------- /testing/input/ws.conf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/input/ws.conf.1 -------------------------------------------------------------------------------- /testing/input/ws.conf.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/input/ws.conf.2 -------------------------------------------------------------------------------- /testing/prepare_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/prepare_and_run.sh -------------------------------------------------------------------------------- /testing/rockylinux8/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/rockylinux8/Vagrantfile -------------------------------------------------------------------------------- /testing/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/run_tests.sh -------------------------------------------------------------------------------- /testing/scripts/cleanup_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/scripts/cleanup_tests.sh -------------------------------------------------------------------------------- /testing/scripts/prepare_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/scripts/prepare_tests.sh -------------------------------------------------------------------------------- /testing/tests/00-basic/err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/00-basic/err.ref -------------------------------------------------------------------------------- /testing/tests/00-basic/err.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/00-basic/err.res -------------------------------------------------------------------------------- /testing/tests/00-basic/lsout1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/00-basic/lsout1.ref -------------------------------------------------------------------------------- /testing/tests/00-basic/lsout1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/00-basic/lsout1.res -------------------------------------------------------------------------------- /testing/tests/00-basic/lsout2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/00-basic/lsout2.ref -------------------------------------------------------------------------------- /testing/tests/00-basic/out.ref: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/00-basic/out.res: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/00-basic/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/00-basic/test.sh -------------------------------------------------------------------------------- /testing/tests/01-reuse/err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/01-reuse/err.ref -------------------------------------------------------------------------------- /testing/tests/01-reuse/err.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/01-reuse/err.res -------------------------------------------------------------------------------- /testing/tests/01-reuse/out.ref: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/01-reuse/out.res: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/01-reuse/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/01-reuse/test.sh -------------------------------------------------------------------------------- /testing/tests/02-extend/err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/02-extend/err.ref -------------------------------------------------------------------------------- /testing/tests/02-extend/out.ref: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/02-extend/out.res: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/02-extend/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/02-extend/test.sh -------------------------------------------------------------------------------- /testing/tests/03-release/err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/tests/03-release/err.res: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/tests/03-release/ls.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/03-release/ls.ref -------------------------------------------------------------------------------- /testing/tests/03-release/out.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/tests/03-release/out.res: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/tests/03-release/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/03-release/test.sh -------------------------------------------------------------------------------- /testing/tests/04-change-default/err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/04-change-default/err.ref -------------------------------------------------------------------------------- /testing/tests/04-change-default/lsout1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/04-change-default/lsout1.ref -------------------------------------------------------------------------------- /testing/tests/04-change-default/lsout2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/04-change-default/lsout2.ref -------------------------------------------------------------------------------- /testing/tests/04-change-default/out.ref: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/04-change-default/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/04-change-default/test.sh -------------------------------------------------------------------------------- /testing/tests/05-qualified-create-after-default-change/err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/05-qualified-create-after-default-change/err.ref -------------------------------------------------------------------------------- /testing/tests/05-qualified-create-after-default-change/lsout1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/05-qualified-create-after-default-change/lsout1.ref -------------------------------------------------------------------------------- /testing/tests/05-qualified-create-after-default-change/lsout2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/05-qualified-create-after-default-change/lsout2.ref -------------------------------------------------------------------------------- /testing/tests/05-qualified-create-after-default-change/out.ref: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/05-qualified-create-after-default-change/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/05-qualified-create-after-default-change/test.sh -------------------------------------------------------------------------------- /testing/tests/06-parameters/err1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/06-parameters/err1.ref -------------------------------------------------------------------------------- /testing/tests/06-parameters/err2.ref: -------------------------------------------------------------------------------- 1 | Error: You are not allowed to use the specified workspace! 2 | -------------------------------------------------------------------------------- /testing/tests/06-parameters/err3.ref: -------------------------------------------------------------------------------- 1 | Error: please specify an existing filesystem with -F! 2 | -------------------------------------------------------------------------------- /testing/tests/06-parameters/err4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/06-parameters/err4.ref -------------------------------------------------------------------------------- /testing/tests/06-parameters/err5.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/06-parameters/err5.ref -------------------------------------------------------------------------------- /testing/tests/06-parameters/out1.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/tests/06-parameters/out2.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/tests/06-parameters/out3.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/tests/06-parameters/out4.ref: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/06-parameters/out5.ref: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/06-parameters/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/06-parameters/test.sh -------------------------------------------------------------------------------- /testing/tests/07-extend0/err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/07-extend0/err.ref -------------------------------------------------------------------------------- /testing/tests/07-extend0/out.ref: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/07-extend0/out.res: -------------------------------------------------------------------------------- 1 | /tmp/ws/ws1/usera-workspace1 2 | -------------------------------------------------------------------------------- /testing/tests/07-extend0/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/07-extend0/test.sh -------------------------------------------------------------------------------- /testing/tests/08-list/err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/tests/08-list/out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/08-list/out.ref -------------------------------------------------------------------------------- /testing/tests/08-list/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/testing/tests/08-list/test.sh -------------------------------------------------------------------------------- /user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/user-guide.md -------------------------------------------------------------------------------- /ws.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/ws.conf -------------------------------------------------------------------------------- /ws.conf_full_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/ws.conf_full_sample -------------------------------------------------------------------------------- /ws_private.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holgerBerger/hpc-workspace/HEAD/ws_private.conf --------------------------------------------------------------------------------