├── .gitignore ├── LICENSE ├── README.md ├── ansible ├── adoc.sh ├── ansible_dynamic_inventory_dns_zonetransfer.py ├── ansible_dynamic_inventory_freeipa_api.py ├── ansible_dynamic_inventory_freeipa_with_vars.py ├── ansible_extract_doc.sh ├── ansible_list_to_from_file.yml ├── ansible_setup_local.sh ├── ansible_setup_local_old.sh ├── create_global_fact.yml ├── example.nested_role_vars │ ├── README.md │ ├── ansible.cfg │ ├── inventory │ │ └── localhost │ ├── playbooks │ │ ├── role_test.log │ │ └── role_test.yml │ └── roles │ │ ├── role1 │ │ ├── defaults │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ │ └── role2 │ │ ├── defaults │ │ └── main.yml │ │ └── tasks │ │ └── main.yml ├── foreman_3.8 │ ├── foreman_contentViewPublishAndPromote.yml │ ├── foreman_contentViewVersionAssignLiveCycleEnv.yml │ ├── foreman_contentViewVersionDelete.yml │ └── foreman_contentViewVersionPublish.yml ├── foreman_contentViewPublishAndPromote.yml ├── foreman_contentViewVersionAssignLiveCycleEnv.yml ├── foreman_contentViewVersionDelete.yml ├── foreman_contentViewVersionPublish.yml ├── inventory.vmware.yml ├── nested_vars_example.yml ├── phpipam_ip_export.yml ├── rhel8_dnf_bug.yml ├── vault-unlock.sh ├── vm_power_on.yml ├── vm_snap_create.yml ├── vm_snap_delete.yml ├── vm_snap_info.yml ├── vm_snap_revert.yml ├── vsphere_update_os-type_hw-version.yml ├── winrm_2022_setup.md └── zabbix_add_update_host_example.yml ├── archiv ├── databases │ ├── ora-backup.sh │ ├── ora_12c_dp_backup.sh │ ├── oracle-10g-install.sh │ ├── oracle-11g-install.sh │ ├── oracle-12c-install.sh │ ├── oracle-check-alertlog.sh │ ├── oracle-check-deadlocks.sh │ ├── oracle-check-invalid-objects.sh │ ├── oracle-check-tablespace.sh │ ├── orainit-12c.sh │ ├── orainit-ubuntu.sh │ ├── orainit.sh │ └── orasid.sh ├── perl │ ├── file-locking-demo.pl │ ├── logtail.pl │ └── port-checker.pl ├── python │ └── lcdproc_client.py ├── shell │ ├── add-fence-vm-esxi.sh │ ├── aide_check.sh │ ├── alpine-nginx-geoip-update.sh │ ├── alpine-xtables-geoip-update.sh │ ├── back-rotate.sh │ ├── backup-config.sh │ ├── backup-get-rsync.sh │ ├── bacula-backup-report.sh │ ├── bacula-status-mon.sh │ ├── btsaver.sh │ ├── changeip_com.sh │ ├── check-usb-stick.sh │ ├── checkhost.sh │ ├── dirvish-report.sh │ ├── drbd-split-brain-repair.sh │ ├── dstat-csv2gnuplot.sh │ ├── email2sms-procmail.sh │ ├── esxi-log-into-script.sh │ ├── fence_xen.sh │ ├── fetchmail.sh │ ├── geoip-update.sh │ ├── geoip_ipset_firewalld_centos7.sh │ ├── geoip_ufw_whitelist_ubuntu1804.sh │ ├── git-revision-function.sh │ ├── guacamole_fix_mic.sh │ ├── guacamole_reset_totp_user.sh │ ├── log-rotate-size.sh │ ├── mbox2html.sh │ ├── mcom.sh │ ├── mount-crypto.sh │ ├── nmap_auto_scanner.sh │ ├── oc-is-set-autoupdate.sh │ ├── opendns_updater.sh │ ├── ovpn-client-handler.sh │ ├── password-file-crypt.sh │ ├── pkg_search.sh │ ├── proxmox-backup-index.sh │ ├── san-lvm-check.sh │ ├── spam-shrinker.sh │ ├── ssh-public-key-install.sh │ ├── ssl_cert_scanner_docker.sh │ ├── sync-dns-bind-to-ad.sh │ ├── sysV-screen-init.sh │ ├── tmon.sh │ ├── usenext-sysv.sh │ ├── user-copy.sh │ ├── virtualmin-extractor.sh │ └── wifiio-83-client.sh ├── vcsa │ ├── vcsa_65_status.sh │ ├── vcsa_67_backup_scp.sh │ ├── vcsa_67_restore_scp.sh │ └── vcsa_67_status.sh ├── vra │ ├── vra-cloud_client-content-backup.sh │ ├── vra-cloud_client-content-backup_v2.sh │ └── vra7-bulk-export-import-cleaner.py └── zabbix │ ├── zabbix_ext_ssl_cert.sh │ └── zabbix_ext_ssl_cert_template.xml ├── databases ├── add_alias_iredmail_mysql.sh ├── backup-mysql.sh ├── mysql-status.sh ├── opensearch_template_and_indices_overview.sh └── pg_backup.sh ├── divers ├── linux_oom.c └── tmux.conf ├── kubernetes ├── kubernetes-backup-all-objects.sh ├── kubernetes-list-image-details.sh ├── kubernetes-terminate-namespace.sh └── restrict_network_policy_isolate_ns_allow_ingress_k3s.yml ├── kvm ├── add-fence-vm-virsh.sh ├── virsh-config-backup.sh ├── virsh-list-all.sh └── virsh-qcow-backup.sh ├── python ├── adGroupBackup.py ├── adUserBackup.py ├── ask_chatgpt.py ├── csv2png_graphviz.py └── python_template.py ├── ruby ├── sms.conf └── sms.rb ├── shell ├── aspsms.sh ├── backdoor-install-and-hide.sh ├── backup-esxi-vms.sh ├── bind_rpz_email_reporter.sh ├── bitwarden-org-vault-export.sh ├── cert-create-ca.sh ├── cert_chain_days_tester.sh ├── check_oom_logtail.sh ├── console-recorder.sh ├── file2markdown.sh ├── file2wiki.sh ├── foreman_host_disable_default_repos.sh ├── freeipa_health_check.sh ├── freeipa_rename_user.sh ├── get-rsync-sudo.sh ├── grow_cloud_rootfs_xfs.sh ├── kx.sh ├── linux_sysbench_all.sh ├── logtail.sh ├── luadns-updater.sh ├── lv_manager.sh ├── mailecho.sh ├── mem_hunter.sh ├── monitor_connections.sh ├── nc_benchmark.sh ├── nc_share_audit.sh ├── nextcloud_drop_send.sh ├── opensearch_template_replica_debug.sh ├── openssl_cert_check.sh ├── openssl_check_cert_chain.sh ├── package-health-check.sh ├── pmon.sh ├── px.sh ├── rcs-backup.sh ├── report_local_user_logins.sh ├── rpm-perm-restore.sh ├── rundeck_scm_enabler.sh ├── screen-capture.sh ├── smtp_tls_mailtest.sh ├── ssh-reverse-port-forwarder.sh ├── ssh-sudo-exec.sh ├── ssl_cert_scanner.sh ├── stamp.sh ├── sys-note-german.sh ├── sys-note.sh ├── sysV-init.sh ├── sysprep.sh ├── telegram-send.sh ├── twilio-sms.sh ├── vdoc.sh ├── vnc-change-screen-resolution.sh └── wazuh_geoip_update.sh ├── vcsa └── ansible_vcsa_8_backup_sftp.yml ├── zabbix ├── zabbix_cert_check_simple.sh ├── zabbix_cert_check_simple.xml ├── zabbix_check_safesearch_google.py ├── zabbix_check_website.py ├── zabbix_script_host_maintenance.py ├── zabbix_script_host_maintenance.sh ├── zabbix_template_quantum_dxi.yaml └── zabbix_trap_receiver.pl └── zimbra └── manage_out_of_office_by_calendar_events.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .aider* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/README.md -------------------------------------------------------------------------------- /ansible/adoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/adoc.sh -------------------------------------------------------------------------------- /ansible/ansible_dynamic_inventory_dns_zonetransfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/ansible_dynamic_inventory_dns_zonetransfer.py -------------------------------------------------------------------------------- /ansible/ansible_dynamic_inventory_freeipa_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/ansible_dynamic_inventory_freeipa_api.py -------------------------------------------------------------------------------- /ansible/ansible_dynamic_inventory_freeipa_with_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/ansible_dynamic_inventory_freeipa_with_vars.py -------------------------------------------------------------------------------- /ansible/ansible_extract_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/ansible_extract_doc.sh -------------------------------------------------------------------------------- /ansible/ansible_list_to_from_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/ansible_list_to_from_file.yml -------------------------------------------------------------------------------- /ansible/ansible_setup_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/ansible_setup_local.sh -------------------------------------------------------------------------------- /ansible/ansible_setup_local_old.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/ansible_setup_local_old.sh -------------------------------------------------------------------------------- /ansible/create_global_fact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/create_global_fact.yml -------------------------------------------------------------------------------- /ansible/example.nested_role_vars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/example.nested_role_vars/README.md -------------------------------------------------------------------------------- /ansible/example.nested_role_vars/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/example.nested_role_vars/ansible.cfg -------------------------------------------------------------------------------- /ansible/example.nested_role_vars/inventory/localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/example.nested_role_vars/inventory/localhost -------------------------------------------------------------------------------- /ansible/example.nested_role_vars/playbooks/role_test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/example.nested_role_vars/playbooks/role_test.log -------------------------------------------------------------------------------- /ansible/example.nested_role_vars/playbooks/role_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/example.nested_role_vars/playbooks/role_test.yml -------------------------------------------------------------------------------- /ansible/example.nested_role_vars/roles/role1/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/example.nested_role_vars/roles/role1/defaults/main.yml -------------------------------------------------------------------------------- /ansible/example.nested_role_vars/roles/role1/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/example.nested_role_vars/roles/role1/tasks/main.yml -------------------------------------------------------------------------------- /ansible/example.nested_role_vars/roles/role2/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/example.nested_role_vars/roles/role2/defaults/main.yml -------------------------------------------------------------------------------- /ansible/example.nested_role_vars/roles/role2/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/example.nested_role_vars/roles/role2/tasks/main.yml -------------------------------------------------------------------------------- /ansible/foreman_3.8/foreman_contentViewPublishAndPromote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/foreman_3.8/foreman_contentViewPublishAndPromote.yml -------------------------------------------------------------------------------- /ansible/foreman_3.8/foreman_contentViewVersionAssignLiveCycleEnv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/foreman_3.8/foreman_contentViewVersionAssignLiveCycleEnv.yml -------------------------------------------------------------------------------- /ansible/foreman_3.8/foreman_contentViewVersionDelete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/foreman_3.8/foreman_contentViewVersionDelete.yml -------------------------------------------------------------------------------- /ansible/foreman_3.8/foreman_contentViewVersionPublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/foreman_3.8/foreman_contentViewVersionPublish.yml -------------------------------------------------------------------------------- /ansible/foreman_contentViewPublishAndPromote.yml: -------------------------------------------------------------------------------- 1 | foreman_3.8/foreman_contentViewPublishAndPromote.yml -------------------------------------------------------------------------------- /ansible/foreman_contentViewVersionAssignLiveCycleEnv.yml: -------------------------------------------------------------------------------- 1 | foreman_3.8/foreman_contentViewVersionAssignLiveCycleEnv.yml -------------------------------------------------------------------------------- /ansible/foreman_contentViewVersionDelete.yml: -------------------------------------------------------------------------------- 1 | foreman_3.8/foreman_contentViewVersionDelete.yml -------------------------------------------------------------------------------- /ansible/foreman_contentViewVersionPublish.yml: -------------------------------------------------------------------------------- 1 | foreman_3.8/foreman_contentViewVersionPublish.yml -------------------------------------------------------------------------------- /ansible/inventory.vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/inventory.vmware.yml -------------------------------------------------------------------------------- /ansible/nested_vars_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/nested_vars_example.yml -------------------------------------------------------------------------------- /ansible/phpipam_ip_export.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/phpipam_ip_export.yml -------------------------------------------------------------------------------- /ansible/rhel8_dnf_bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/rhel8_dnf_bug.yml -------------------------------------------------------------------------------- /ansible/vault-unlock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/vault-unlock.sh -------------------------------------------------------------------------------- /ansible/vm_power_on.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/vm_power_on.yml -------------------------------------------------------------------------------- /ansible/vm_snap_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/vm_snap_create.yml -------------------------------------------------------------------------------- /ansible/vm_snap_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/vm_snap_delete.yml -------------------------------------------------------------------------------- /ansible/vm_snap_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/vm_snap_info.yml -------------------------------------------------------------------------------- /ansible/vm_snap_revert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/vm_snap_revert.yml -------------------------------------------------------------------------------- /ansible/vsphere_update_os-type_hw-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/vsphere_update_os-type_hw-version.yml -------------------------------------------------------------------------------- /ansible/winrm_2022_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/winrm_2022_setup.md -------------------------------------------------------------------------------- /ansible/zabbix_add_update_host_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ansible/zabbix_add_update_host_example.yml -------------------------------------------------------------------------------- /archiv/databases/ora-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/ora-backup.sh -------------------------------------------------------------------------------- /archiv/databases/ora_12c_dp_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/ora_12c_dp_backup.sh -------------------------------------------------------------------------------- /archiv/databases/oracle-10g-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/oracle-10g-install.sh -------------------------------------------------------------------------------- /archiv/databases/oracle-11g-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/oracle-11g-install.sh -------------------------------------------------------------------------------- /archiv/databases/oracle-12c-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/oracle-12c-install.sh -------------------------------------------------------------------------------- /archiv/databases/oracle-check-alertlog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/oracle-check-alertlog.sh -------------------------------------------------------------------------------- /archiv/databases/oracle-check-deadlocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/oracle-check-deadlocks.sh -------------------------------------------------------------------------------- /archiv/databases/oracle-check-invalid-objects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/oracle-check-invalid-objects.sh -------------------------------------------------------------------------------- /archiv/databases/oracle-check-tablespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/oracle-check-tablespace.sh -------------------------------------------------------------------------------- /archiv/databases/orainit-12c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/orainit-12c.sh -------------------------------------------------------------------------------- /archiv/databases/orainit-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/orainit-ubuntu.sh -------------------------------------------------------------------------------- /archiv/databases/orainit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/orainit.sh -------------------------------------------------------------------------------- /archiv/databases/orasid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/databases/orasid.sh -------------------------------------------------------------------------------- /archiv/perl/file-locking-demo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/perl/file-locking-demo.pl -------------------------------------------------------------------------------- /archiv/perl/logtail.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/perl/logtail.pl -------------------------------------------------------------------------------- /archiv/perl/port-checker.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/perl/port-checker.pl -------------------------------------------------------------------------------- /archiv/python/lcdproc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/python/lcdproc_client.py -------------------------------------------------------------------------------- /archiv/shell/add-fence-vm-esxi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/add-fence-vm-esxi.sh -------------------------------------------------------------------------------- /archiv/shell/aide_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/aide_check.sh -------------------------------------------------------------------------------- /archiv/shell/alpine-nginx-geoip-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/alpine-nginx-geoip-update.sh -------------------------------------------------------------------------------- /archiv/shell/alpine-xtables-geoip-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/alpine-xtables-geoip-update.sh -------------------------------------------------------------------------------- /archiv/shell/back-rotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/back-rotate.sh -------------------------------------------------------------------------------- /archiv/shell/backup-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/backup-config.sh -------------------------------------------------------------------------------- /archiv/shell/backup-get-rsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/backup-get-rsync.sh -------------------------------------------------------------------------------- /archiv/shell/bacula-backup-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/bacula-backup-report.sh -------------------------------------------------------------------------------- /archiv/shell/bacula-status-mon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/bacula-status-mon.sh -------------------------------------------------------------------------------- /archiv/shell/btsaver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/btsaver.sh -------------------------------------------------------------------------------- /archiv/shell/changeip_com.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/changeip_com.sh -------------------------------------------------------------------------------- /archiv/shell/check-usb-stick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/check-usb-stick.sh -------------------------------------------------------------------------------- /archiv/shell/checkhost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/checkhost.sh -------------------------------------------------------------------------------- /archiv/shell/dirvish-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/dirvish-report.sh -------------------------------------------------------------------------------- /archiv/shell/drbd-split-brain-repair.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/drbd-split-brain-repair.sh -------------------------------------------------------------------------------- /archiv/shell/dstat-csv2gnuplot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/dstat-csv2gnuplot.sh -------------------------------------------------------------------------------- /archiv/shell/email2sms-procmail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/email2sms-procmail.sh -------------------------------------------------------------------------------- /archiv/shell/esxi-log-into-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/esxi-log-into-script.sh -------------------------------------------------------------------------------- /archiv/shell/fence_xen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/fence_xen.sh -------------------------------------------------------------------------------- /archiv/shell/fetchmail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/fetchmail.sh -------------------------------------------------------------------------------- /archiv/shell/geoip-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/geoip-update.sh -------------------------------------------------------------------------------- /archiv/shell/geoip_ipset_firewalld_centos7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/geoip_ipset_firewalld_centos7.sh -------------------------------------------------------------------------------- /archiv/shell/geoip_ufw_whitelist_ubuntu1804.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/geoip_ufw_whitelist_ubuntu1804.sh -------------------------------------------------------------------------------- /archiv/shell/git-revision-function.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/git-revision-function.sh -------------------------------------------------------------------------------- /archiv/shell/guacamole_fix_mic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/guacamole_fix_mic.sh -------------------------------------------------------------------------------- /archiv/shell/guacamole_reset_totp_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/guacamole_reset_totp_user.sh -------------------------------------------------------------------------------- /archiv/shell/log-rotate-size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/log-rotate-size.sh -------------------------------------------------------------------------------- /archiv/shell/mbox2html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/mbox2html.sh -------------------------------------------------------------------------------- /archiv/shell/mcom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/mcom.sh -------------------------------------------------------------------------------- /archiv/shell/mount-crypto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/mount-crypto.sh -------------------------------------------------------------------------------- /archiv/shell/nmap_auto_scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/nmap_auto_scanner.sh -------------------------------------------------------------------------------- /archiv/shell/oc-is-set-autoupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/oc-is-set-autoupdate.sh -------------------------------------------------------------------------------- /archiv/shell/opendns_updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/opendns_updater.sh -------------------------------------------------------------------------------- /archiv/shell/ovpn-client-handler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/ovpn-client-handler.sh -------------------------------------------------------------------------------- /archiv/shell/password-file-crypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/password-file-crypt.sh -------------------------------------------------------------------------------- /archiv/shell/pkg_search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/pkg_search.sh -------------------------------------------------------------------------------- /archiv/shell/proxmox-backup-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/proxmox-backup-index.sh -------------------------------------------------------------------------------- /archiv/shell/san-lvm-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/san-lvm-check.sh -------------------------------------------------------------------------------- /archiv/shell/spam-shrinker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/spam-shrinker.sh -------------------------------------------------------------------------------- /archiv/shell/ssh-public-key-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/ssh-public-key-install.sh -------------------------------------------------------------------------------- /archiv/shell/ssl_cert_scanner_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/ssl_cert_scanner_docker.sh -------------------------------------------------------------------------------- /archiv/shell/sync-dns-bind-to-ad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/sync-dns-bind-to-ad.sh -------------------------------------------------------------------------------- /archiv/shell/sysV-screen-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/sysV-screen-init.sh -------------------------------------------------------------------------------- /archiv/shell/tmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/tmon.sh -------------------------------------------------------------------------------- /archiv/shell/usenext-sysv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/usenext-sysv.sh -------------------------------------------------------------------------------- /archiv/shell/user-copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/user-copy.sh -------------------------------------------------------------------------------- /archiv/shell/virtualmin-extractor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/virtualmin-extractor.sh -------------------------------------------------------------------------------- /archiv/shell/wifiio-83-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/shell/wifiio-83-client.sh -------------------------------------------------------------------------------- /archiv/vcsa/vcsa_65_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/vcsa/vcsa_65_status.sh -------------------------------------------------------------------------------- /archiv/vcsa/vcsa_67_backup_scp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/vcsa/vcsa_67_backup_scp.sh -------------------------------------------------------------------------------- /archiv/vcsa/vcsa_67_restore_scp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/vcsa/vcsa_67_restore_scp.sh -------------------------------------------------------------------------------- /archiv/vcsa/vcsa_67_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/vcsa/vcsa_67_status.sh -------------------------------------------------------------------------------- /archiv/vra/vra-cloud_client-content-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/vra/vra-cloud_client-content-backup.sh -------------------------------------------------------------------------------- /archiv/vra/vra-cloud_client-content-backup_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/vra/vra-cloud_client-content-backup_v2.sh -------------------------------------------------------------------------------- /archiv/vra/vra7-bulk-export-import-cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/vra/vra7-bulk-export-import-cleaner.py -------------------------------------------------------------------------------- /archiv/zabbix/zabbix_ext_ssl_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/zabbix/zabbix_ext_ssl_cert.sh -------------------------------------------------------------------------------- /archiv/zabbix/zabbix_ext_ssl_cert_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/archiv/zabbix/zabbix_ext_ssl_cert_template.xml -------------------------------------------------------------------------------- /databases/add_alias_iredmail_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/databases/add_alias_iredmail_mysql.sh -------------------------------------------------------------------------------- /databases/backup-mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/databases/backup-mysql.sh -------------------------------------------------------------------------------- /databases/mysql-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/databases/mysql-status.sh -------------------------------------------------------------------------------- /databases/opensearch_template_and_indices_overview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/databases/opensearch_template_and_indices_overview.sh -------------------------------------------------------------------------------- /databases/pg_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/databases/pg_backup.sh -------------------------------------------------------------------------------- /divers/linux_oom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/divers/linux_oom.c -------------------------------------------------------------------------------- /divers/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/divers/tmux.conf -------------------------------------------------------------------------------- /kubernetes/kubernetes-backup-all-objects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/kubernetes/kubernetes-backup-all-objects.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes-list-image-details.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/kubernetes/kubernetes-list-image-details.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes-terminate-namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/kubernetes/kubernetes-terminate-namespace.sh -------------------------------------------------------------------------------- /kubernetes/restrict_network_policy_isolate_ns_allow_ingress_k3s.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/kubernetes/restrict_network_policy_isolate_ns_allow_ingress_k3s.yml -------------------------------------------------------------------------------- /kvm/add-fence-vm-virsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/kvm/add-fence-vm-virsh.sh -------------------------------------------------------------------------------- /kvm/virsh-config-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/kvm/virsh-config-backup.sh -------------------------------------------------------------------------------- /kvm/virsh-list-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/kvm/virsh-list-all.sh -------------------------------------------------------------------------------- /kvm/virsh-qcow-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/kvm/virsh-qcow-backup.sh -------------------------------------------------------------------------------- /python/adGroupBackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/python/adGroupBackup.py -------------------------------------------------------------------------------- /python/adUserBackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/python/adUserBackup.py -------------------------------------------------------------------------------- /python/ask_chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/python/ask_chatgpt.py -------------------------------------------------------------------------------- /python/csv2png_graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/python/csv2png_graphviz.py -------------------------------------------------------------------------------- /python/python_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/python/python_template.py -------------------------------------------------------------------------------- /ruby/sms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ruby/sms.conf -------------------------------------------------------------------------------- /ruby/sms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/ruby/sms.rb -------------------------------------------------------------------------------- /shell/aspsms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/aspsms.sh -------------------------------------------------------------------------------- /shell/backdoor-install-and-hide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/backdoor-install-and-hide.sh -------------------------------------------------------------------------------- /shell/backup-esxi-vms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/backup-esxi-vms.sh -------------------------------------------------------------------------------- /shell/bind_rpz_email_reporter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/bind_rpz_email_reporter.sh -------------------------------------------------------------------------------- /shell/bitwarden-org-vault-export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/bitwarden-org-vault-export.sh -------------------------------------------------------------------------------- /shell/cert-create-ca.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/cert-create-ca.sh -------------------------------------------------------------------------------- /shell/cert_chain_days_tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/cert_chain_days_tester.sh -------------------------------------------------------------------------------- /shell/check_oom_logtail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/check_oom_logtail.sh -------------------------------------------------------------------------------- /shell/console-recorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/console-recorder.sh -------------------------------------------------------------------------------- /shell/file2markdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/file2markdown.sh -------------------------------------------------------------------------------- /shell/file2wiki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/file2wiki.sh -------------------------------------------------------------------------------- /shell/foreman_host_disable_default_repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/foreman_host_disable_default_repos.sh -------------------------------------------------------------------------------- /shell/freeipa_health_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/freeipa_health_check.sh -------------------------------------------------------------------------------- /shell/freeipa_rename_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/freeipa_rename_user.sh -------------------------------------------------------------------------------- /shell/get-rsync-sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/get-rsync-sudo.sh -------------------------------------------------------------------------------- /shell/grow_cloud_rootfs_xfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/grow_cloud_rootfs_xfs.sh -------------------------------------------------------------------------------- /shell/kx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/kx.sh -------------------------------------------------------------------------------- /shell/linux_sysbench_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/linux_sysbench_all.sh -------------------------------------------------------------------------------- /shell/logtail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/logtail.sh -------------------------------------------------------------------------------- /shell/luadns-updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/luadns-updater.sh -------------------------------------------------------------------------------- /shell/lv_manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/lv_manager.sh -------------------------------------------------------------------------------- /shell/mailecho.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/mailecho.sh -------------------------------------------------------------------------------- /shell/mem_hunter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/mem_hunter.sh -------------------------------------------------------------------------------- /shell/monitor_connections.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/monitor_connections.sh -------------------------------------------------------------------------------- /shell/nc_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/nc_benchmark.sh -------------------------------------------------------------------------------- /shell/nc_share_audit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/nc_share_audit.sh -------------------------------------------------------------------------------- /shell/nextcloud_drop_send.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/nextcloud_drop_send.sh -------------------------------------------------------------------------------- /shell/opensearch_template_replica_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/opensearch_template_replica_debug.sh -------------------------------------------------------------------------------- /shell/openssl_cert_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/openssl_cert_check.sh -------------------------------------------------------------------------------- /shell/openssl_check_cert_chain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/openssl_check_cert_chain.sh -------------------------------------------------------------------------------- /shell/package-health-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/package-health-check.sh -------------------------------------------------------------------------------- /shell/pmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/pmon.sh -------------------------------------------------------------------------------- /shell/px.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/px.sh -------------------------------------------------------------------------------- /shell/rcs-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/rcs-backup.sh -------------------------------------------------------------------------------- /shell/report_local_user_logins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/report_local_user_logins.sh -------------------------------------------------------------------------------- /shell/rpm-perm-restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/rpm-perm-restore.sh -------------------------------------------------------------------------------- /shell/rundeck_scm_enabler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/rundeck_scm_enabler.sh -------------------------------------------------------------------------------- /shell/screen-capture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/screen-capture.sh -------------------------------------------------------------------------------- /shell/smtp_tls_mailtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/smtp_tls_mailtest.sh -------------------------------------------------------------------------------- /shell/ssh-reverse-port-forwarder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/ssh-reverse-port-forwarder.sh -------------------------------------------------------------------------------- /shell/ssh-sudo-exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/ssh-sudo-exec.sh -------------------------------------------------------------------------------- /shell/ssl_cert_scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/ssl_cert_scanner.sh -------------------------------------------------------------------------------- /shell/stamp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/stamp.sh -------------------------------------------------------------------------------- /shell/sys-note-german.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/sys-note-german.sh -------------------------------------------------------------------------------- /shell/sys-note.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/sys-note.sh -------------------------------------------------------------------------------- /shell/sysV-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/sysV-init.sh -------------------------------------------------------------------------------- /shell/sysprep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/sysprep.sh -------------------------------------------------------------------------------- /shell/telegram-send.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/telegram-send.sh -------------------------------------------------------------------------------- /shell/twilio-sms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/twilio-sms.sh -------------------------------------------------------------------------------- /shell/vdoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/vdoc.sh -------------------------------------------------------------------------------- /shell/vnc-change-screen-resolution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/vnc-change-screen-resolution.sh -------------------------------------------------------------------------------- /shell/wazuh_geoip_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/shell/wazuh_geoip_update.sh -------------------------------------------------------------------------------- /vcsa/ansible_vcsa_8_backup_sftp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/vcsa/ansible_vcsa_8_backup_sftp.yml -------------------------------------------------------------------------------- /zabbix/zabbix_cert_check_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/zabbix/zabbix_cert_check_simple.sh -------------------------------------------------------------------------------- /zabbix/zabbix_cert_check_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/zabbix/zabbix_cert_check_simple.xml -------------------------------------------------------------------------------- /zabbix/zabbix_check_safesearch_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/zabbix/zabbix_check_safesearch_google.py -------------------------------------------------------------------------------- /zabbix/zabbix_check_website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/zabbix/zabbix_check_website.py -------------------------------------------------------------------------------- /zabbix/zabbix_script_host_maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/zabbix/zabbix_script_host_maintenance.py -------------------------------------------------------------------------------- /zabbix/zabbix_script_host_maintenance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/zabbix/zabbix_script_host_maintenance.sh -------------------------------------------------------------------------------- /zabbix/zabbix_template_quantum_dxi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/zabbix/zabbix_template_quantum_dxi.yaml -------------------------------------------------------------------------------- /zabbix/zabbix_trap_receiver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/zabbix/zabbix_trap_receiver.pl -------------------------------------------------------------------------------- /zimbra/manage_out_of_office_by_calendar_events.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-speedboat/linux.scripts/HEAD/zimbra/manage_out_of_office_by_calendar_events.sh --------------------------------------------------------------------------------