This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/bash | |
| echo '> Begin Cleanup script' | |
| echo '> Cleaning all audit logs ...' | |
| sudo service rsyslog stop | |
| if [ -f /var/log/audit/audit.log ]; then | |
| cat /dev/null > /var/log/audit/audit.log | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "editor.formatOnSave": true, | |
| "editor.inlineSuggest.enabled": true, | |
| "editor.minimap.enabled": false, | |
| "editor.suggestSelection": "first", | |
| "explorer.confirmDragAndDrop": false, | |
| "files.exclude": { | |
| "**/.classpath": true, | |
| "**/.project": true, | |
| "**/.settings": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # REQUIREMENTS: | |
| # - curl | |
| # - jq | |
| # Required environment variables: | |
| # CF_TOKEN: ------------ Cloudflare API token | |
| # CF_ZONE: ------------- Cloudflare zone ID | |
| # CF_ENTRY: ------------ Cloudflare DNS record ID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2024-03-05T22:40:19-05:00 fail: Ombi.ErrorHandlingMiddleware[0] | |
| 2024-03-05T22:40:19-05:00 Something bad happened, ErrorMiddleware caught this | |
| 2024-03-05T22:40:19-05:00 System.Threading.Tasks.TaskCanceledException: The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing. | |
| 2024-03-05T22:40:19-05:00 ---> System.TimeoutException: A task was canceled. | |
| 2024-03-05T22:40:19-05:00 ---> System.Threading.Tasks.TaskCanceledException: A task was canceled. | |
| 2024-03-05T22:40:19-05:00 at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellationAsync(CancellationToken cancellationToken) | |
| 2024-03-05T22:40:19-05:00 at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) | |
| 2024-03-05T22:40:19-05:00 at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, |
OlderNewer