├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ci.yml │ ├── main.yml │ └── shellcheck.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── bin └── pot ├── etc ├── pot │ ├── flavours │ │ ├── dns │ │ ├── dns.sh │ │ ├── fbsd-update.sh │ │ └── slim.sh │ ├── pot.conf.sample │ └── pot.default.conf └── rc.d │ ├── pot │ └── pot_early ├── release.sh ├── share ├── doc │ └── pot │ │ ├── .gitignore │ │ ├── Description.md │ │ ├── Images.md │ │ ├── Installation.md │ │ ├── Makefile │ │ ├── QuickStart.md │ │ ├── Synopsis.md │ │ ├── conf.py │ │ ├── index.md │ │ └── migration.md ├── pot │ ├── add-dep.sh │ ├── clone-fscomp.sh │ ├── clone.sh │ ├── common-flv.sh │ ├── common.sh │ ├── config.sh │ ├── copy-in.sh │ ├── copy-out.sh │ ├── create-base.sh │ ├── create-fscomp.sh │ ├── create-private-bridge.sh │ ├── create.sh │ ├── de-init.sh │ ├── destroy.sh │ ├── exec.sh │ ├── export-ports.sh │ ├── export.sh │ ├── get-attribute.sh │ ├── get-rss.sh │ ├── help.sh │ ├── import.sh │ ├── info.sh │ ├── init.sh │ ├── last-run-stats.sh │ ├── list.sh │ ├── mount-in.sh │ ├── mount-out.sh │ ├── network.sh │ ├── prepare.sh │ ├── prune.sh │ ├── ps.sh │ ├── purge-snapshots.sh │ ├── rename.sh │ ├── revert.sh │ ├── set-attribute.sh │ ├── set-cmd.sh │ ├── set-env.sh │ ├── set-hook.sh │ ├── set-hosts.sh │ ├── set-rss.sh │ ├── set-status.sh │ ├── show.sh │ ├── signal.sh │ ├── snapshot.sh │ ├── start.sh │ ├── stop.sh │ ├── term.sh │ ├── top.sh │ ├── update-config.sh │ ├── version.sh │ └── vnet-start.sh └── zsh │ └── site-functions │ └── _pot └── tests ├── CI ├── resolv.conf-dual ├── resolv.conf-ipv4 ├── resolv.conf-ipv6 └── run.sh ├── add-dep1.sh ├── clone-fscomp1.sh ├── clone1.sh ├── clone2.sh ├── common-flv1.sh ├── common-stub.sh ├── common-zfs1.sh ├── common-zfs2.sh ├── common1.sh ├── common2.sh ├── common4.sh ├── common5.sh ├── common6.sh ├── common7.sh ├── common8.sh ├── conf-stub.sh ├── config1.sh ├── copy-in1.sh ├── copy-out1.sh ├── create-base1.sh ├── create-fscomp1.sh ├── create-private-bridge1.sh ├── create1.sh ├── create2.sh ├── create3.sh ├── destroy1.sh ├── export-ports1.sh ├── export1.sh ├── get-rss1.sh ├── import1.sh ├── info1.sh ├── info2.sh ├── list1.sh ├── list2.sh ├── monitor.sh ├── mount-in1.sh ├── mount-out1.sh ├── network1.sh ├── pipefail-stub.sh ├── ps1.sh ├── rename1.sh ├── rename2.sh ├── rename3.sh ├── rename4.sh ├── revert1.sh ├── set-attr1.sh ├── set-attr2.sh ├── set-cmd1.sh ├── set-env1.sh ├── set-env2.sh ├── set-hook1.sh ├── set-hosts1.sh ├── set-rss1.sh ├── show1.sh ├── shunit ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── doc │ ├── CHANGES-2.1.md │ ├── RELEASE_NOTES-2.1.0.txt │ ├── RELEASE_NOTES-2.1.1.txt │ ├── RELEASE_NOTES-2.1.2.txt │ ├── RELEASE_NOTES-2.1.3.txt │ ├── RELEASE_NOTES-2.1.4.txt │ ├── RELEASE_NOTES-2.1.5.txt │ ├── RELEASE_NOTES-2.1.6.txt │ ├── RELEASE_NOTES-2.1.7.md │ ├── TODO.txt │ ├── contributors.md │ └── design_doc.txt ├── examples │ ├── equality_test.sh │ ├── lineno_test.sh │ ├── math.inc │ ├── math_test.sh │ ├── mkdir_test.sh │ ├── mock_file.sh │ ├── mock_file_test.sh │ ├── party_test.sh │ └── suite_test.sh ├── lib │ ├── shflags │ └── versions ├── shunit2 ├── shunit2_args_test.sh ├── shunit2_asserts_test.sh ├── shunit2_failures_test.sh ├── shunit2_macros_test.sh ├── shunit2_misc_test.sh ├── shunit2_standalone_test.sh ├── shunit2_test_helpers └── test_runner ├── signal1.sh ├── signal2.sh ├── snapshot1.sh ├── start2.sh ├── start3.sh ├── start4.sh ├── stop1.sh ├── term1.sh ├── test-suite.sh ├── top1.sh └── version1.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/shellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/.github/workflows/shellcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/README.md -------------------------------------------------------------------------------- /bin/pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/bin/pot -------------------------------------------------------------------------------- /etc/pot/flavours/dns: -------------------------------------------------------------------------------- 1 | set-attribute -A start-at-boot -V YES 2 | -------------------------------------------------------------------------------- /etc/pot/flavours/dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/etc/pot/flavours/dns.sh -------------------------------------------------------------------------------- /etc/pot/flavours/fbsd-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/etc/pot/flavours/fbsd-update.sh -------------------------------------------------------------------------------- /etc/pot/flavours/slim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/etc/pot/flavours/slim.sh -------------------------------------------------------------------------------- /etc/pot/pot.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/etc/pot/pot.conf.sample -------------------------------------------------------------------------------- /etc/pot/pot.default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/etc/pot/pot.default.conf -------------------------------------------------------------------------------- /etc/rc.d/pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/etc/rc.d/pot -------------------------------------------------------------------------------- /etc/rc.d/pot_early: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/etc/rc.d/pot_early -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/release.sh -------------------------------------------------------------------------------- /share/doc/pot/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /share/doc/pot/Description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/doc/pot/Description.md -------------------------------------------------------------------------------- /share/doc/pot/Images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/doc/pot/Images.md -------------------------------------------------------------------------------- /share/doc/pot/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/doc/pot/Installation.md -------------------------------------------------------------------------------- /share/doc/pot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/doc/pot/Makefile -------------------------------------------------------------------------------- /share/doc/pot/QuickStart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/doc/pot/QuickStart.md -------------------------------------------------------------------------------- /share/doc/pot/Synopsis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/doc/pot/Synopsis.md -------------------------------------------------------------------------------- /share/doc/pot/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/doc/pot/conf.py -------------------------------------------------------------------------------- /share/doc/pot/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/doc/pot/index.md -------------------------------------------------------------------------------- /share/doc/pot/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/doc/pot/migration.md -------------------------------------------------------------------------------- /share/pot/add-dep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/add-dep.sh -------------------------------------------------------------------------------- /share/pot/clone-fscomp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/clone-fscomp.sh -------------------------------------------------------------------------------- /share/pot/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/clone.sh -------------------------------------------------------------------------------- /share/pot/common-flv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/common-flv.sh -------------------------------------------------------------------------------- /share/pot/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/common.sh -------------------------------------------------------------------------------- /share/pot/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/config.sh -------------------------------------------------------------------------------- /share/pot/copy-in.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/copy-in.sh -------------------------------------------------------------------------------- /share/pot/copy-out.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/copy-out.sh -------------------------------------------------------------------------------- /share/pot/create-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/create-base.sh -------------------------------------------------------------------------------- /share/pot/create-fscomp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/create-fscomp.sh -------------------------------------------------------------------------------- /share/pot/create-private-bridge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/create-private-bridge.sh -------------------------------------------------------------------------------- /share/pot/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/create.sh -------------------------------------------------------------------------------- /share/pot/de-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/de-init.sh -------------------------------------------------------------------------------- /share/pot/destroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/destroy.sh -------------------------------------------------------------------------------- /share/pot/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/exec.sh -------------------------------------------------------------------------------- /share/pot/export-ports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/export-ports.sh -------------------------------------------------------------------------------- /share/pot/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/export.sh -------------------------------------------------------------------------------- /share/pot/get-attribute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/get-attribute.sh -------------------------------------------------------------------------------- /share/pot/get-rss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/get-rss.sh -------------------------------------------------------------------------------- /share/pot/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/help.sh -------------------------------------------------------------------------------- /share/pot/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/import.sh -------------------------------------------------------------------------------- /share/pot/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/info.sh -------------------------------------------------------------------------------- /share/pot/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/init.sh -------------------------------------------------------------------------------- /share/pot/last-run-stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/last-run-stats.sh -------------------------------------------------------------------------------- /share/pot/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/list.sh -------------------------------------------------------------------------------- /share/pot/mount-in.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/mount-in.sh -------------------------------------------------------------------------------- /share/pot/mount-out.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/mount-out.sh -------------------------------------------------------------------------------- /share/pot/network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/network.sh -------------------------------------------------------------------------------- /share/pot/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/prepare.sh -------------------------------------------------------------------------------- /share/pot/prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/prune.sh -------------------------------------------------------------------------------- /share/pot/ps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/ps.sh -------------------------------------------------------------------------------- /share/pot/purge-snapshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/purge-snapshots.sh -------------------------------------------------------------------------------- /share/pot/rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/rename.sh -------------------------------------------------------------------------------- /share/pot/revert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/revert.sh -------------------------------------------------------------------------------- /share/pot/set-attribute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/set-attribute.sh -------------------------------------------------------------------------------- /share/pot/set-cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/set-cmd.sh -------------------------------------------------------------------------------- /share/pot/set-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/set-env.sh -------------------------------------------------------------------------------- /share/pot/set-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/set-hook.sh -------------------------------------------------------------------------------- /share/pot/set-hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/set-hosts.sh -------------------------------------------------------------------------------- /share/pot/set-rss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/set-rss.sh -------------------------------------------------------------------------------- /share/pot/set-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/set-status.sh -------------------------------------------------------------------------------- /share/pot/show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/show.sh -------------------------------------------------------------------------------- /share/pot/signal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/signal.sh -------------------------------------------------------------------------------- /share/pot/snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/snapshot.sh -------------------------------------------------------------------------------- /share/pot/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/start.sh -------------------------------------------------------------------------------- /share/pot/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/stop.sh -------------------------------------------------------------------------------- /share/pot/term.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/term.sh -------------------------------------------------------------------------------- /share/pot/top.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/top.sh -------------------------------------------------------------------------------- /share/pot/update-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/update-config.sh -------------------------------------------------------------------------------- /share/pot/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/version.sh -------------------------------------------------------------------------------- /share/pot/vnet-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/pot/vnet-start.sh -------------------------------------------------------------------------------- /share/zsh/site-functions/_pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/share/zsh/site-functions/_pot -------------------------------------------------------------------------------- /tests/CI/resolv.conf-dual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/CI/resolv.conf-dual -------------------------------------------------------------------------------- /tests/CI/resolv.conf-ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/CI/resolv.conf-ipv4 -------------------------------------------------------------------------------- /tests/CI/resolv.conf-ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/CI/resolv.conf-ipv6 -------------------------------------------------------------------------------- /tests/CI/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/CI/run.sh -------------------------------------------------------------------------------- /tests/add-dep1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/add-dep1.sh -------------------------------------------------------------------------------- /tests/clone-fscomp1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/clone-fscomp1.sh -------------------------------------------------------------------------------- /tests/clone1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/clone1.sh -------------------------------------------------------------------------------- /tests/clone2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/clone2.sh -------------------------------------------------------------------------------- /tests/common-flv1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/common-flv1.sh -------------------------------------------------------------------------------- /tests/common-stub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/common-stub.sh -------------------------------------------------------------------------------- /tests/common-zfs1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/common-zfs1.sh -------------------------------------------------------------------------------- /tests/common-zfs2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/common-zfs2.sh -------------------------------------------------------------------------------- /tests/common1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/common1.sh -------------------------------------------------------------------------------- /tests/common2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/common2.sh -------------------------------------------------------------------------------- /tests/common4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/common4.sh -------------------------------------------------------------------------------- /tests/common5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/common5.sh -------------------------------------------------------------------------------- /tests/common6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/common6.sh -------------------------------------------------------------------------------- /tests/common7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/common7.sh -------------------------------------------------------------------------------- /tests/common8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/common8.sh -------------------------------------------------------------------------------- /tests/conf-stub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/conf-stub.sh -------------------------------------------------------------------------------- /tests/config1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/config1.sh -------------------------------------------------------------------------------- /tests/copy-in1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/copy-in1.sh -------------------------------------------------------------------------------- /tests/copy-out1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/copy-out1.sh -------------------------------------------------------------------------------- /tests/create-base1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/create-base1.sh -------------------------------------------------------------------------------- /tests/create-fscomp1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/create-fscomp1.sh -------------------------------------------------------------------------------- /tests/create-private-bridge1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/create-private-bridge1.sh -------------------------------------------------------------------------------- /tests/create1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/create1.sh -------------------------------------------------------------------------------- /tests/create2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/create2.sh -------------------------------------------------------------------------------- /tests/create3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/create3.sh -------------------------------------------------------------------------------- /tests/destroy1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/destroy1.sh -------------------------------------------------------------------------------- /tests/export-ports1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/export-ports1.sh -------------------------------------------------------------------------------- /tests/export1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/export1.sh -------------------------------------------------------------------------------- /tests/get-rss1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/get-rss1.sh -------------------------------------------------------------------------------- /tests/import1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/import1.sh -------------------------------------------------------------------------------- /tests/info1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/info1.sh -------------------------------------------------------------------------------- /tests/info2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/info2.sh -------------------------------------------------------------------------------- /tests/list1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/list1.sh -------------------------------------------------------------------------------- /tests/list2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/list2.sh -------------------------------------------------------------------------------- /tests/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/monitor.sh -------------------------------------------------------------------------------- /tests/mount-in1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/mount-in1.sh -------------------------------------------------------------------------------- /tests/mount-out1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/mount-out1.sh -------------------------------------------------------------------------------- /tests/network1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/network1.sh -------------------------------------------------------------------------------- /tests/pipefail-stub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/pipefail-stub.sh -------------------------------------------------------------------------------- /tests/ps1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/ps1.sh -------------------------------------------------------------------------------- /tests/rename1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/rename1.sh -------------------------------------------------------------------------------- /tests/rename2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/rename2.sh -------------------------------------------------------------------------------- /tests/rename3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/rename3.sh -------------------------------------------------------------------------------- /tests/rename4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/rename4.sh -------------------------------------------------------------------------------- /tests/revert1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/revert1.sh -------------------------------------------------------------------------------- /tests/set-attr1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/set-attr1.sh -------------------------------------------------------------------------------- /tests/set-attr2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/set-attr2.sh -------------------------------------------------------------------------------- /tests/set-cmd1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/set-cmd1.sh -------------------------------------------------------------------------------- /tests/set-env1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/set-env1.sh -------------------------------------------------------------------------------- /tests/set-env2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/set-env2.sh -------------------------------------------------------------------------------- /tests/set-hook1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/set-hook1.sh -------------------------------------------------------------------------------- /tests/set-hosts1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/set-hosts1.sh -------------------------------------------------------------------------------- /tests/set-rss1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/set-rss1.sh -------------------------------------------------------------------------------- /tests/show1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/show1.sh -------------------------------------------------------------------------------- /tests/shunit/.gitignore: -------------------------------------------------------------------------------- 1 | # Hidden files generated by macOS. 2 | .DS_Store 3 | ._* 4 | -------------------------------------------------------------------------------- /tests/shunit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/.travis.yml -------------------------------------------------------------------------------- /tests/shunit/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /tests/shunit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/LICENSE -------------------------------------------------------------------------------- /tests/shunit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/README.md -------------------------------------------------------------------------------- /tests/shunit/doc/CHANGES-2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/CHANGES-2.1.md -------------------------------------------------------------------------------- /tests/shunit/doc/RELEASE_NOTES-2.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/RELEASE_NOTES-2.1.0.txt -------------------------------------------------------------------------------- /tests/shunit/doc/RELEASE_NOTES-2.1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/RELEASE_NOTES-2.1.1.txt -------------------------------------------------------------------------------- /tests/shunit/doc/RELEASE_NOTES-2.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/RELEASE_NOTES-2.1.2.txt -------------------------------------------------------------------------------- /tests/shunit/doc/RELEASE_NOTES-2.1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/RELEASE_NOTES-2.1.3.txt -------------------------------------------------------------------------------- /tests/shunit/doc/RELEASE_NOTES-2.1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/RELEASE_NOTES-2.1.4.txt -------------------------------------------------------------------------------- /tests/shunit/doc/RELEASE_NOTES-2.1.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/RELEASE_NOTES-2.1.5.txt -------------------------------------------------------------------------------- /tests/shunit/doc/RELEASE_NOTES-2.1.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/RELEASE_NOTES-2.1.6.txt -------------------------------------------------------------------------------- /tests/shunit/doc/RELEASE_NOTES-2.1.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/RELEASE_NOTES-2.1.7.md -------------------------------------------------------------------------------- /tests/shunit/doc/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/TODO.txt -------------------------------------------------------------------------------- /tests/shunit/doc/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/contributors.md -------------------------------------------------------------------------------- /tests/shunit/doc/design_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/doc/design_doc.txt -------------------------------------------------------------------------------- /tests/shunit/examples/equality_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/examples/equality_test.sh -------------------------------------------------------------------------------- /tests/shunit/examples/lineno_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/examples/lineno_test.sh -------------------------------------------------------------------------------- /tests/shunit/examples/math.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/examples/math.inc -------------------------------------------------------------------------------- /tests/shunit/examples/math_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/examples/math_test.sh -------------------------------------------------------------------------------- /tests/shunit/examples/mkdir_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/examples/mkdir_test.sh -------------------------------------------------------------------------------- /tests/shunit/examples/mock_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/examples/mock_file.sh -------------------------------------------------------------------------------- /tests/shunit/examples/mock_file_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/examples/mock_file_test.sh -------------------------------------------------------------------------------- /tests/shunit/examples/party_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/examples/party_test.sh -------------------------------------------------------------------------------- /tests/shunit/examples/suite_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/examples/suite_test.sh -------------------------------------------------------------------------------- /tests/shunit/lib/shflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/lib/shflags -------------------------------------------------------------------------------- /tests/shunit/lib/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/lib/versions -------------------------------------------------------------------------------- /tests/shunit/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/shunit2 -------------------------------------------------------------------------------- /tests/shunit/shunit2_args_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/shunit2_args_test.sh -------------------------------------------------------------------------------- /tests/shunit/shunit2_asserts_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/shunit2_asserts_test.sh -------------------------------------------------------------------------------- /tests/shunit/shunit2_failures_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/shunit2_failures_test.sh -------------------------------------------------------------------------------- /tests/shunit/shunit2_macros_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/shunit2_macros_test.sh -------------------------------------------------------------------------------- /tests/shunit/shunit2_misc_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/shunit2_misc_test.sh -------------------------------------------------------------------------------- /tests/shunit/shunit2_standalone_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/shunit2_standalone_test.sh -------------------------------------------------------------------------------- /tests/shunit/shunit2_test_helpers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/shunit2_test_helpers -------------------------------------------------------------------------------- /tests/shunit/test_runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/shunit/test_runner -------------------------------------------------------------------------------- /tests/signal1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/signal1.sh -------------------------------------------------------------------------------- /tests/signal2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/signal2.sh -------------------------------------------------------------------------------- /tests/snapshot1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/snapshot1.sh -------------------------------------------------------------------------------- /tests/start2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/start2.sh -------------------------------------------------------------------------------- /tests/start3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/start3.sh -------------------------------------------------------------------------------- /tests/start4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/start4.sh -------------------------------------------------------------------------------- /tests/stop1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/stop1.sh -------------------------------------------------------------------------------- /tests/term1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/term1.sh -------------------------------------------------------------------------------- /tests/test-suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/test-suite.sh -------------------------------------------------------------------------------- /tests/top1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/top1.sh -------------------------------------------------------------------------------- /tests/version1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdpot/pot/HEAD/tests/version1.sh --------------------------------------------------------------------------------