Search found 2 matches

by wsoet
August 25th, 2012, 1:42 am
Forum: Post-Processing Scripts
Topic: Synology Reindex script UPNP (synoindex)
Replies: 4
Views: 18953

Re: Synology Reindex script UPNP (synoindex)

I use this index script on my synology #!/bin/ash fullpath=$1 ## change owner and usergroep /bin/chown -R admin:users "$fullpath" ## Remove index if already exist /usr/syno/bin/synoindex -D "$fullpath" ## Add index to targetfolder /usr/syno/bin/synoindex -A "$fullpath" ...
by wsoet
August 14th, 2011, 5:59 am
Forum: Post-Processing Scripts
Topic: [LINUX/BASH]re-index script with synology DSM 3.0
Replies: 2
Views: 10915

Re: [LINUX/BASH]re-index script with synology DSM 3.0

I use this small script. Maybe it helpfull for you #! /bin/ash ## Switches below are only for reference purpose. $1 is the one we need fullpath=$1 nzbfile=$2 jobname=$3 reportnumber=$4 category=$5 newsgroup=$6 ## change owner and usergroep /bin/chown -R admin:users "$fullpath" ## Remove in...