forked from jebst89/drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appspec.yml
40 lines (40 loc) · 797 Bytes
/
appspec.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
files:
-
destination: /var/www/html/
source: content/
hooks:
AfterInstall:
-
location: scripts/changeperms.sh
timeout: 180
-
location: scripts/copysettings.sh
timeout: 120
-
location: scripts/install_new_relic.sh
runas: root
timeout: 180
ApplicationStart:
-
location: scripts/start_httpd.sh
timeout: 120
-
location: scripts/register_with_elb.sh
timeout: 120
ApplicationStop:
-
location: scripts/deregister_from_elb.sh
timeout: 120
-
location: scripts/stop_httpd.sh
timeout: 120
BeforeInstall:
-
location: scripts/rmoldsite.sh
timeout: 120
ValidateService:
-
location: scripts/validate.sh
os: linux
version: 0.0