Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions acme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2434,6 +2434,10 @@ _read_conf() {
#_savedomainconf key value base64encode
#save to domain.conf
_savedomainconf() {
if [ ! -f "$DOMAIN_CONF" ]; then
touch "$DOMAIN_CONF"
chmod 600 "$DOMAIN_CONF"
fi
_save_conf "$DOMAIN_CONF" "$@"
}

Expand Down
Loading