This file contains 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-09-18 10:16:31,721] [config.py:530] [INFO] |====================================================================================================| | |
[2024-09-18 10:16:31,721] [config.py:534] [INFO] | Connecting to Notifiarr... | | |
[2024-09-18 10:16:31,951] [config.py:545] [INFO] | Notifiarr Connection Successful | | |
[2024-09-18 10:16:31,951] [config.py:565] [INFO] | gotify attribute not found | | |
[2024-09-18 10:17:32,127] [notifiarr.py:28] [DEBUG] | Content: b'<!DOCTYPE html>\n<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->\n<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->\n<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->\n<!--[if gt IE 8]><!--> <html |
This file contains 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
root@Morgoth:/mnt/disks/Docker_AppData_SSD/appdata/sonarr/config/logs# ls -lha "/mnt/user/data/media/Videos/TV Shows/Instinct (2018)/" | |
total 0 | |
drwxrwxrwx 1 nobody users 36 Nov 8 08:07 ./ | |
drwxrwxrwx 1 nobody users 216 Nov 1 09:11 ../ | |
drwxrwxrwx 1 nobody users 0 Nov 8 08:07 Season\ 01/ | |
drwxrwxrwx 1 nobody users 0 Nov 8 08:07 Season\ 02/ | |
drwxrwxrwx 1 nobody users 141 Nov 8 08:07 Season\ 1/ | |
root@Morgoth:/mnt/disks/Docker_AppData_SSD/appdata/sonarr/config/logs# ls -lha "/mnt/user/data/media/Videos/TV Shows/Instinct (2018)/Season 01" | |
total 17G | |
drwxrwxrwx 1 nobody users 0 Nov 8 08:07 ./ |
This file contains 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
2022-11-08 08:07:53.5|Trace|Http|Req: 9029 [POST] /api/v3/command (from 192.168.1.1 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0) | |
2022-11-08 08:07:53.5|Trace|CommandQueueManager|Publishing RenameFiles | |
2022-11-08 08:07:53.5|Trace|CommandQueueManager|Checking if command is queued or started: RenameFiles | |
2022-11-08 08:07:53.5|Trace|CommandQueueManager|Inserting new command: RenameFiles | |
2022-11-08 08:07:53.5|Trace|CommandExecutor|RenameFilesCommand -> RenameEpisodeFileService | |
2022-11-08 08:07:53.5|Trace|CommandQueueManager|Marking command as started: RenameFiles | |
2022-11-08 08:07:53.5|Trace|Http|Res: 9029 [POST] /api/v3/command: 201.Created (6 ms) | |
2022-11-08 08:07:53.5|Debug|Api|[POST] /api/v3/command: 201.Created (6 ms) | |
2022-11-08 08:07:53.5|Trace|EventAggregator|Publishing CommandUpdatedEvent | |
2022-11-08 08:07:53.5|Trace|EventAggregator|CommandUpdatedEvent -> CommandModule |
This file contains 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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
This file contains 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
docker ps -aq > docker_ids.txt | |
while read CONTAINER | |
do | |
docker inspect ${CONTAINER} |grep -v sha |grep Image |awk '{print $2}' |tr -d '",' | |
done < docker_ids.txt > docker_images.txt | |
while read IMAGE | |
do | |
docker pull ${IMAGE} |
This file contains 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/sh | |
# | |
# Determine OS | |
# Detects which OS and, if it is Linux, it will detect which Linux distribution. | |
# The result is then echoed to the shell. | |
OS=$(uname -s) | |
REV=$(uname -r) | |
MACH=$(uname -m) |