├── .gitignore ├── LICENSE ├── README.md ├── admin ├── org-destroy-empty.sh ├── org-rename.sh ├── org-transfer-all-repos.sh ├── oss-create-fork-master.sh ├── oss-fork.sh ├── repo-prune-orphaned-objects.sh ├── repo-purge-archived.sh ├── repo-remove-sensitive-string.sh ├── repo-transfer.sh ├── rotate-logs.sh ├── send-ghe-diagnostics.sh ├── support-bundle-attach.sh ├── support-bundle-create.sh ├── support-bundle-diagnostics.sh ├── support-bundle-local-attach.sh ├── user-promote.sh └── user-unsuspend.sh ├── ghe.config.template ├── lib-ghe.sh └── reports ├── admin-logins.sh ├── admin-stats.sh ├── audit-fetches.sh ├── audit-range.sh ├── auth-errors.sh ├── auth-http-without-token.sh ├── auth-log.sh ├── auth-worker-exhaustion.sh ├── babeld-errors-sources.sh ├── babeld-errors.sh ├── exceptions.sh ├── git-versions.sh ├── gitauth-errors.sh ├── haproxy-requests.sh ├── hostile-forks.sh ├── org-admins.sh ├── org-find-related-orgs.sh ├── org-find-tiny.sh ├── org-find-unused.sh ├── org-pushers.sh ├── pre-receive-hook-violator.sh ├── rate-limit-violator.sh ├── repo-audit.sh ├── repo-find-unused.sh ├── repo-stats.sh ├── unicorn-errors.sh └── users-find-inactive.sh /.gitignore: -------------------------------------------------------------------------------- 1 | ghe.config 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/README.md -------------------------------------------------------------------------------- /admin/org-destroy-empty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/org-destroy-empty.sh -------------------------------------------------------------------------------- /admin/org-rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/org-rename.sh -------------------------------------------------------------------------------- /admin/org-transfer-all-repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/org-transfer-all-repos.sh -------------------------------------------------------------------------------- /admin/oss-create-fork-master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/oss-create-fork-master.sh -------------------------------------------------------------------------------- /admin/oss-fork.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/oss-fork.sh -------------------------------------------------------------------------------- /admin/repo-prune-orphaned-objects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/repo-prune-orphaned-objects.sh -------------------------------------------------------------------------------- /admin/repo-purge-archived.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/repo-purge-archived.sh -------------------------------------------------------------------------------- /admin/repo-remove-sensitive-string.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/repo-remove-sensitive-string.sh -------------------------------------------------------------------------------- /admin/repo-transfer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/repo-transfer.sh -------------------------------------------------------------------------------- /admin/rotate-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/rotate-logs.sh -------------------------------------------------------------------------------- /admin/send-ghe-diagnostics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/send-ghe-diagnostics.sh -------------------------------------------------------------------------------- /admin/support-bundle-attach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/support-bundle-attach.sh -------------------------------------------------------------------------------- /admin/support-bundle-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/support-bundle-create.sh -------------------------------------------------------------------------------- /admin/support-bundle-diagnostics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/support-bundle-diagnostics.sh -------------------------------------------------------------------------------- /admin/support-bundle-local-attach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/support-bundle-local-attach.sh -------------------------------------------------------------------------------- /admin/user-promote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/user-promote.sh -------------------------------------------------------------------------------- /admin/user-unsuspend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/admin/user-unsuspend.sh -------------------------------------------------------------------------------- /ghe.config.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/ghe.config.template -------------------------------------------------------------------------------- /lib-ghe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/lib-ghe.sh -------------------------------------------------------------------------------- /reports/admin-logins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/admin-logins.sh -------------------------------------------------------------------------------- /reports/admin-stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/admin-stats.sh -------------------------------------------------------------------------------- /reports/audit-fetches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/audit-fetches.sh -------------------------------------------------------------------------------- /reports/audit-range.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/audit-range.sh -------------------------------------------------------------------------------- /reports/auth-errors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/auth-errors.sh -------------------------------------------------------------------------------- /reports/auth-http-without-token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/auth-http-without-token.sh -------------------------------------------------------------------------------- /reports/auth-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/auth-log.sh -------------------------------------------------------------------------------- /reports/auth-worker-exhaustion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/auth-worker-exhaustion.sh -------------------------------------------------------------------------------- /reports/babeld-errors-sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/babeld-errors-sources.sh -------------------------------------------------------------------------------- /reports/babeld-errors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/babeld-errors.sh -------------------------------------------------------------------------------- /reports/exceptions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/exceptions.sh -------------------------------------------------------------------------------- /reports/git-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/git-versions.sh -------------------------------------------------------------------------------- /reports/gitauth-errors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/gitauth-errors.sh -------------------------------------------------------------------------------- /reports/haproxy-requests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/haproxy-requests.sh -------------------------------------------------------------------------------- /reports/hostile-forks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/hostile-forks.sh -------------------------------------------------------------------------------- /reports/org-admins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/org-admins.sh -------------------------------------------------------------------------------- /reports/org-find-related-orgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/org-find-related-orgs.sh -------------------------------------------------------------------------------- /reports/org-find-tiny.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/org-find-tiny.sh -------------------------------------------------------------------------------- /reports/org-find-unused.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/org-find-unused.sh -------------------------------------------------------------------------------- /reports/org-pushers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/org-pushers.sh -------------------------------------------------------------------------------- /reports/pre-receive-hook-violator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/pre-receive-hook-violator.sh -------------------------------------------------------------------------------- /reports/rate-limit-violator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/rate-limit-violator.sh -------------------------------------------------------------------------------- /reports/repo-audit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/repo-audit.sh -------------------------------------------------------------------------------- /reports/repo-find-unused.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/repo-find-unused.sh -------------------------------------------------------------------------------- /reports/repo-stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/repo-stats.sh -------------------------------------------------------------------------------- /reports/unicorn-errors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/unicorn-errors.sh -------------------------------------------------------------------------------- /reports/users-find-inactive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsxschneider/scotty/HEAD/reports/users-find-inactive.sh --------------------------------------------------------------------------------