I looked through the bugs at the given link, but I couldn't find anything comparable to my current problem. It seems to me that the configuration for Transmission should be similar to that of uShare. For ushare, there's a file at /var/hda/apps/ushare/ that contains configuration information. When the service is started, that information is read and the corresponding settings are set. (This is done in /etc/init.d/amahi-ushare)
I may have a workaround for this problem for transmission. There is a service file for transmission at /etc/init.d/amahi-transmission. I added the following line that mirrors another referencing the blocklist. All it does is adds my subnet to the rpc-whitelist so I can use the remote GUI.
Code: Select all
sed --in-place=.bak -e 's/"rpc-whitelist": "127.0.0.1"/"rpc-whitelist": "127.0.0.1,192.168.1.*"/' /var/lib/transmission/.config/transmission-daemon/settings.json I'm not too familiar with linux, but I'm sure this solution is very brittle and will almost certainly break with the next update. Maybe the developers can copy the setup that ushare has?