From 8f33a263ca91f4c5ce4346585828415ec948910e Mon Sep 17 00:00:00 2001 From: Martyn Inglis Date: Mon, 7 Dec 2015 12:04:21 +0000 Subject: [PATCH] Fixed YML errors --- appspec.yml | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/appspec.yml b/appspec.yml index 7c3652352..85b59e491 100644 --- a/appspec.yml +++ b/appspec.yml @@ -1,19 +1,23 @@ ---- -version: 0.0 -os: linux -files: - - source: / +--- +files: + - destination: /home/ubuntu/notifications-admin -hooks: - AfterInstall: - - location: scripts/install_dependencies.sh - timeout: 300 + source: / +hooks: + AfterInstall: + - + location: scripts/install_dependencies.sh runas: root - ApplicationStart: - - location: scripts/aws_start_app.sh timeout: 300 + ApplicationStart: + - + location: scripts/aws_start_app.sh runas: ubuntu - ApplicationStop: - - location: scripts/aws_stop_app.sh timeout: 300 - runas: ubuntu + ApplicationStop: + - + location: scripts/aws_stop_app.sh + runas: ubuntu + timeout: 300 +os: linux +version: 0.0