-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
22 lines (18 loc) · 890 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const path = require('path')
const debug = require('debug')('win-acme-dns-ovh:index')
// When the node process is executed in the context of wacs.exe, process.cwd() returns the directory where wacs.exe is
// located and dotenv's default path is `path.resolve(process.cwd(), '.env')`. We force it here.
require('dotenv').config({ path: path.resolve(__dirname, '.env') })
const createChallenge = require('./lib/create-challenge')
const deleteChallenge = require('./lib/delete-challenge')
const action = process.argv[2]
const identifier = process.argv[3]
const recordName = process.argv[4]
const token = process.argv[5]
if (action === 'create') {
debug(`Authenticating ${identifier} via DNS-01 challenge...`)
createChallenge(identifier, recordName, token)
} else if (action === 'delete') {
debug(`Deleting challenge for ${identifier}...`)
deleteChallenge(identifier, recordName)
}