0.1.0-beta.0 • Published 5 years ago

@fullstax/apache-restart v0.1.0-beta.0

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

apache-restart

Restart the local apache webserver daemon.

This is a UNTESTED beta release! Please use with caution!

Feel free to open github issues and help with the implmentation!

Setup

npm install apache-restart

Usage cli

apache-restart --hard --verbose

Usage node

const restartApache = require('apache-restart');

try {
	await restartApache();
} catch(err) {
	console.error('Error restarting apache:', err);
}