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
-- Function: public.sonata_media_path(bigint, text, text, text) | |
-- DROP FUNCTION public.sonata_media_path(bigint, text, text, text); | |
CREATE OR REPLACE FUNCTION public.sonata_media_path( | |
id bigint, | |
context text, | |
size text, | |
reference text) | |
RETURNS text AS |
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/bash | |
SUBSONIC_DATA=/var/subsonic/db | |
SUBSONIC_NEW_DATA=/media/bigbird/Backups/subsonic/ | |
service subsonic stop | |
sleep 45 | |
rsync -a $SUBSONIC_DATA $SUBSONIC_NEW_DATA | |
service subsonic start |