├── .cargo └── config.toml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_more_checks.md └── workflows │ ├── ci.yaml │ └── release.yml ├── .gitignore ├── .rustfmt.toml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── docs ├── add-new-patterns.md ├── checks │ ├── base.md │ ├── fs-strict.md │ ├── fs.md │ ├── git-strict.md │ ├── git.md │ ├── heroku.md │ ├── kubernetes-strict.md │ ├── kubernetes.md │ ├── network.md │ └── terraform.md ├── config.md ├── docker │ ├── bash │ │ ├── Dockerfile │ │ └── README.md │ └── zsh │ │ ├── Dockerfile │ │ └── README.md └── media │ └── example.gif ├── shell-plugins ├── shellfirm.plugin.fish ├── shellfirm.plugin.oh-my-zsh.zsh ├── shellfirm.plugin.sh └── shellfirm.plugin.zsh └── shellfirm ├── Cargo.toml ├── build.rs ├── checks ├── base.yaml ├── fs-strict.yaml ├── fs.yaml ├── git-strict.yaml ├── git.yaml ├── heroku.yaml ├── kubernetes-strict.yaml ├── kubernetes.yaml ├── network.yaml └── terraform.yaml ├── src ├── bin │ ├── cmd │ │ ├── command.rs │ │ ├── config.rs │ │ ├── default.rs │ │ ├── mod.rs │ │ └── snapshots │ │ │ ├── shellfirm__cmd__command__test_command_cli_command__can_run_pre_command.snap │ │ │ ├── shellfirm__cmd__command__test_command_cli_command__can_run_pre_command_without_match.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_challenge-2.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_challenge.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_challenge_with_err.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_deny-2.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_deny.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_ignore-2.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_ignore.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_reset-2.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_reset.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_reset_with_error.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_update_groups-2.snap │ │ │ ├── shellfirm__cmd__config__test_config_cli_command__can_run_update_groups.snap │ │ │ └── shellfirm__cmd__config__test_config_cli_command__can_run_update_groups_with_error.snap │ └── shellfirm.rs ├── checks.rs ├── config.rs ├── data.rs ├── dialog.rs ├── lib.rs ├── prompt.rs └── snapshots │ ├── shellfirm__checks__test_checks__can_check_custom_filter_with_file_exists-2.snap │ ├── shellfirm__checks__test_checks__can_check_custom_filter_with_file_exists.snap │ ├── shellfirm__checks__test_checks__can_check_custom_filter_with_str_contains-2.snap │ ├── shellfirm__checks__test_checks__can_check_custom_filter_with_str_contains.snap │ ├── shellfirm__checks__test_checks__can_get_all_checks.snap │ ├── shellfirm__checks__test_checks__can_run_check_on_command-2.snap │ ├── shellfirm__checks__test_checks__can_run_check_on_command.snap │ ├── shellfirm__config__test_config__can_add_check_groups-2.snap │ ├── shellfirm__config__test_config__can_add_check_groups.snap │ ├── shellfirm__config__test_config__can_crate_new_config-2.snap │ ├── shellfirm__config__test_config__can_crate_new_config.snap │ ├── shellfirm__config__test_config__can_manage_config_file-2.snap │ ├── shellfirm__config__test_config__can_manage_config_file.snap │ ├── shellfirm__config__test_config__can_remove_check_groups.snap │ ├── shellfirm__config__test_config__can_reset_config_with_override-2.snap │ ├── shellfirm__config__test_config__can_reset_config_with_override-3.snap │ ├── shellfirm__config__test_config__can_reset_config_with_override.snap │ ├── shellfirm__config__test_config__can_reset_config_with_with_backup-2.snap │ ├── shellfirm__config__test_config__can_reset_config_with_with_backup-3.snap │ ├── shellfirm__config__test_config__can_reset_config_with_with_backup.snap │ ├── shellfirm__config__test_config__can_update_challenge-2.snap │ ├── shellfirm__config__test_config__can_update_challenge.snap │ ├── shellfirm__config__test_config__can_update_deny-2.snap │ ├── shellfirm__config__test_config__can_update_deny.snap │ ├── shellfirm__config__test_config__can_update_ignores-2.snap │ ├── shellfirm__config__test_config__can_update_ignores.snap │ ├── shellfirm__config__test_config__cat_get_settings_from_file.snap │ ├── shellfirm__config__test_settings__can_get_active_checks.snap │ └── shellfirm__config__test_settings__can_get_settings_from_file.snap ├── tests ├── checks.rs ├── checks │ ├── base-bash_fork_bomb.yaml │ ├── base-delete_all_cron_tasks.yaml │ ├── base-execute_all_history_commands.yaml │ ├── base-reboot_machine.yaml │ ├── base-shutdown_machine.yaml │ ├── fs-blockdev_disk_modify.yaml │ ├── fs-dd_advanced_disk_write.yaml │ ├── fs-dd_block_device.yaml │ ├── fs-delete_find_files.yaml │ ├── fs-encryption_operations.yaml │ ├── fs-fdisk_disk_modify.yaml │ ├── fs-filesystem_backup.yaml │ ├── fs-flush_file_content.yaml │ ├── fs-gdisk_disk_modify.yaml │ ├── fs-lvm_operations.yaml │ ├── fs-mkfs_format.yaml │ ├── fs-mount_operations.yaml │ ├── fs-move_to_dev_null.yaml │ ├── fs-parted_disk_modify.yaml │ ├── fs-partprobe_disk_update.yaml │ ├── fs-recursively_chmod.yaml │ ├── fs-recursively_delete.yaml │ ├── fs-sfdisk_disk_modify.yaml │ ├── fs-strict-any_deletion.yaml │ ├── fs-strict-change_permissions.yaml │ ├── fs-strict-folder_deletion.yaml │ ├── git-bisect.yaml │ ├── git-cherry_pick.yaml │ ├── git-clean_force.yaml │ ├── git-delete_all.yaml │ ├── git-delete_ref.yaml │ ├── git-filter_branch.yaml │ ├── git-force_checkout.yaml │ ├── git-force_delete_branch.yaml │ ├── git-force_push.yaml │ ├── git-gc_prune.yaml │ ├── git-interactive_rebase.yaml │ ├── git-merge_no_ff.yaml │ ├── git-reset.yaml │ ├── git-strict-add_all.yaml │ ├── git-strict-commit_all.yaml │ ├── git-strict-create_tag.yaml │ ├── git-strict-rebase.yaml │ ├── git-strict-stash_pop_drop.yaml │ ├── git-strict-submodule_update.yaml │ ├── git-worktree_management.yaml │ ├── heroku-destroy_addons.yaml │ ├── heroku-destroy_app.yaml │ ├── heroku-destroy_client.yaml │ ├── heroku-detach_addon.yaml │ ├── heroku-disable_app_feature.yaml │ ├── heroku-enable_maintenance_mode.yaml │ ├── heroku-kill_app_dynos.yaml │ ├── heroku-remove_app_container.yaml │ ├── heroku-remove_member.yaml │ ├── heroku-remove_user_access.yaml │ ├── heroku-remove_yourself_from_app.yaml │ ├── heroku-rename_app_name.yaml │ ├── heroku-reset_repo.yaml │ ├── heroku-restart_app_dynos.yaml │ ├── heroku-rotate_oauth_client.yaml │ ├── heroku-stop_app_dynos.yaml │ ├── heroku-unset_environment_variable.yaml │ ├── heroku-update_collaborators_access.yaml │ ├── heroku-update_oauth_client.yaml │ ├── kubernetes-delete_namespace.yaml │ ├── kubernetes-strict-change_resource_size.yaml │ ├── kubernetes-strict-delete_resource.yaml │ ├── kubernetes-strict-rollout_resource.yaml │ ├── kubernetes-strict-update_resource.yaml │ ├── network-bring-down-interface-ip.yaml │ ├── network-bring-down-interface.yaml │ ├── network-delete-custom-chains.yaml │ ├── network-delete-default-route.yaml │ ├── network-disable-firewall.yaml │ ├── network-flush-iptables.yaml │ ├── network-flush-nat-rules.yaml │ ├── network-force-reset-firewall.yaml │ ├── network-stop-network-manager.yaml │ ├── network-stop-networking.yaml │ ├── terraform-apply_with_auto_approve.yaml │ ├── terraform-force_unlock_with_force_flag.yaml │ ├── terraform-state.yaml │ ├── terraform-workspace_delete_with_force_flag.yaml │ └── terraform-workspace_delete_without_lock.yaml └── snapshots │ ├── checks__base-bash_fork_bomb.yaml.snap │ ├── checks__base-delete_all_cron_tasks.yaml.snap │ ├── checks__base-execute_all_history_commands.yaml.snap │ ├── checks__base-reboot_machine.yaml.snap │ ├── checks__base-shutdown_machine.yaml.snap │ ├── checks__fs-blockdev_disk_modify.yaml.snap │ ├── checks__fs-dd_advanced_disk_write.yaml.snap │ ├── checks__fs-dd_block_device.yaml.snap │ ├── checks__fs-delete_find_files.yaml.snap │ ├── checks__fs-encryption_operations.yaml.snap │ ├── checks__fs-fdisk_disk_modify.yaml.snap │ ├── checks__fs-filesystem_backup.yaml.snap │ ├── checks__fs-flush_file_content.yaml.snap │ ├── checks__fs-gdisk_disk_modify.yaml.snap │ ├── checks__fs-lvm_operations.yaml.snap │ ├── checks__fs-mkfs_format.yaml.snap │ ├── checks__fs-mount_operations.yaml.snap │ ├── checks__fs-move_to_dev_null.yaml.snap │ ├── checks__fs-parted_disk_modify.yaml.snap │ ├── checks__fs-partprobe_disk_update.yaml.snap │ ├── checks__fs-recursively_chmod.yaml.snap │ ├── checks__fs-recursively_delete.yaml.snap │ ├── checks__fs-sfdisk_disk_modify.yaml.snap │ ├── checks__fs-strict-any_deletion.yaml.snap │ ├── checks__fs-strict-change_permissions.yaml.snap │ ├── checks__fs-strict-folder_deletion.yaml.snap │ ├── checks__git-bisect.yaml.snap │ ├── checks__git-cherry_pick.yaml.snap │ ├── checks__git-clean_force.yaml.snap │ ├── checks__git-delete_all.yaml.snap │ ├── checks__git-delete_ref.yaml.snap │ ├── checks__git-filter_branch.yaml.snap │ ├── checks__git-force_checkout.yaml.snap │ ├── checks__git-force_delete_branch.yaml.snap │ ├── checks__git-force_push.yaml.snap │ ├── checks__git-gc_prune.yaml.snap │ ├── checks__git-interactive_rebase.yaml.snap │ ├── checks__git-merge_no_ff.yaml.snap │ ├── checks__git-reset.yaml.snap │ ├── checks__git-strict-add_all.yaml.snap │ ├── checks__git-strict-commit_all.yaml.snap │ ├── checks__git-strict-create_tag.yaml.snap │ ├── checks__git-strict-rebase.yaml.snap │ ├── checks__git-strict-stash_pop_drop.yaml.snap │ ├── checks__git-strict-submodule_update.yaml.snap │ ├── checks__git-worktree_management.yaml.snap │ ├── checks__heroku-destroy_addons.yaml.snap │ ├── checks__heroku-destroy_app.yaml.snap │ ├── checks__heroku-destroy_client.yaml.snap │ ├── checks__heroku-detach_addon.yaml.snap │ ├── checks__heroku-disable_app_feature.yaml.snap │ ├── checks__heroku-enable_maintenance_mode.yaml.snap │ ├── checks__heroku-kill_app_dynos.yaml.snap │ ├── checks__heroku-remove_app_container.yaml.snap │ ├── checks__heroku-remove_member.yaml.snap │ ├── checks__heroku-remove_user_access.yaml.snap │ ├── checks__heroku-remove_yourself_from_app.yaml.snap │ ├── checks__heroku-rename_app_name.yaml.snap │ ├── checks__heroku-reset_repo.yaml.snap │ ├── checks__heroku-restart_app_dynos.yaml.snap │ ├── checks__heroku-rotate_oauth_client.yaml.snap │ ├── checks__heroku-stop_app_dynos.yaml.snap │ ├── checks__heroku-unset_environment_variable.yaml.snap │ ├── checks__heroku-update_collaborators_access.yaml.snap │ ├── checks__heroku-update_oauth_client.yaml.snap │ ├── checks__kubernetes-delete_namespace.yaml.snap │ ├── checks__kubernetes-strict-change_resource_size.yaml.snap │ ├── checks__kubernetes-strict-delete_resource.yaml.snap │ ├── checks__kubernetes-strict-rollout_resource.yaml.snap │ ├── checks__kubernetes-strict-update_resource.yaml.snap │ ├── checks__missing_patterns_coverage.snap │ ├── checks__network-bring-down-interface-ip.yaml.snap │ ├── checks__network-bring-down-interface.yaml.snap │ ├── checks__network-delete-custom-chains.yaml.snap │ ├── checks__network-delete-default-route.yaml.snap │ ├── checks__network-disable-firewall.yaml.snap │ ├── checks__network-flush-iptables.yaml.snap │ ├── checks__network-flush-nat-rules.yaml.snap │ ├── checks__network-force-reset-firewall.yaml.snap │ ├── checks__network-stop-network-manager.yaml.snap │ ├── checks__network-stop-networking.yaml.snap │ ├── checks__terraform-apply_with_auto_approve.yaml.snap │ ├── checks__terraform-force_unlock_with_force_flag.yaml.snap │ ├── checks__terraform-state.yaml.snap │ ├── checks__terraform-workspace_delete_with_force_flag.yaml.snap │ └── checks__terraform-workspace_delete_without_lock.yaml.snap └── tmp └── .gitkeep /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_more_checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/.github/ISSUE_TEMPLATE/support_more_checks.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["shellfirm"] 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/README.md -------------------------------------------------------------------------------- /docs/add-new-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/add-new-patterns.md -------------------------------------------------------------------------------- /docs/checks/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/checks/base.md -------------------------------------------------------------------------------- /docs/checks/fs-strict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/checks/fs-strict.md -------------------------------------------------------------------------------- /docs/checks/fs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/checks/fs.md -------------------------------------------------------------------------------- /docs/checks/git-strict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/checks/git-strict.md -------------------------------------------------------------------------------- /docs/checks/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/checks/git.md -------------------------------------------------------------------------------- /docs/checks/heroku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/checks/heroku.md -------------------------------------------------------------------------------- /docs/checks/kubernetes-strict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/checks/kubernetes-strict.md -------------------------------------------------------------------------------- /docs/checks/kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/checks/kubernetes.md -------------------------------------------------------------------------------- /docs/checks/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/checks/network.md -------------------------------------------------------------------------------- /docs/checks/terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/checks/terraform.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/docker/bash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/docker/bash/Dockerfile -------------------------------------------------------------------------------- /docs/docker/bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/docker/bash/README.md -------------------------------------------------------------------------------- /docs/docker/zsh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/docker/zsh/Dockerfile -------------------------------------------------------------------------------- /docs/docker/zsh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/docker/zsh/README.md -------------------------------------------------------------------------------- /docs/media/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/docs/media/example.gif -------------------------------------------------------------------------------- /shell-plugins/shellfirm.plugin.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shell-plugins/shellfirm.plugin.fish -------------------------------------------------------------------------------- /shell-plugins/shellfirm.plugin.oh-my-zsh.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shell-plugins/shellfirm.plugin.oh-my-zsh.zsh -------------------------------------------------------------------------------- /shell-plugins/shellfirm.plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shell-plugins/shellfirm.plugin.sh -------------------------------------------------------------------------------- /shell-plugins/shellfirm.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shell-plugins/shellfirm.plugin.zsh -------------------------------------------------------------------------------- /shellfirm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/Cargo.toml -------------------------------------------------------------------------------- /shellfirm/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/build.rs -------------------------------------------------------------------------------- /shellfirm/checks/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/checks/base.yaml -------------------------------------------------------------------------------- /shellfirm/checks/fs-strict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/checks/fs-strict.yaml -------------------------------------------------------------------------------- /shellfirm/checks/fs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/checks/fs.yaml -------------------------------------------------------------------------------- /shellfirm/checks/git-strict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/checks/git-strict.yaml -------------------------------------------------------------------------------- /shellfirm/checks/git.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/checks/git.yaml -------------------------------------------------------------------------------- /shellfirm/checks/heroku.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/checks/heroku.yaml -------------------------------------------------------------------------------- /shellfirm/checks/kubernetes-strict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/checks/kubernetes-strict.yaml -------------------------------------------------------------------------------- /shellfirm/checks/kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/checks/kubernetes.yaml -------------------------------------------------------------------------------- /shellfirm/checks/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/checks/network.yaml -------------------------------------------------------------------------------- /shellfirm/checks/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/checks/terraform.yaml -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/command.rs -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/config.rs -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/default.rs -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/mod.rs -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__command__test_command_cli_command__can_run_pre_command.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__command__test_command_cli_command__can_run_pre_command.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__command__test_command_cli_command__can_run_pre_command_without_match.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__command__test_command_cli_command__can_run_pre_command_without_match.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_challenge-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_challenge-2.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_challenge.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_challenge.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_challenge_with_err.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_challenge_with_err.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_deny-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_deny-2.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_deny.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_deny.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_ignore-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_ignore-2.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_ignore.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_ignore.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_reset-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_reset-2.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_reset.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_reset.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_reset_with_error.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_reset_with_error.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_update_groups-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_update_groups-2.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_update_groups.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_update_groups.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_update_groups_with_error.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/cmd/snapshots/shellfirm__cmd__config__test_config_cli_command__can_run_update_groups_with_error.snap -------------------------------------------------------------------------------- /shellfirm/src/bin/shellfirm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/bin/shellfirm.rs -------------------------------------------------------------------------------- /shellfirm/src/checks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/checks.rs -------------------------------------------------------------------------------- /shellfirm/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/config.rs -------------------------------------------------------------------------------- /shellfirm/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/data.rs -------------------------------------------------------------------------------- /shellfirm/src/dialog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/dialog.rs -------------------------------------------------------------------------------- /shellfirm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/lib.rs -------------------------------------------------------------------------------- /shellfirm/src/prompt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/prompt.rs -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__checks__test_checks__can_check_custom_filter_with_file_exists-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__checks__test_checks__can_check_custom_filter_with_file_exists-2.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__checks__test_checks__can_check_custom_filter_with_file_exists.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__checks__test_checks__can_check_custom_filter_with_file_exists.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__checks__test_checks__can_check_custom_filter_with_str_contains-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__checks__test_checks__can_check_custom_filter_with_str_contains-2.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__checks__test_checks__can_check_custom_filter_with_str_contains.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__checks__test_checks__can_check_custom_filter_with_str_contains.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__checks__test_checks__can_get_all_checks.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__checks__test_checks__can_get_all_checks.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__checks__test_checks__can_run_check_on_command-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__checks__test_checks__can_run_check_on_command-2.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__checks__test_checks__can_run_check_on_command.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__checks__test_checks__can_run_check_on_command.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_add_check_groups-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_add_check_groups-2.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_add_check_groups.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_add_check_groups.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_crate_new_config-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_crate_new_config-2.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_crate_new_config.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_crate_new_config.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_manage_config_file-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_manage_config_file-2.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_manage_config_file.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_manage_config_file.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_remove_check_groups.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_remove_check_groups.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_override-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_override-2.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_override-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_override-3.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_override.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_override.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_with_backup-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_with_backup-2.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_with_backup-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_with_backup-3.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_with_backup.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_reset_config_with_with_backup.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_update_challenge-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_update_challenge-2.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_update_challenge.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_update_challenge.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_update_deny-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_update_deny-2.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_update_deny.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_update_deny.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_update_ignores-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_update_ignores-2.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__can_update_ignores.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__can_update_ignores.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_config__cat_get_settings_from_file.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_config__cat_get_settings_from_file.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_settings__can_get_active_checks.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_settings__can_get_active_checks.snap -------------------------------------------------------------------------------- /shellfirm/src/snapshots/shellfirm__config__test_settings__can_get_settings_from_file.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/src/snapshots/shellfirm__config__test_settings__can_get_settings_from_file.snap -------------------------------------------------------------------------------- /shellfirm/tests/checks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks.rs -------------------------------------------------------------------------------- /shellfirm/tests/checks/base-bash_fork_bomb.yaml: -------------------------------------------------------------------------------- 1 | - test: ':(){ :|:& };:' 2 | description: match command -------------------------------------------------------------------------------- /shellfirm/tests/checks/base-delete_all_cron_tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/base-delete_all_cron_tasks.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/base-execute_all_history_commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/base-execute_all_history_commands.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/base-reboot_machine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/base-reboot_machine.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/base-shutdown_machine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/base-shutdown_machine.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-blockdev_disk_modify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-blockdev_disk_modify.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-dd_advanced_disk_write.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-dd_advanced_disk_write.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-dd_block_device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-dd_block_device.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-delete_find_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-delete_find_files.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-encryption_operations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-encryption_operations.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-fdisk_disk_modify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-fdisk_disk_modify.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-filesystem_backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-filesystem_backup.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-flush_file_content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-flush_file_content.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-gdisk_disk_modify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-gdisk_disk_modify.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-lvm_operations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-lvm_operations.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-mkfs_format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-mkfs_format.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-mount_operations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-mount_operations.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-move_to_dev_null.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-move_to_dev_null.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-parted_disk_modify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-parted_disk_modify.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-partprobe_disk_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-partprobe_disk_update.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-recursively_chmod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-recursively_chmod.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-recursively_delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-recursively_delete.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-sfdisk_disk_modify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-sfdisk_disk_modify.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-strict-any_deletion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-strict-any_deletion.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-strict-change_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-strict-change_permissions.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/fs-strict-folder_deletion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/fs-strict-folder_deletion.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-bisect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-bisect.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-cherry_pick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-cherry_pick.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-clean_force.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-clean_force.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-delete_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-delete_all.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-delete_ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-delete_ref.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-filter_branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-filter_branch.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-force_checkout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-force_checkout.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-force_delete_branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-force_delete_branch.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-force_push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-force_push.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-gc_prune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-gc_prune.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-interactive_rebase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-interactive_rebase.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-merge_no_ff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-merge_no_ff.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-reset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-reset.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-strict-add_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-strict-add_all.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-strict-commit_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-strict-commit_all.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-strict-create_tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-strict-create_tag.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-strict-rebase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-strict-rebase.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-strict-stash_pop_drop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-strict-stash_pop_drop.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-strict-submodule_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-strict-submodule_update.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/git-worktree_management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/git-worktree_management.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-destroy_addons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-destroy_addons.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-destroy_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-destroy_app.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-destroy_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-destroy_client.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-detach_addon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-detach_addon.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-disable_app_feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-disable_app_feature.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-enable_maintenance_mode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-enable_maintenance_mode.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-kill_app_dynos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-kill_app_dynos.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-remove_app_container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-remove_app_container.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-remove_member.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-remove_member.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-remove_user_access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-remove_user_access.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-remove_yourself_from_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-remove_yourself_from_app.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-rename_app_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-rename_app_name.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-reset_repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-reset_repo.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-restart_app_dynos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-restart_app_dynos.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-rotate_oauth_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-rotate_oauth_client.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-stop_app_dynos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-stop_app_dynos.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-unset_environment_variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-unset_environment_variable.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-update_collaborators_access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-update_collaborators_access.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/heroku-update_oauth_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/heroku-update_oauth_client.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/kubernetes-delete_namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/kubernetes-delete_namespace.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/kubernetes-strict-change_resource_size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/kubernetes-strict-change_resource_size.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/kubernetes-strict-delete_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/kubernetes-strict-delete_resource.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/kubernetes-strict-rollout_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/kubernetes-strict-rollout_resource.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/kubernetes-strict-update_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/kubernetes-strict-update_resource.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/network-bring-down-interface-ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/network-bring-down-interface-ip.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/network-bring-down-interface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/network-bring-down-interface.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/network-delete-custom-chains.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/network-delete-custom-chains.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/network-delete-default-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/network-delete-default-route.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/network-disable-firewall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/network-disable-firewall.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/network-flush-iptables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/network-flush-iptables.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/network-flush-nat-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/network-flush-nat-rules.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/network-force-reset-firewall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/network-force-reset-firewall.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/network-stop-network-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/network-stop-network-manager.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/network-stop-networking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/network-stop-networking.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/terraform-apply_with_auto_approve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/terraform-apply_with_auto_approve.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/terraform-force_unlock_with_force_flag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/terraform-force_unlock_with_force_flag.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/terraform-state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/terraform-state.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/terraform-workspace_delete_with_force_flag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/terraform-workspace_delete_with_force_flag.yaml -------------------------------------------------------------------------------- /shellfirm/tests/checks/terraform-workspace_delete_without_lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/checks/terraform-workspace_delete_without_lock.yaml -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__base-bash_fork_bomb.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__base-bash_fork_bomb.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__base-delete_all_cron_tasks.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__base-delete_all_cron_tasks.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__base-execute_all_history_commands.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__base-execute_all_history_commands.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__base-reboot_machine.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__base-reboot_machine.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__base-shutdown_machine.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__base-shutdown_machine.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-blockdev_disk_modify.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-blockdev_disk_modify.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-dd_advanced_disk_write.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-dd_advanced_disk_write.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-dd_block_device.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-dd_block_device.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-delete_find_files.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-delete_find_files.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-encryption_operations.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-encryption_operations.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-fdisk_disk_modify.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-fdisk_disk_modify.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-filesystem_backup.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-filesystem_backup.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-flush_file_content.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-flush_file_content.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-gdisk_disk_modify.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-gdisk_disk_modify.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-lvm_operations.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-lvm_operations.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-mkfs_format.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-mkfs_format.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-mount_operations.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-mount_operations.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-move_to_dev_null.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-move_to_dev_null.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-parted_disk_modify.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-parted_disk_modify.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-partprobe_disk_update.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-partprobe_disk_update.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-recursively_chmod.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-recursively_chmod.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-recursively_delete.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-recursively_delete.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-sfdisk_disk_modify.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-sfdisk_disk_modify.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-strict-any_deletion.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-strict-any_deletion.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-strict-change_permissions.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-strict-change_permissions.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__fs-strict-folder_deletion.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__fs-strict-folder_deletion.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-bisect.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-bisect.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-cherry_pick.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-cherry_pick.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-clean_force.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-clean_force.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-delete_all.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-delete_all.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-delete_ref.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-delete_ref.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-filter_branch.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-filter_branch.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-force_checkout.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-force_checkout.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-force_delete_branch.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-force_delete_branch.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-force_push.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-force_push.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-gc_prune.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-gc_prune.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-interactive_rebase.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-interactive_rebase.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-merge_no_ff.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-merge_no_ff.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-reset.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-reset.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-strict-add_all.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-strict-add_all.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-strict-commit_all.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-strict-commit_all.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-strict-create_tag.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-strict-create_tag.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-strict-rebase.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-strict-rebase.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-strict-stash_pop_drop.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-strict-stash_pop_drop.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-strict-submodule_update.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-strict-submodule_update.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__git-worktree_management.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__git-worktree_management.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-destroy_addons.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-destroy_addons.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-destroy_app.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-destroy_app.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-destroy_client.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-destroy_client.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-detach_addon.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-detach_addon.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-disable_app_feature.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-disable_app_feature.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-enable_maintenance_mode.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-enable_maintenance_mode.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-kill_app_dynos.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-kill_app_dynos.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-remove_app_container.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-remove_app_container.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-remove_member.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-remove_member.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-remove_user_access.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-remove_user_access.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-remove_yourself_from_app.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-remove_yourself_from_app.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-rename_app_name.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-rename_app_name.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-reset_repo.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-reset_repo.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-restart_app_dynos.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-restart_app_dynos.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-rotate_oauth_client.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-rotate_oauth_client.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-stop_app_dynos.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-stop_app_dynos.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-unset_environment_variable.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-unset_environment_variable.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-update_collaborators_access.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-update_collaborators_access.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__heroku-update_oauth_client.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__heroku-update_oauth_client.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__kubernetes-delete_namespace.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__kubernetes-delete_namespace.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__kubernetes-strict-change_resource_size.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__kubernetes-strict-change_resource_size.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__kubernetes-strict-delete_resource.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__kubernetes-strict-delete_resource.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__kubernetes-strict-rollout_resource.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__kubernetes-strict-rollout_resource.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__kubernetes-strict-update_resource.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__kubernetes-strict-update_resource.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__missing_patterns_coverage.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__missing_patterns_coverage.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__network-bring-down-interface-ip.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__network-bring-down-interface-ip.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__network-bring-down-interface.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__network-bring-down-interface.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__network-delete-custom-chains.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__network-delete-custom-chains.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__network-delete-default-route.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__network-delete-default-route.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__network-disable-firewall.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__network-disable-firewall.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__network-flush-iptables.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__network-flush-iptables.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__network-flush-nat-rules.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__network-flush-nat-rules.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__network-force-reset-firewall.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__network-force-reset-firewall.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__network-stop-network-manager.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__network-stop-network-manager.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__network-stop-networking.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__network-stop-networking.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__terraform-apply_with_auto_approve.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__terraform-apply_with_auto_approve.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__terraform-force_unlock_with_force_flag.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__terraform-force_unlock_with_force_flag.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__terraform-state.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__terraform-state.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__terraform-workspace_delete_with_force_flag.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__terraform-workspace_delete_with_force_flag.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tests/snapshots/checks__terraform-workspace_delete_without_lock.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaplanelad/shellfirm/HEAD/shellfirm/tests/snapshots/checks__terraform-workspace_delete_without_lock.yaml.snap -------------------------------------------------------------------------------- /shellfirm/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------