mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-01-11 22:30:44 +01:00
Fails on busybox #153
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @paour on GitHub (Sep 21, 2016).
Busybox systems have an implementation of
trthat doesn't support classes, sotr '[:upper:]' '[:lower:]'doesn't do what the script expects.This stackexchange page lists some alternative implementation suitable for Busybox.
@paour commented on GitHub (Sep 21, 2016):
With this change and a deploy_cert hook to change the certs to DER format, dehydrated works fine on openwrt, thanks!
@lukas2511 commented on GitHub (Sep 29, 2016):
Interesting, I'll have a look at this, would be cool to have support on some embedded devices.
@abelbeck commented on GitHub (Dec 23, 2016):
@paour with our somewhat old BusyBox v1.19.4 this works:
There is a BusyBox configuration option:
@lukas2511 Though using Busybox the
-uoption formktempis not supported, this solves the test for mktemp:Possibly you could use
whichto test for all command dependencies.@lukas2511 commented on GitHub (Jan 29, 2017):
I just pushed a few changes and dehydrated now works fine under OpenWrt after installing bash, openssl-util and diffutils.