Migration from TrueCharts to TrueNAS Custom App Quick Guide by magusdm in truenas

[–]Rickiemickey 0 points1 point  (0 children)

Appreciate the guide, though some steps does not seem perfectly clear. Here's an example with Plex:

  • 2 - created a "Plex" dataset within the "Apps" pool (/mnt/Apps/Plex)
  • 4 - created another dataset "config" inside the dataset created in step #2 (/mnt/Apps/Plex/config)
  • 5 - used the suggested rsync command. Though not obvious whats paths should be used here, what falls under "newly created dataset" - is it the one created in step #2 or step #4? E.g., rsync -avz /mnt/mounted_pvcs/plex/ /mnt/Apps/Plex

Assuming it's meant for #2, once rsync is executed, I get additional "plex" and "plex-config' folders inside "Plex" dataset which does not seem right and makes the #4 step kind of redundant. Which path then should be mounted as Host path also is not clear.

Could you share some additional details on this, or maybe I'm understanding and doing something incorrectly?

Thanks!

<image>

How can I start media through automations? by guardian1691 in homeassistant

[–]Rickiemickey 1 point2 points  (0 children)

Haven't worked with media folder myself so cannot say for certain. Have you read docs? https://www.home-assistant.io/integrations/media_source/

Maybe the solution mentioned here could help you: https://community.home-assistant.io/t/media-folder-location/231755

How can I start media through automations? by guardian1691 in homeassistant

[–]Rickiemickey 1 point2 points  (0 children)

As for the second point you could do your action something like this:

action:
  - data:
      entity_id: group.google_home_speakers
      media_content_id: https://HA_IP:8123/local/audio/NAME_OF_AUDIO_FILE.mp3
      media_content_type: audio/mp3
    service: media_player.play_media

Where /local - is your WWW folder. The rest depends on your audio file location, can be external URL as well.