-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappspec.yml
More file actions
26 lines (26 loc) · 614 Bytes
/
appspec.yml
File metadata and controls
26 lines (26 loc) · 614 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
version: 0.0
os: linux
files:
- source: /aws
destination: /usr/local/codedeployresources
hooks:
ApplicationStop:
- location: aws/scripts/application-stop.sh
timeout: 300
runas: root
BeforeInstall:
- location: aws/scripts/before-install.sh
timeout: 300
runas: root
AfterInstall:
- location: aws/scripts/after-install.sh
timeout: 300
runas: root
ApplicationStart:
- location: aws/scripts/application-start.sh
timeout: 300
runas: root
ValidateService:
- location: aws/scripts/validate-service.sh
timeout: 300
runas: root