Skip to content

Commit

Permalink
Merge branch 'patch-1' of https://github.com/Shawn8901/memories into …
Browse files Browse the repository at this point in the history
…Shawn8901-patch-1
  • Loading branch information
pulsejet committed Oct 31, 2023
2 parents 9f474e3 + b3fa589 commit 040c028
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,16 @@ occ config:system:delete memories.vod.ffmpeg
occ config:system:delete memories.vod.ffprobe
occ maintenance:repair
```

### Getting Memories: Indexing exception: failed to run exiftool on NixOS via automatic indexer

When using the nixos modules system for installation the indexer may fail on execution. In case the error is either `perl not found` or `failed to run exiftool: ...` it might be that the created nextcloud-cron services does not have access to a perl interpreter.

In that case adding perl to the path of the nextcloud-cron service might solve the issue.
It can be archived by adding the following snippet to the configuration.nix

```nix
systemd.services.nextcloud-cron = {
path = [pkgs.perl];
};
```

0 comments on commit 040c028

Please sign in to comment.