blob: 90a7f5501eed8d24e687a7f03b97fe800207d431 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
version: 0.0
os: linux
files:
- source: /
destination: /home/ec2-user/dep-dir
- source: /autoaid.service
destination: /etc/systemd/system/
hooks:
AfterInstall:
- location: scripts/install_dependencies.sh
timeout: 300
runas: root
ApplicationStart:
- location: scripts/start_application.sh
timeout: 300
runas: root
ApplicationStop:
- location: scripts/stop_application.sh
timeout: 300
runas: root
|