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
/** | |
* Immich Album Creator Script | |
* | |
* This script automatically creates albums in Immich based on your folder structure. | |
* | |
* Expected folder structure: | |
* mnt/originals/{year}/{month}/{album-name} | |
* | |
* Examples of valid paths: | |
* - mnt/originals/2023/05/2023-05-01-Birthday |
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
# RouterOS 7.11.2 | |
:global hostnames {"hostname1"; "hostname2"}; | |
:global domain "home"; | |
# Function to check if hostname is in the array | |
:local isInArray do={ | |
:local result false; | |
:foreach item in=$hostnames do={ |