[Box Backup] Box Backup Explorer

Thimo Kraemer boxbackup@boxbackup.org
Sun, 15 Mar 2009 10:53:19 +0100


Am Sun, 15 Mar 2009 01:56:43 +0100 hat James O'Gorman <james@netinertia.co.uk> geschrieben:

> On 15/3/09 00:45, Chris Wilson wrote:
>> Hi Thimo,
>>
>> On Thu, 5 Mar 2009, Thimo Kraemer wrote:
>>
>>> perhaps someone is interested in a graphical web frontend for Box
>>> Backup: http://www.joonis.de/boxbackup-explorer
>>
>> Thanks, that looks really nice!
>
> It does look very nice, yes. I've already downloaded it and am going to
> try on a machine here.
>
> My only *slight* issue with it is that it looks like it assumes sudo is
> in the PATH rather than hard-coding it like it does for bbackupquery. I
> could be wrong though, my python-fu is weak :-)

You are right. You can change this by modifing line 485

['sudo', script_path] + list(args),
to
['/path/to/sudo', script_path] + list(args),

Thimo