Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
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
Hide whitespace changes
Inline
Side-by-side
acme.sh
View file @
b8cc10ab
...
...
@@ -4974,18 +4974,14 @@ list() {
if [ "$_raw" ]; then
printf "%s\n" "Main_Domain${_sep}KeyLength${_sep}SAN_Domains${_sep}Created${_sep}Renew"
for di in "${CERT_HOME}"/*.*/; do
if ! [ -d "$di" ]; then
_debug "Not directory, skip: $di"
continue
fi
d=$(basename "$di")
_debug d "$d"
(
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)
fi
_initpath "$d" "$_isEcc
"
DOMAIN_CONF="$di/$d.conf
"
if [ -f "$DOMAIN_CONF" ]; then
. "$DOMAIN_CONF"
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