January 7, 201115 yr I set so uumenu would auto-load from my go file, but it is not doing so. #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c /boot/uumenu/uu
January 7, 201115 yr Don't know if it makes a difference but mine is the other way around: /usr/local/sbin/emhttp & /boot/unmenu/uu cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c Does unmenu load and work normally before a reboot?
January 7, 201115 yr Don't know if it makes a difference but mine is the other way around: /usr/local/sbin/emhttp & Does unmenu load and work normally before a reboot? It should work either way. However, if you have an auto_install script that is not properly exiting, it would not get to the next line, so I'd put the lines in this order: /boot/unmenu/uu cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c
January 7, 201115 yr I set so uumenu would auto-load from my go file, but it is not doing so. #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c /boot/uumenu/uu Are you typing uumenu or unmenu. make sure that you're typing this correctly "unmenu"
January 7, 201115 yr I set so uumenu would auto-load from my go file, but it is not doing so. #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c /boot/uumenu/uu Are you typing uumenu or unmenu. make sure that you're typing this correctly "unmenu" I did not spot the typo... Fix the spelling in the line you added to the "go" file and it should work. /boot/uumenu/uu should be /boot/unmenu/uu
January 7, 201115 yr Author HA, missed it myself. Yep, I'll change the spelling. I'm also curious as to what that packages program is doing and that crazy string of options. Is that packages line needed in my go file?
January 7, 201115 yr I'm also curious as to what that packages program is doing and that crazy string of options. It is finding and invoking any *.auto_install scripts that may be in your /boot/packages directory. One of those scripts will exist for any unMENU package you elect to have automatically re-install on re-boot. Is that packages line needed in my go file? It is added when you first request a package be re-installed on re-boot, so , yes... it is needed, unless you elect to disable the re-install on reboot feature for all your installed add-on packages installed through the unMENU package manager.
Archived
This topic is now archived and is closed to further replies.