37 lines
936 B
JavaScript
37 lines
936 B
JavaScript
const State = require('../State')
|
|
|
|
class ServiceDaemonReloadState extends State {
|
|
static get services() {
|
|
return [...super.services, 'output']
|
|
}
|
|
|
|
constructor(host, config) {
|
|
if ( !host.services ) {
|
|
throw new Error(`Cannot apply service state to host ${host.name}: missing service manager API.`)
|
|
}
|
|
super(host, config)
|
|
}
|
|
|
|
async apply() {
|
|
return this._host.services.daemon_reload()
|
|
}
|
|
|
|
async check() {
|
|
return false
|
|
}
|
|
|
|
async reverse() {
|
|
this.output.warn(`Service daemon reload state does not currently support reversal. (Host: ${this._host.name})`)
|
|
}
|
|
|
|
failure_message() {
|
|
return `Unable to reload service daemon on host "${this._host.name}."`
|
|
}
|
|
|
|
check_message() {
|
|
return `The service daemon on host "${this._host.name}" has not been reloaded.`
|
|
}
|
|
}
|
|
|
|
module.exports = exports = ServiceDaemonReloadState
|