19 lines
246 B
Makefile
19 lines
246 B
Makefile
SHELL := /bin/bash
|
|
|
|
id:
|
|
echo $deploymentId
|
|
|
|
status:
|
|
systemctl status deployer-$host
|
|
|
|
log:
|
|
journalctl -u deployer-$host
|
|
|
|
cleanlogs:
|
|
rm -rf $serviceDir/logs/*
|
|
|
|
buildlog:
|
|
less +F build.log
|
|
|
|
stop:
|
|
systemctl stop deployer-$host
|