Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
b8cc10ab
Unverified
Commit
b8cc10ab
authored
Sep 28, 2019
by
neil
Committed by
GitHub
Sep 28, 2019
Browse files
Merge pull request #2512 from Neilpang/dev
fix list() performance
parents
5244097e
be0df07d
Changes
1
Show whitespace changes
Inline
Side-by-side
acme.sh
View file @
b8cc10ab
...
@@ -4974,18 +4974,14 @@ list() {
...
@@ -4974,18 +4974,14 @@ list() {
if [ "$_raw" ]; then
if [ "$_raw" ]; then
printf "%s\n" "Main_Domain${_sep}KeyLength${_sep}SAN_Domains${_sep}Created${_sep}Renew"
printf "%s\n" "Main_Domain${_sep}KeyLength${_sep}SAN_Domains${_sep}Created${_sep}Renew"
for di in "${CERT_HOME}"/*.*/; do
for di in "${CERT_HOME}"/*.*/; do
if ! [ -d "$di" ]; then
_debug "Not directory, skip: $di"
continue
fi
d=$(basename "$di")
d=$(basename "$di")
_debug d "$d"
_debug d "$d"
(
(
if _endswith "$d" "$ECC_SUFFIX"; then
if _endswith "$d" "$ECC_SUFFIX"; then
_isEcc=
$(echo "$d" | cut -d "$ECC_SEP" -f 2)
_isEcc=
"ecc"
d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
fi
fi
_initpath "$d" "$_isEcc
"
DOMAIN_CONF="$di/$d.conf
"
if [ -f "$DOMAIN_CONF" ]; then
if [ -f "$DOMAIN_CONF" ]; then
. "$DOMAIN_CONF"
. "$DOMAIN_CONF"
printf "%s\n" "$Le_Domain${_sep}\"$Le_Keylength\"${_sep}$Le_Alt${_sep}$Le_CertCreateTimeStr${_sep}$Le_NextRenewTimeStr"
printf "%s\n" "$Le_Domain${_sep}\"$Le_Keylength\"${_sep}$Le_Alt${_sep}$Le_CertCreateTimeStr${_sep}$Le_NextRenewTimeStr"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment