I'm not a programmer, but AI chatgpt helps me a lot in creating a plugin for updating channels in enigma 2 boxes. However, I am not satisfied with the plugin, I would prefer if the plugin already existed.
What do I need?
I use DreamBoxEdit (DOBE) to edit the channels as I need and upload them to the box.
I will download the channels from the box to the web server.
wget http://root:password@10.8.0.111/bouqueteditor/tmp/bouquets_backup.tar -O /var/www/html/channels_update/channels_full.tar
There will not be only one channel list per server, but there may be more (e.g. channels_full.tar, channels_films.tar, channels_doku.tar etc).
Is there a plugin that can download the channel list I prefer from the web server?
#!/bin/sh
wget http://10.8.0.222/channels_update/channels_full.tar -O /tmp/channels_full.tar
tar -xvf /tmp/channels_full.tar -C /
init 4 && init 3
The shell script that does what I want looks like this.
This is a simple script and is not bugged in any way. It must be run via ssh/telnet.
Is there a plugin for my requirements?