07-25-2024, 09:18 AM | #1 |
Junior Member
Posts: 4
Karma: 10
Join Date: Jul 2024
Device: Kobo Clara HD
|
Running script from NickelMenu returns too early
I have NickelMenu 0.5.4 on a Kobo Clara HD with firmware 4.38.23038.
I have the following in my NickelMenu config: Code:
menu_item :main :Dropbox Pull :nickel_wifi :enable chain_success :nickel_wifi :autoconnect_silent chain_success :cmd_spawn :quiet :/mnt/onboard/.adds/rclone/sync.sh chain_success :nickel_misc :rescan_books_full chain_failure :dbg_toast :Failure! Code:
#!/bin/sh # Constants readonly rclone_dir="/mnt/onboard/.adds/rclone" readonly rclone_remote="Dropbox:" readonly book_library="/mnt/onboard/Books" # Start sync qndb -m mwcToast 1000 'Starting Dropbox download...' if ! "$rclone_dir/rclone" \ --ca-cert "$rclone_dir/cacert.pem" \ --log-file "$rclone_dir/rclone.log" \ --ignore-checksum --size-only \ --verbose \ copy "$rclone_remote" "$book_library" then qndb -m mwcToast 8000 "Error in download!" exit 1 fi qndb -m pfmRescanBooksFull I also tried cmd_output but that just seemed to wait the full timeout and then error, before even trying to run the script (this is apparent from reading the log while it's happening) Finally, I also tried not using a script and running rclone directly in the cmd_spawn, but that also exited too soon. Again, sync.sh does run and complete as expected, it is only in the context of NickelMenu that it's going to the next action before it should. |
07-26-2024, 07:34 AM | #2 |
Connoisseur
Posts: 62
Karma: 143000
Join Date: Apr 2022
Device: Kobo Libra 2
|
As you spawn a command, it will immediately return and execute the rescan. So you'd need to do everything inside the script and use qndb.
Also, see here for a working rclone setup: https://www.mobileread.com/forums/sh...9&postcount=11 |
07-26-2024, 10:25 AM | #3 | ||
Junior Member
Posts: 4
Karma: 10
Join Date: Jul 2024
Device: Kobo Clara HD
|
Quote:
Quote:
Code:
retries=60 while [ "$retries" -gt 0 ] do ping -c 1 -w 3 '1.1.1.1' && break sleep 1 retries="$((retries - 1))" done |
||
07-26-2024, 12:59 PM | #4 |
Connoisseur
Posts: 62
Karma: 143000
Join Date: Apr 2022
Device: Kobo Libra 2
|
In that case I'd telnet to your Kobo and run the script manually. It might be you use a keyword the reduced shell does not support.
|
07-29-2024, 08:44 AM | #5 |
Junior Member
Posts: 4
Karma: 10
Join Date: Jul 2024
Device: Kobo Clara HD
|
That’d be extra work when the goal is less. I'd rather haver a leaner install and not need NickelDBus but it's not worth it to have a worse experience because of it.
That doesn’t make sense from a Unix shell perspective. The commands are run with /bin/sh -c, if there were a keyword it didn't support then it wouldn’t work at all. But that’s not the problem. I just checked NickelMenu's code directly. Indeed, with the current implementations of cmd_spawn and cmd_output it doesn't seem feasible to do what I want. Oh well. Thank you for the help. |
07-29-2024, 03:48 PM | #6 |
Connoisseur
Posts: 62
Karma: 143000
Join Date: Apr 2022
Device: Kobo Libra 2
|
Well, something in your script doesn't seem to work. You can just login via telnet once and run the script to see if there's any output. No additional work necessary. Also, Kobo uses a reduced shell so it might very well be that some commands do not exist or behave differently.
|
08-11-2024, 10:00 PM | #7 |
Junior Member
Posts: 4
Karma: 10
Join Date: Jul 2024
Device: Kobo Clara HD
|
No, the problem is not the script. The script works fine, it already did before I made the first post and I said as much from the start. And it’s not related to the shell either, because again, that’s not how that works. The “issue” (in quotes because it’s not a bug, it’s working as designed) is in the caller, I confirmed this in NickelMenu’s code. That’s fine, I’ll just leave with the tradeoff or submit a PR. There’s no point in speculating further, it’s crystal clear now where the limitation lies. It’s not the script.
|
Tags |
kobo, nickelmenu, rclone |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
NickelMenu script for fixing Pocket images | qkqw | Kobo Developer's Corner | 49 | 06-24-2024 04:45 PM |
Battery Statistics Calculator script (NickelMenu) not working in Libra Colour | shyhermit | Kobo Reader | 11 | 05-24-2024 07:12 PM |
Running calibredb from a cron script | rolgiati | Server | 13 | 03-05-2019 05:43 PM |
Error when running Igor's script | gloorfindel | Amazon Kindle | 3 | 11-07-2010 04:14 PM |
Running a script on-demand? | pepak | Sony Reader Dev Corner | 1 | 04-27-2009 12:22 PM |