File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -375,7 +375,6 @@ install:
375
375
cmds :
376
376
- |
377
377
echo -e "{{.ARROW}}Installing New Relic PHP Agent package{{.GRAY}}"
378
- sudo DEBIAN_FRONTEND=noninteractive apt-get install newrelic-php5 -y -qq
379
378
silent : true
380
379
381
380
install_tarball :
@@ -406,12 +405,11 @@ install:
406
405
AGENT_TARBALL="$AGENT.tar.gz"
407
406
# Lack of '/' is important. See above comment where $RELEASE_URL is
408
407
# defined. An extraneous '/' here treats the URL as an HTML doc.
409
- curl -s "$RELEASE_URL$AGENT_TARBALL" -o " $AGENT_TARBALL"
408
+ curl -s -O "$RELEASE_URL $AGENT_TARBALL"
410
409
gzip -dc "$AGENT_TARBALL" | tar xf -
411
- pushd "$AGENT" > /dev/null
410
+ cd "$AGENT"
412
411
echo -e "{{.WHITE}}Running PHP Agent installer{{.GRAY}}"
413
412
NR_INSTALL_USE_CP_NOT_LN=1 NR_INSTALL_SILENT=true NR_INSTALL_KEY="{{.NEW_RELIC_LICENSE_KEY}}" ./newrelic-install install
414
- popd > /dev/null
415
413
416
414
configure :
417
415
cmds :
You can’t perform that action at this time.
0 commit comments