Regular Expressions 101

Save & Share

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
gm

Test String

Code Generator

Generated Code

$re = '/[\w\-]+\.[\w\-]+\.(?>phl1|aus2)/m'; $str = 'simple 10-Mar-2020 07:23:14 Build Deployment of \'commerce-fds-131\' on \'Production\' started building on agent cdp-bamboora-001.tnt31-zone1.phl1 simple 10-Mar-2020 07:23:14 Remote agent on host cdp-bamboora-001.tnt31-zone1.phl1 simple 10-Mar-2020 07:23:14 Build working directory is /root/bamboo-agent-home/xml-data/build-dir/1114114-95027212 simple 10-Mar-2020 07:23:14 Executing build Deployment of \'commerce-fds-131\' on \'Production\' simple 10-Mar-2020 07:23:14 Starting task \'Clean up\' of type \'com.atlassian.bamboo.plugins.bamboo-artifact-downloader-plugin:cleanWorkingDirectoryTask\' simple 10-Mar-2020 07:23:14 Cleaning working directory \'/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212\' simple 10-Mar-2020 07:23:14 Finished task \'Clean up\' with result: Success simple 10-Mar-2020 07:23:14 Starting task \'Remote Clean up (ecprd-fds-3.tnt2-zone2.phl1)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:sshtask\' simple 10-Mar-2020 07:23:14 Connecting to ecprd-fds-3.tnt2-zone2.phl1 on port: 22 simple 10-Mar-2020 07:23:14 Executing [ simple 10-Mar-2020 07:23:14 cd dists simple 10-Mar-2020 07:23:14 simple 10-Mar-2020 07:23:14 pwd simple 10-Mar-2020 07:23:14 simple 10-Mar-2020 07:23:14 rm -f *.deb simple 10-Mar-2020 07:23:14 ] build 10-Mar-2020 07:23:14 /home/bamboot2/dists simple 10-Mar-2020 07:23:14 [ simple 10-Mar-2020 07:23:14 cd dists simple 10-Mar-2020 07:23:14 simple 10-Mar-2020 07:23:14 pwd simple 10-Mar-2020 07:23:14 simple 10-Mar-2020 07:23:14 rm -f *.deb simple 10-Mar-2020 07:23:14 ] has finished. simple 10-Mar-2020 07:23:14 Result: exit code = 0 simple 10-Mar-2020 07:23:14 Finished task \'Remote Clean up (ecprd-fds-3.tnt2-zone2.phl1)\' with result: Success simple 10-Mar-2020 07:23:14 Starting task \'Remote Clean up (ecprd-fds-4.tnt2-zone2.phl1)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:sshtask\' simple 10-Mar-2020 07:23:14 Connecting to ecprd-fds-4.tnt2-zone2.phl1 on port: 22 simple 10-Mar-2020 07:23:14 Executing [ simple 10-Mar-2020 07:23:14 cd dists simple 10-Mar-2020 07:23:14 simple 10-Mar-2020 07:23:14 pwd simple 10-Mar-2020 07:23:14 simple 10-Mar-2020 07:23:14 rm -f *.deb simple 10-Mar-2020 07:23:14 ] build 10-Mar-2020 07:23:14 /home/bamboot2/dists simple 10-Mar-2020 07:23:14 [ simple 10-Mar-2020 07:23:14 cd dists simple 10-Mar-2020 07:23:14 simple 10-Mar-2020 07:23:14 pwd simple 10-Mar-2020 07:23:14 simple 10-Mar-2020 07:23:14 rm -f *.deb simple 10-Mar-2020 07:23:14 ] has finished. simple 10-Mar-2020 07:23:14 Result: exit code = 0 simple 10-Mar-2020 07:23:14 Finished task \'Remote Clean up (ecprd-fds-4.tnt2-zone2.phl1)\' with result: Success simple 10-Mar-2020 07:23:14 Starting task \'Remote Clean up (ecprd-fds-3.tnt2-zone1.aus2)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:sshtask\' simple 10-Mar-2020 07:23:14 Connecting to ecprd-fds-3.tnt2-zone1.aus2 on port: 22 simple 10-Mar-2020 07:23:15 Executing [ simple 10-Mar-2020 07:23:15 cd dists simple 10-Mar-2020 07:23:15 simple 10-Mar-2020 07:23:15 pwd simple 10-Mar-2020 07:23:15 simple 10-Mar-2020 07:23:15 rm -f *.deb simple 10-Mar-2020 07:23:15 ] build 10-Mar-2020 07:23:15 /home/bamboot2/dists simple 10-Mar-2020 07:23:15 [ simple 10-Mar-2020 07:23:15 cd dists simple 10-Mar-2020 07:23:15 simple 10-Mar-2020 07:23:15 pwd simple 10-Mar-2020 07:23:15 simple 10-Mar-2020 07:23:15 rm -f *.deb simple 10-Mar-2020 07:23:15 ] has finished. simple 10-Mar-2020 07:23:15 Result: exit code = 0 simple 10-Mar-2020 07:23:15 Finished task \'Remote Clean up (ecprd-fds-3.tnt2-zone1.aus2)\' with result: Success simple 10-Mar-2020 07:23:15 Starting task \'Remote Clean up (ecprd-fds-4.tnt2-zone1.aus2)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:sshtask\' simple 10-Mar-2020 07:23:15 Connecting to ecprd-fds-4.tnt2-zone1.aus2 on port: 22 simple 10-Mar-2020 07:23:16 Executing [ simple 10-Mar-2020 07:23:16 cd dists simple 10-Mar-2020 07:23:16 simple 10-Mar-2020 07:23:16 pwd simple 10-Mar-2020 07:23:16 simple 10-Mar-2020 07:23:16 rm -f *.deb simple 10-Mar-2020 07:23:16 ] build 10-Mar-2020 07:23:16 /home/bamboot2/dists simple 10-Mar-2020 07:23:16 [ simple 10-Mar-2020 07:23:16 cd dists simple 10-Mar-2020 07:23:16 simple 10-Mar-2020 07:23:16 pwd simple 10-Mar-2020 07:23:16 simple 10-Mar-2020 07:23:16 rm -f *.deb simple 10-Mar-2020 07:23:16 ] has finished. simple 10-Mar-2020 07:23:16 Result: exit code = 0 simple 10-Mar-2020 07:23:16 Finished task \'Remote Clean up (ecprd-fds-4.tnt2-zone1.aus2)\' with result: Success simple 10-Mar-2020 07:23:16 Starting task \'Download release contents\' of type \'com.atlassian.bamboo.plugins.bamboo-artifact-downloader-plugin:artifactdownloadertask\' simple 10-Mar-2020 07:23:16 Preparing to download plan result CT-CFD-140 artifact: Shared artifact: [fulfillment-dashboard-deb], pattern: [fulfillment-dashboard.deb] anchored at: [fulfillment-dashboard/build/dist] simple 10-Mar-2020 07:23:17 Artifact [fulfillment-dashboard-deb] downloaded successfully in 673.2 ms to working directory simple 10-Mar-2020 07:23:17 Finished task \'Download release contents\' with result: Success command 10-Mar-2020 07:23:17 Substituting variable: ${bamboo.OPS_HOST} with ops.tnt1-zone1.aus2 command 10-Mar-2020 07:23:17 Substituting variable: ${bamboo.OPS_PATH} with /opt/deploy command 10-Mar-2020 07:23:17 Substituting variable: ${bamboo.OPS_PATH} with /opt/deploy command 10-Mar-2020 07:23:17 Substituting variable: ${bamboo.OPS_USER} with bamboot2 simple 10-Mar-2020 07:23:17 Starting task \'create and Clean\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:sshtask\' simple 10-Mar-2020 07:23:17 Connecting to ops.tnt1-zone1.aus2 on port: 22 simple 10-Mar-2020 07:23:17 Executing [ simple 10-Mar-2020 07:23:17 rm -rf /opt/deploy/tenant2/Fulfilment-dashboard/prod simple 10-Mar-2020 07:23:17 simple 10-Mar-2020 07:23:17 mkdir -p /opt/deploy/tenant2/Fulfilment-dashboard/prod simple 10-Mar-2020 07:23:17 ] simple 10-Mar-2020 07:23:17 [ simple 10-Mar-2020 07:23:17 rm -rf /opt/deploy/tenant2/Fulfilment-dashboard/prod simple 10-Mar-2020 07:23:17 simple 10-Mar-2020 07:23:17 mkdir -p /opt/deploy/tenant2/Fulfilment-dashboard/prod simple 10-Mar-2020 07:23:17 ] has finished. simple 10-Mar-2020 07:23:17 Result: exit code = 0 simple 10-Mar-2020 07:23:17 Finished task \'create and Clean\' with result: Success command 10-Mar-2020 07:23:17 Substituting variable: ${bamboo.OPS_PATH} with /opt/deploy command 10-Mar-2020 07:23:17 Substituting variable: ${bamboo.OPS_HOST} with ops.tnt1-zone1.aus2 command 10-Mar-2020 07:23:17 Substituting variable: ${bamboo.OPS_USER} with bamboot2 simple 10-Mar-2020 07:23:17 Starting task \'Ops Copy up\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:scptask\' simple 10-Mar-2020 07:23:17 Connecting to ops.tnt1-zone1.aus2 on port: 22 simple 10-Mar-2020 07:23:17 Uploading \'/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212/fulfillment-dashboard.deb\' to \'/opt/deploy/tenant2/Fulfilment-dashboard/prod\'... simple 10-Mar-2020 07:23:18 \'/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212/fulfillment-dashboard.deb\' was uploaded successfully. simple 10-Mar-2020 07:23:18 Finished task \'Ops Copy up\' with result: Success simple 10-Mar-2020 07:23:18 Starting task \'Artifact (ecprd-fds-3.tnt2-zone2.phl1)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:scptask\' simple 10-Mar-2020 07:23:18 Connecting to ecprd-fds-3.tnt2-zone2.phl1 on port: 22 simple 10-Mar-2020 07:23:18 Uploading \'/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212/fulfillment-dashboard.deb\' to \'/home/bamboot2/dists/\'... simple 10-Mar-2020 07:23:19 \'/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212/fulfillment-dashboard.deb\' was uploaded successfully. simple 10-Mar-2020 07:23:19 Finished task \'Artifact (ecprd-fds-3.tnt2-zone2.phl1)\' with result: Success simple 10-Mar-2020 07:23:19 Starting task \'Artifact (ecprd-fds-4.tnt2-zone2.phl1)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:scptask\' simple 10-Mar-2020 07:23:19 Connecting to ecprd-fds-4.tnt2-zone2.phl1 on port: 22 simple 10-Mar-2020 07:23:19 Uploading \'/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212/fulfillment-dashboard.deb\' to \'/home/bamboot2/dists/\'... simple 10-Mar-2020 07:23:19 \'/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212/fulfillment-dashboard.deb\' was uploaded successfully. simple 10-Mar-2020 07:23:19 Finished task \'Artifact (ecprd-fds-4.tnt2-zone2.phl1)\' with result: Success simple 10-Mar-2020 07:23:19 Starting task \'Artifact (ecprd-fds-3.tnt2-zone1.aus2)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:scptask\' simple 10-Mar-2020 07:23:19 Connecting to ecprd-fds-3.tnt2-zone1.aus2 on port: 22 simple 10-Mar-2020 07:23:20 Uploading \'/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212/fulfillment-dashboard.deb\' to \'/home/bamboot2/dists\'... simple 10-Mar-2020 07:23:21 \'/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212/fulfillment-dashboard.deb\' was uploaded successfully. simple 10-Mar-2020 07:23:21 Finished task \'Artifact (ecprd-fds-3.tnt2-zone1.aus2)\' with result: Success simple 10-Mar-2020 07:23:21 Starting task \'Artifact (ecprd-fds-4.tnt2-zone1.aus2)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:scptask\' simple 10-Mar-2020 07:23:21 Connecting to ecprd-fds-4.tnt2-zone1.aus2 on port: 22 simple 10-Mar-2020 07:23:21 Uploading \'/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212/fulfillment-dashboard.deb\' to \'/home/bamboot2/dists\'... simple 10-Mar-2020 07:23:22 \'/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212/fulfillment-dashboard.deb\' was uploaded successfully. simple 10-Mar-2020 07:23:22 Finished task \'Artifact (ecprd-fds-4.tnt2-zone1.aus2)\' with result: Success simple 10-Mar-2020 07:23:22 Starting task \'Install (ecprd-fds-3.tnt2-zone2.phl1)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:sshtask\' simple 10-Mar-2020 07:23:22 Connecting to ecprd-fds-3.tnt2-zone2.phl1 on port: 22 simple 10-Mar-2020 07:23:22 Executing [ simple 10-Mar-2020 07:23:22 sudo rm -f /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:23:22 simple 10-Mar-2020 07:23:22 md5sum /home/bamboot2/dists/fulfillment-dashboard.deb simple 10-Mar-2020 07:23:22 simple 10-Mar-2020 07:23:22 sudo cp /home/bamboot2/dists/fulfillment-dashboard.deb /root simple 10-Mar-2020 07:23:22 simple 10-Mar-2020 07:23:22 sudo chown root:root /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:23:22 simple 10-Mar-2020 07:23:22 sudo rm -rf /opt/usr/apps/fulfillment-dashboard simple 10-Mar-2020 07:23:22 simple 10-Mar-2020 07:23:22 sudo -t -i chef-client -o "role[fulfillment-dashboard]" simple 10-Mar-2020 07:23:22 ] build 10-Mar-2020 07:23:22 3aef286ebae1ebe94d0bd7cef6820b3c /home/bamboot2/dists/fulfillment-dashboard.deb build 10-Mar-2020 07:23:24 [2020-03-10T07:23:24-07:00] INFO: Forking chef instance to converge... build 10-Mar-2020 07:23:24 [2020-03-10T07:23:24-07:00] INFO: *** Chef 12.17.44 *** build 10-Mar-2020 07:23:24 [2020-03-10T07:23:24-07:00] INFO: Platform: x86_64-linux build 10-Mar-2020 07:23:24 [2020-03-10T07:23:24-07:00] INFO: Chef-client pid: 5783 build 10-Mar-2020 07:23:38 [2020-03-10T07:23:38-07:00] WARN: Run List override has been provided. build 10-Mar-2020 07:23:38 [2020-03-10T07:23:38-07:00] WARN: Original Run List: [role[fulfillment-dashboard]] build 10-Mar-2020 07:23:38 [2020-03-10T07:23:38-07:00] WARN: Overridden Run List: [role[fulfillment-dashboard]] build 10-Mar-2020 07:23:38 [2020-03-10T07:23:38-07:00] INFO: Run List is [role[fulfillment-dashboard]] build 10-Mar-2020 07:23:38 [2020-03-10T07:23:38-07:00] INFO: Run List expands to [infra-tools::set_linux_keepalive, infra-tools::create_app_directories, security, configuration, infra-tools::linux_limits_conf, infra-tools::linux_sysctl_conf, nodejs::nodejs_from_binary, fulfillment-dashboard::fulfillment_dashboard_config, security::promotion_maker_ldap_config, security::fulfillment_dashboard_ldap_config, splunk::forwarder-config, fulfillment-dashboard::install_fd] build 10-Mar-2020 07:23:38 [2020-03-10T07:23:38-07:00] INFO: Starting Chef Run for ecprd-fds-3.tnt2-zone2.phl1 build 10-Mar-2020 07:23:38 [2020-03-10T07:23:38-07:00] INFO: Running start handlers build 10-Mar-2020 07:23:38 [2020-03-10T07:23:38-07:00] INFO: Start handlers complete. build 10-Mar-2020 07:23:38 [2020-03-10T07:23:38-07:00] INFO: HTTP Request Returned 404 Not Found: build 10-Mar-2020 07:23:38 [2020-03-10T07:23:38-07:00] INFO: HTTP Request Returned 404 Not Found: build 10-Mar-2020 07:23:38 [2020-03-10T07:23:38-07:00] INFO: Error while reporting run start to Data Collector. URL: https://chef-server1-t2.tnt1-zone2.phl1/organizations/snapfish/data-collector Exception: 404 -- 404 "Not Found" (This is normal if you do not have Chef Automate) build 10-Mar-2020 07:23:39 [2020-03-10T07:23:39-07:00] INFO: Loading cookbooks [infra-tools@0.1.2, security@0.0.3, configuration@0.1.0, nodejs@3.0.2, yum-epel@2.1.1, compat_resource@12.16.3, build-essential@1.3.4, ark@2.2.1, windows@2.1.1, ohai@4.2.3, seven_zip@2.0.2, apt@5.1.0, homebrew@3.0.0, fulfillment-dashboard@0.0.1, splunk@0.1.0] build 10-Mar-2020 07:23:39 [2020-03-10T07:23:39-07:00] INFO: Skipping removal of obsoleted cookbooks from the cache build 10-Mar-2020 07:23:39 [2020-03-10T07:23:39-07:00] WARN: Chef::Provider::AptRepository already exists! Cannot create deprecation class for LWRP provider apt_repository from cookbook apt build 10-Mar-2020 07:23:39 [2020-03-10T07:23:39-07:00] WARN: AptRepository already exists! Deprecation class overwrites Custom resource apt_repository from cookbook apt build 10-Mar-2020 07:23:39 .....[ Security Owner ] :: root.............. build 10-Mar-2020 07:23:39 .....[ Security Group ] :: root.............. build 10-Mar-2020 07:23:39 .....[ Configuration Owner ] :: root.............. build 10-Mar-2020 07:23:39 .....[ Configuration Group ] :: root.............. build 10-Mar-2020 07:23:39 [2020-03-10T07:23:39-07:00] WARN: Cloning resource attributes for directory[configuration_directory] from prior resource build 10-Mar-2020 07:23:39 Previous directory[configuration_directory]: /var/chef/cache/cookbooks/configuration/recipes/default.rb:23:in `from_file\' build 10-Mar-2020 07:23:39 Current directory[configuration_directory]: /var/chef/cache/cookbooks/fulfillment-dashboard/recipes/fulfillment_dashboard_config.rb:14:in `from_file\' (CHEF-3694)/var/chef/cache/cookbooks/fulfillment-dashboard/recipes/fulfillment_dashboard_config.rb:14:in `from_file\'. build 10-Mar-2020 07:23:39 Please see https://docs.chef.io/deprecations_resource_cloning.html for further details and information on how to correct this problem. at /opt/chef/embedded/lib/ruby/gems/2.3.0/gems/chef-12.17.44/lib/chef/event_dispatch/dispatcher.rb:43:in `call\' build 10-Mar-2020 07:23:39 [2020-03-10T07:23:39-07:00] WARN: Cloning resource attributes for directory[security_directory] from prior resource build 10-Mar-2020 07:23:39 Previous directory[security_directory]: /var/chef/cache/cookbooks/security/recipes/default.rb:150:in `from_file\' build 10-Mar-2020 07:23:39 Current directory[security_directory]: /var/chef/cache/cookbooks/security/recipes/promotion_maker_ldap_config.rb:17:in `from_file\' (CHEF-3694)/var/chef/cache/cookbooks/security/recipes/promotion_maker_ldap_config.rb:17:in `from_file\'. build 10-Mar-2020 07:23:39 Please see https://docs.chef.io/deprecations_resource_cloning.html for further details and information on how to correct this problem. at /opt/chef/embedded/lib/ruby/gems/2.3.0/gems/chef-12.17.44/lib/chef/event_dispatch/dispatcher.rb:43:in `call\' build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing bash[set-linux-keepalive] action run (infra-tools::set_linux_keepalive line 10) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: bash[set-linux-keepalive] ran successfully build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing directory[/opt/usr] action create (infra-tools::create_app_directories line 13) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing directory[/opt/usr/data] action create (infra-tools::create_app_directories line 20) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing directory[/opt/usr/apps] action create (infra-tools::create_app_directories line 27) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[encrypted_data_bag_secret] action create (security::default line 61) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing ruby_block[load_encrypted_data] action run (security::default line 128) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: ruby_block[load_encrypted_data] called build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing directory[security_directory] action create (security::default line 150) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing directory[oauth_key_base] action create (security::default line 158) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing directory[oauth_key] action create (security::default line 167) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[ecommerce_snapfish_com.key] action create (security::default line 175) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[hpca2ssG2_ns.crt] action create (security::default line 184) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[SCA.crt] action create (security::default line 193) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[Snapfish_Authority.crt] action create (security::default line 202) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[cte-ext_austin_hp_com.crt] action create (security::default line 211) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[verisign1.crt] action create (security::default line 220) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[verisign2.crt] action create (security::default line 229) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing directory[/opt/usr/security/oauth-keys/production] action create (security::default line 243) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[amz_v1_public.key] action create (security::default line 252) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[sf_v1a_public.key] action create (security::default line 261) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[cvs_v1_public.key] action create (security::default line 270) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[wg_v1a_public.key] action create (security::default line 279) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[imr_v1_public.key] action create (security::default line 288) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[wm_v1a_public.key] action create (security::default line 297) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing cookbook_file[puc-validate.crt] action create (security::default line 306) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing template[/opt/usr/security/cte.properties] action create (security::default line 398) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing template[/opt/usr/security/reference.conf] action create (security::default line 411) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing bash[generate_keystore] action run (security::default line 482) build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: bash[generate_keystore] ran successfully build 10-Mar-2020 07:23:40 [2020-03-10T07:23:40-07:00] INFO: Processing bash[add_certs_to_truststore] action run (security::default line 524) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: bash[add_certs_to_truststore] ran successfully build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing directory[configuration_directory] action create (configuration::default line 23) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing template[/etc/security/limits.conf] action create (infra-tools::linux_limits_conf line 9) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing template[/etc/sysctl.conf] action create (infra-tools::linux_sysctl_conf line 9) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing bash[run-sysctl] action run (infra-tools::linux_sysctl_conf line 16) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: bash[run-sysctl] ran successfully build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing ark[nodejs-binary] action install (nodejs::nodejs_from_binary line 55) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing directory[/usr/local/nodejs-binary-6.10.2] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 35) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing remote_file[/var/chef/cache/nodejs-binary-6.10.2.tar.xz] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 41) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing execute[unpack /var/chef/cache/nodejs-binary-6.10.2.tar.xz] action nothing (/var/chef/cache/cookbooks/ark/providers/default.rb line 51) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing execute[set owner on /usr/local/nodejs-binary-6.10.2] action nothing (/var/chef/cache/cookbooks/ark/providers/default.rb line 60) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing link[/usr/local/bin/node] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 69) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing link[/usr/local/bin/npm] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 69) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing link[/usr/local/nodejs-binary] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 75) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing template[/etc/profile.d/nodejs-binary.sh] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 80) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing ruby_block[adding \'/usr/local/nodejs-binary-6.10.2/bin\' to chef-client ENV[\'PATH\']] action run (/var/chef/cache/cookbooks/ark/providers/default.rb line 94) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing directory[configuration_directory] action create (fulfillment-dashboard::fulfillment_dashboard_config line 14) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing template[/opt/usr/configuration/fulfillment-dashboard-config.json] action create (fulfillment-dashboard::fulfillment_dashboard_config line 23) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing directory[security_directory] action create (security::promotion_maker_ldap_config line 17) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing template[/opt/usr/security/promotion-maker-config.json] action create (security::promotion_maker_ldap_config line 25) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing template[/opt/usr/security/fulfillment-dashboard-config.json] action create (security::fulfillment_dashboard_ldap_config line 17) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing cookbook_file[/root/splunkforwarder-6.3.2-aaff59bb082c-linux-2.6-amd64.deb] action create (splunk::forwarder-config line 29) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing apt_package[splunkforwarder-6.3.2-aaff59bb082c-linux-2.6-amd64.deb] action install (splunk::forwarder-config line 37) build 10-Mar-2020 07:23:43 [2020-03-10T07:23:43-07:00] INFO: Processing bash[init-splunk] action run (splunk::forwarder-config line 43) build 10-Mar-2020 07:23:44 [2020-03-10T07:23:44-07:00] INFO: bash[init-splunk] ran successfully build 10-Mar-2020 07:23:44 [2020-03-10T07:23:44-07:00] INFO: Processing template[/opt/splunkforwarder/etc/system/local/inputs.conf] action create (splunk::forwarder-config line 52) build 10-Mar-2020 07:23:44 [2020-03-10T07:23:44-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/inputs.conf] backed up to /var/chef/backup/opt/splunkforwarder/etc/system/local/inputs.conf.chef-20200310072344.243810 build 10-Mar-2020 07:23:44 [2020-03-10T07:23:44-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/inputs.conf] updated file contents /opt/splunkforwarder/etc/system/local/inputs.conf build 10-Mar-2020 07:23:44 [2020-03-10T07:23:44-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/inputs.conf] sending restart action to service[splunk] (immediate) build 10-Mar-2020 07:23:44 [2020-03-10T07:23:44-07:00] INFO: Processing service[splunk] action restart (splunk::forwarder-config line 70) build 10-Mar-2020 07:23:50 [2020-03-10T07:23:50-07:00] INFO: service[splunk] restarted build 10-Mar-2020 07:23:50 [2020-03-10T07:23:50-07:00] INFO: Processing template[/opt/splunkforwarder/etc/system/local/outputs.conf] action create (splunk::forwarder-config line 60) build 10-Mar-2020 07:23:50 [2020-03-10T07:23:50-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] backed up to /var/chef/backup/opt/splunkforwarder/etc/system/local/outputs.conf.chef-20200310072350.042019 build 10-Mar-2020 07:23:50 [2020-03-10T07:23:50-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] updated file contents /opt/splunkforwarder/etc/system/local/outputs.conf build 10-Mar-2020 07:23:50 [2020-03-10T07:23:50-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] mode changed to 600 build 10-Mar-2020 07:23:50 [2020-03-10T07:23:50-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] sending restart action to service[splunk] (immediate) build 10-Mar-2020 07:23:50 [2020-03-10T07:23:50-07:00] INFO: Processing service[splunk] action restart (splunk::forwarder-config line 70) build 10-Mar-2020 07:29:53 [2020-03-10T07:29:53-07:00] INFO: service[splunk] restarted build 10-Mar-2020 07:29:53 [2020-03-10T07:29:53-07:00] INFO: Processing service[splunk] action nothing (splunk::forwarder-config line 70) build 10-Mar-2020 07:29:53 [2020-03-10T07:29:53-07:00] INFO: Processing directory[/opt/usr/apps/fulfillment-dashboard/config] action create (fulfillment-dashboard::install_fd line 16) build 10-Mar-2020 07:29:53 [2020-03-10T07:29:53-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/config] created directory /opt/usr/apps/fulfillment-dashboard/config build 10-Mar-2020 07:29:53 [2020-03-10T07:29:53-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/config] mode changed to 755 build 10-Mar-2020 07:29:53 [2020-03-10T07:29:53-07:00] INFO: Processing directory[/opt/usr/apps/fulfillment-dashboard/data] action create (fulfillment-dashboard::install_fd line 22) build 10-Mar-2020 07:29:53 [2020-03-10T07:29:53-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/data] created directory /opt/usr/apps/fulfillment-dashboard/data build 10-Mar-2020 07:29:53 [2020-03-10T07:29:53-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/data] mode changed to 755 build 10-Mar-2020 07:29:53 [2020-03-10T07:29:53-07:00] INFO: Processing bash[install-fulfillment-dashboard] action run (fulfillment-dashboard::install_fd line 29) build 10-Mar-2020 07:29:57 [2020-03-10T07:29:57-07:00] INFO: bash[install-fulfillment-dashboard] ran successfully build 10-Mar-2020 07:29:57 [2020-03-10T07:29:57-07:00] INFO: Processing apt_package[fulfillment-dashboard] action install (fulfillment-dashboard::install_fd line 36) build 10-Mar-2020 07:29:57 [2020-03-10T07:29:57-07:00] INFO: Processing apt_package[fulfillment-dashboard] action upgrade (fulfillment-dashboard::install_fd line 36) build 10-Mar-2020 07:29:57 [2020-03-10T07:29:57-07:00] INFO: Processing template[/opt/usr/apps/fulfillment-dashboard/config/config.json] action create (fulfillment-dashboard::install_fd line 41) build 10-Mar-2020 07:29:57 [2020-03-10T07:29:57-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] created file /opt/usr/apps/fulfillment-dashboard/config/config.json build 10-Mar-2020 07:29:57 [2020-03-10T07:29:57-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] updated file contents /opt/usr/apps/fulfillment-dashboard/config/config.json build 10-Mar-2020 07:29:58 [2020-03-10T07:29:58-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] owner changed to 0 build 10-Mar-2020 07:29:58 [2020-03-10T07:29:58-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] group changed to 0 build 10-Mar-2020 07:29:58 [2020-03-10T07:29:58-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] mode changed to 644 build 10-Mar-2020 07:29:58 [2020-03-10T07:29:58-07:00] INFO: Processing service[fulfillment-dashboard] action start (fulfillment-dashboard::install_fd line 48) build 10-Mar-2020 07:29:58 [2020-03-10T07:29:58-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] sending restart action to service[fulfillment-dashboard] (delayed) build 10-Mar-2020 07:29:58 [2020-03-10T07:29:58-07:00] INFO: Processing service[fulfillment-dashboard] action restart (fulfillment-dashboard::install_fd line 48) build 10-Mar-2020 07:29:59 [2020-03-10T07:29:59-07:00] INFO: service[fulfillment-dashboard] restarted build 10-Mar-2020 07:29:59 [2020-03-10T07:29:59-07:00] WARN: Skipping final node save because override_runlist was given build 10-Mar-2020 07:29:59 [2020-03-10T07:29:59-07:00] INFO: Chef Run complete in 380.721231669 seconds build 10-Mar-2020 07:29:59 [2020-03-10T07:29:59-07:00] INFO: Skipping removal of unused files from the cache build 10-Mar-2020 07:29:59 [2020-03-10T07:29:59-07:00] INFO: Running report handlers build 10-Mar-2020 07:29:59 [2020-03-10T07:29:59-07:00] INFO: Report handlers complete simple 10-Mar-2020 07:29:59 [ simple 10-Mar-2020 07:29:59 sudo rm -f /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:29:59 simple 10-Mar-2020 07:29:59 md5sum /home/bamboot2/dists/fulfillment-dashboard.deb simple 10-Mar-2020 07:29:59 simple 10-Mar-2020 07:29:59 sudo cp /home/bamboot2/dists/fulfillment-dashboard.deb /root simple 10-Mar-2020 07:29:59 simple 10-Mar-2020 07:29:59 sudo chown root:root /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:29:59 simple 10-Mar-2020 07:29:59 sudo rm -rf /opt/usr/apps/fulfillment-dashboard simple 10-Mar-2020 07:29:59 simple 10-Mar-2020 07:29:59 sudo -t -i chef-client -o "role[fulfillment-dashboard]" simple 10-Mar-2020 07:29:59 ] has finished. simple 10-Mar-2020 07:29:59 Result: exit code = 0 simple 10-Mar-2020 07:29:59 Finished task \'Install (ecprd-fds-3.tnt2-zone2.phl1)\' with result: Success simple 10-Mar-2020 07:29:59 Starting task \'Install (ecprd-fds-4.tnt2-zone2.phl1)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:sshtask\' simple 10-Mar-2020 07:29:59 Connecting to ecprd-fds-4.tnt2-zone2.phl1 on port: 22 simple 10-Mar-2020 07:29:59 Executing [ simple 10-Mar-2020 07:29:59 sudo rm -f /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:29:59 simple 10-Mar-2020 07:29:59 md5sum /home/bamboot2/dists/fulfillment-dashboard.deb simple 10-Mar-2020 07:29:59 simple 10-Mar-2020 07:29:59 sudo cp /home/bamboot2/dists/fulfillment-dashboard.deb /root simple 10-Mar-2020 07:29:59 simple 10-Mar-2020 07:29:59 sudo chown root:root /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:29:59 simple 10-Mar-2020 07:29:59 sudo rm -rf /opt/usr/apps/fulfillment-dashboard simple 10-Mar-2020 07:29:59 simple 10-Mar-2020 07:29:59 sudo -t -i chef-client -o "role[fulfillment-dashboard-reports]" simple 10-Mar-2020 07:29:59 ] build 10-Mar-2020 07:30:00 3aef286ebae1ebe94d0bd7cef6820b3c /home/bamboot2/dists/fulfillment-dashboard.deb build 10-Mar-2020 07:30:01 [2020-03-10T07:30:01-07:00] INFO: Forking chef instance to converge... build 10-Mar-2020 07:30:01 [2020-03-10T07:30:01-07:00] INFO: *** Chef 12.17.44 *** build 10-Mar-2020 07:30:01 [2020-03-10T07:30:01-07:00] INFO: Platform: x86_64-linux build 10-Mar-2020 07:30:01 [2020-03-10T07:30:01-07:00] INFO: Chef-client pid: 31130 build 10-Mar-2020 07:30:14 [2020-03-10T07:30:14-07:00] WARN: Run List override has been provided. build 10-Mar-2020 07:30:14 [2020-03-10T07:30:14-07:00] WARN: Original Run List: [role[fulfillment-dashboard]] build 10-Mar-2020 07:30:14 [2020-03-10T07:30:14-07:00] WARN: Overridden Run List: [role[fulfillment-dashboard-reports]] build 10-Mar-2020 07:30:14 [2020-03-10T07:30:14-07:00] INFO: Run List is [role[fulfillment-dashboard-reports]] build 10-Mar-2020 07:30:14 [2020-03-10T07:30:14-07:00] INFO: Run List expands to [infra-tools::set_linux_keepalive, infra-tools::create_app_directories, security, configuration, infra-tools::linux_limits_conf, infra-tools::linux_sysctl_conf, nodejs::nodejs_from_binary, fulfillment-dashboard::fulfillment_dashboard_config, security::promotion_maker_ldap_config, security::fulfillment_dashboard_ldap_config, fulfillment-dashboard::install_fd] build 10-Mar-2020 07:30:14 [2020-03-10T07:30:14-07:00] INFO: Starting Chef Run for ecprd-fds-4.tnt2-zone2.phl1 build 10-Mar-2020 07:30:14 [2020-03-10T07:30:14-07:00] INFO: Running start handlers build 10-Mar-2020 07:30:14 [2020-03-10T07:30:14-07:00] INFO: Start handlers complete. build 10-Mar-2020 07:30:15 [2020-03-10T07:30:15-07:00] INFO: HTTP Request Returned 404 Not Found: build 10-Mar-2020 07:30:15 [2020-03-10T07:30:15-07:00] INFO: HTTP Request Returned 404 Not Found: build 10-Mar-2020 07:30:15 [2020-03-10T07:30:15-07:00] INFO: Error while reporting run start to Data Collector. URL: https://chef-server1-t2.tnt1-zone2.phl1/organizations/snapfish/data-collector Exception: 404 -- 404 "Not Found" (This is normal if you do not have Chef Automate) build 10-Mar-2020 07:30:15 [2020-03-10T07:30:15-07:00] INFO: Loading cookbooks [infra-tools@0.1.2, security@0.0.3, configuration@0.1.0, nodejs@3.0.2, yum-epel@2.1.1, compat_resource@12.16.3, build-essential@1.3.4, ark@2.2.1, windows@2.1.1, ohai@4.2.3, seven_zip@2.0.2, apt@5.1.0, homebrew@3.0.0, fulfillment-dashboard@0.0.1] build 10-Mar-2020 07:30:15 [2020-03-10T07:30:15-07:00] INFO: Skipping removal of obsoleted cookbooks from the cache build 10-Mar-2020 07:30:15 [2020-03-10T07:30:15-07:00] WARN: Chef::Provider::AptRepository already exists! Cannot create deprecation class for LWRP provider apt_repository from cookbook apt build 10-Mar-2020 07:30:15 [2020-03-10T07:30:15-07:00] WARN: AptRepository already exists! Deprecation class overwrites Custom resource apt_repository from cookbook apt build 10-Mar-2020 07:30:15 .....[ Security Owner ] :: root.............. build 10-Mar-2020 07:30:15 .....[ Security Group ] :: root.............. build 10-Mar-2020 07:30:16 .....[ Configuration Owner ] :: root.............. build 10-Mar-2020 07:30:16 .....[ Configuration Group ] :: root.............. build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] WARN: Cloning resource attributes for directory[configuration_directory] from prior resource build 10-Mar-2020 07:30:16 Previous directory[configuration_directory]: /var/chef/cache/cookbooks/configuration/recipes/default.rb:23:in `from_file\' build 10-Mar-2020 07:30:16 Current directory[configuration_directory]: /var/chef/cache/cookbooks/fulfillment-dashboard/recipes/fulfillment_dashboard_config.rb:14:in `from_file\' (CHEF-3694)/var/chef/cache/cookbooks/fulfillment-dashboard/recipes/fulfillment_dashboard_config.rb:14:in `from_file\'. build 10-Mar-2020 07:30:16 Please see https://docs.chef.io/deprecations_resource_cloning.html for further details and information on how to correct this problem. at /opt/chef/embedded/lib/ruby/gems/2.3.0/gems/chef-12.17.44/lib/chef/event_dispatch/dispatcher.rb:43:in `call\' build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] WARN: Cloning resource attributes for directory[security_directory] from prior resource build 10-Mar-2020 07:30:16 Previous directory[security_directory]: /var/chef/cache/cookbooks/security/recipes/default.rb:150:in `from_file\' build 10-Mar-2020 07:30:16 Current directory[security_directory]: /var/chef/cache/cookbooks/security/recipes/promotion_maker_ldap_config.rb:17:in `from_file\' (CHEF-3694)/var/chef/cache/cookbooks/security/recipes/promotion_maker_ldap_config.rb:17:in `from_file\'. build 10-Mar-2020 07:30:16 Please see https://docs.chef.io/deprecations_resource_cloning.html for further details and information on how to correct this problem. at /opt/chef/embedded/lib/ruby/gems/2.3.0/gems/chef-12.17.44/lib/chef/event_dispatch/dispatcher.rb:43:in `call\' build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing bash[set-linux-keepalive] action run (infra-tools::set_linux_keepalive line 10) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: bash[set-linux-keepalive] ran successfully build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing directory[/opt/usr] action create (infra-tools::create_app_directories line 13) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing directory[/opt/usr/data] action create (infra-tools::create_app_directories line 20) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing directory[/opt/usr/apps] action create (infra-tools::create_app_directories line 27) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[encrypted_data_bag_secret] action create (security::default line 61) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing ruby_block[load_encrypted_data] action run (security::default line 128) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: ruby_block[load_encrypted_data] called build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing directory[security_directory] action create (security::default line 150) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing directory[oauth_key_base] action create (security::default line 158) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing directory[oauth_key] action create (security::default line 167) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[ecommerce_snapfish_com.key] action create (security::default line 175) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[hpca2ssG2_ns.crt] action create (security::default line 184) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[SCA.crt] action create (security::default line 193) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[Snapfish_Authority.crt] action create (security::default line 202) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[cte-ext_austin_hp_com.crt] action create (security::default line 211) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[verisign1.crt] action create (security::default line 220) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[verisign2.crt] action create (security::default line 229) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing directory[/opt/usr/security/oauth-keys/production] action create (security::default line 243) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[amz_v1_public.key] action create (security::default line 252) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[sf_v1a_public.key] action create (security::default line 261) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[cvs_v1_public.key] action create (security::default line 270) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[wg_v1a_public.key] action create (security::default line 279) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[imr_v1_public.key] action create (security::default line 288) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[wm_v1a_public.key] action create (security::default line 297) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing cookbook_file[puc-validate.crt] action create (security::default line 306) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing template[/opt/usr/security/cte.properties] action create (security::default line 398) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing template[/opt/usr/security/reference.conf] action create (security::default line 411) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing bash[generate_keystore] action run (security::default line 482) build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: bash[generate_keystore] ran successfully build 10-Mar-2020 07:30:16 [2020-03-10T07:30:16-07:00] INFO: Processing bash[add_certs_to_truststore] action run (security::default line 524) build 10-Mar-2020 07:30:18 [2020-03-10T07:30:18-07:00] INFO: bash[add_certs_to_truststore] ran successfully build 10-Mar-2020 07:30:18 [2020-03-10T07:30:18-07:00] INFO: Processing directory[configuration_directory] action create (configuration::default line 23) build 10-Mar-2020 07:30:18 [2020-03-10T07:30:18-07:00] INFO: Processing template[/etc/security/limits.conf] action create (infra-tools::linux_limits_conf line 9) build 10-Mar-2020 07:30:18 [2020-03-10T07:30:18-07:00] INFO: Processing template[/etc/sysctl.conf] action create (infra-tools::linux_sysctl_conf line 9) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing bash[run-sysctl] action run (infra-tools::linux_sysctl_conf line 16) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: bash[run-sysctl] ran successfully build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing ark[nodejs-binary] action install (nodejs::nodejs_from_binary line 55) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing directory[/usr/local/nodejs-binary-6.10.2] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 35) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing remote_file[/var/chef/cache/nodejs-binary-6.10.2.tar.xz] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 41) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing execute[unpack /var/chef/cache/nodejs-binary-6.10.2.tar.xz] action nothing (/var/chef/cache/cookbooks/ark/providers/default.rb line 51) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing execute[set owner on /usr/local/nodejs-binary-6.10.2] action nothing (/var/chef/cache/cookbooks/ark/providers/default.rb line 60) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing link[/usr/local/bin/node] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 69) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing link[/usr/local/bin/npm] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 69) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing link[/usr/local/nodejs-binary] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 75) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing template[/etc/profile.d/nodejs-binary.sh] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 80) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing ruby_block[adding \'/usr/local/nodejs-binary-6.10.2/bin\' to chef-client ENV[\'PATH\']] action run (/var/chef/cache/cookbooks/ark/providers/default.rb line 94) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing directory[configuration_directory] action create (fulfillment-dashboard::fulfillment_dashboard_config line 14) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing template[/opt/usr/configuration/fulfillment-dashboard-config.json] action create (fulfillment-dashboard::fulfillment_dashboard_config line 23) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing directory[security_directory] action create (security::promotion_maker_ldap_config line 17) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing template[/opt/usr/security/promotion-maker-config.json] action create (security::promotion_maker_ldap_config line 25) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing template[/opt/usr/security/fulfillment-dashboard-config.json] action create (security::fulfillment_dashboard_ldap_config line 17) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing directory[/opt/usr/apps/fulfillment-dashboard/config] action create (fulfillment-dashboard::install_fd line 16) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/config] created directory /opt/usr/apps/fulfillment-dashboard/config build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/config] mode changed to 755 build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing directory[/opt/usr/apps/fulfillment-dashboard/data] action create (fulfillment-dashboard::install_fd line 22) build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/data] created directory /opt/usr/apps/fulfillment-dashboard/data build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/data] mode changed to 755 build 10-Mar-2020 07:30:19 [2020-03-10T07:30:19-07:00] INFO: Processing bash[install-fulfillment-dashboard] action run (fulfillment-dashboard::install_fd line 29) build 10-Mar-2020 07:30:22 [2020-03-10T07:30:22-07:00] INFO: bash[install-fulfillment-dashboard] ran successfully build 10-Mar-2020 07:30:22 [2020-03-10T07:30:22-07:00] INFO: Processing apt_package[fulfillment-dashboard] action install (fulfillment-dashboard::install_fd line 36) build 10-Mar-2020 07:30:22 [2020-03-10T07:30:22-07:00] INFO: Processing apt_package[fulfillment-dashboard] action upgrade (fulfillment-dashboard::install_fd line 36) build 10-Mar-2020 07:30:22 [2020-03-10T07:30:22-07:00] INFO: Processing template[/opt/usr/apps/fulfillment-dashboard/config/config.json] action create (fulfillment-dashboard::install_fd line 41) build 10-Mar-2020 07:30:22 [2020-03-10T07:30:22-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] created file /opt/usr/apps/fulfillment-dashboard/config/config.json build 10-Mar-2020 07:30:22 [2020-03-10T07:30:22-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] updated file contents /opt/usr/apps/fulfillment-dashboard/config/config.json build 10-Mar-2020 07:30:22 [2020-03-10T07:30:22-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] owner changed to 0 build 10-Mar-2020 07:30:22 [2020-03-10T07:30:22-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] group changed to 0 build 10-Mar-2020 07:30:22 [2020-03-10T07:30:22-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] mode changed to 644 build 10-Mar-2020 07:30:22 [2020-03-10T07:30:22-07:00] INFO: Processing service[fulfillment-dashboard] action start (fulfillment-dashboard::install_fd line 48) build 10-Mar-2020 07:30:23 [2020-03-10T07:30:23-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] sending restart action to service[fulfillment-dashboard] (delayed) build 10-Mar-2020 07:30:23 [2020-03-10T07:30:23-07:00] INFO: Processing service[fulfillment-dashboard] action restart (fulfillment-dashboard::install_fd line 48) build 10-Mar-2020 07:30:24 [2020-03-10T07:30:24-07:00] INFO: service[fulfillment-dashboard] restarted build 10-Mar-2020 07:30:24 [2020-03-10T07:30:24-07:00] WARN: Skipping final node save because override_runlist was given build 10-Mar-2020 07:30:24 [2020-03-10T07:30:24-07:00] INFO: Chef Run complete in 9.710560986 seconds build 10-Mar-2020 07:30:24 [2020-03-10T07:30:24-07:00] INFO: Skipping removal of unused files from the cache build 10-Mar-2020 07:30:24 [2020-03-10T07:30:24-07:00] INFO: Running report handlers build 10-Mar-2020 07:30:24 [2020-03-10T07:30:24-07:00] INFO: Report handlers complete simple 10-Mar-2020 07:30:24 [ simple 10-Mar-2020 07:30:24 sudo rm -f /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:30:24 simple 10-Mar-2020 07:30:24 md5sum /home/bamboot2/dists/fulfillment-dashboard.deb simple 10-Mar-2020 07:30:24 simple 10-Mar-2020 07:30:24 sudo cp /home/bamboot2/dists/fulfillment-dashboard.deb /root simple 10-Mar-2020 07:30:24 simple 10-Mar-2020 07:30:24 sudo chown root:root /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:30:24 simple 10-Mar-2020 07:30:24 sudo rm -rf /opt/usr/apps/fulfillment-dashboard simple 10-Mar-2020 07:30:24 simple 10-Mar-2020 07:30:24 sudo -t -i chef-client -o "role[fulfillment-dashboard-reports]" simple 10-Mar-2020 07:30:24 ] has finished. simple 10-Mar-2020 07:30:24 Result: exit code = 0 simple 10-Mar-2020 07:30:24 Finished task \'Install (ecprd-fds-4.tnt2-zone2.phl1)\' with result: Success simple 10-Mar-2020 07:30:24 Starting task \'Install (ecprd-fds-3.tnt2-zone1.aus2)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:sshtask\' simple 10-Mar-2020 07:30:24 Connecting to ecprd-fds-3.tnt2-zone1.aus2 on port: 22 simple 10-Mar-2020 07:30:25 Executing [ simple 10-Mar-2020 07:30:25 sudo rm -f /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:30:25 simple 10-Mar-2020 07:30:25 md5sum /home/bamboot2/dists/fulfillment-dashboard.deb simple 10-Mar-2020 07:30:25 simple 10-Mar-2020 07:30:25 sudo cp /home/bamboot2/dists/fulfillment-dashboard.deb /root simple 10-Mar-2020 07:30:25 simple 10-Mar-2020 07:30:25 sudo chown root:root /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:30:25 simple 10-Mar-2020 07:30:25 sudo rm -rf /opt/usr/apps/fulfillment-dashboard simple 10-Mar-2020 07:30:25 simple 10-Mar-2020 07:30:25 sudo -t -i chef-client -o "role[fulfillment-dashboard]" simple 10-Mar-2020 07:30:25 ] build 10-Mar-2020 07:30:25 3aef286ebae1ebe94d0bd7cef6820b3c /home/bamboot2/dists/fulfillment-dashboard.deb build 10-Mar-2020 07:30:27 [2020-03-10T07:30:27-07:00] INFO: Forking chef instance to converge... build 10-Mar-2020 07:30:27 [2020-03-10T07:30:27-07:00] INFO: *** Chef 12.17.44 *** build 10-Mar-2020 07:30:27 [2020-03-10T07:30:27-07:00] INFO: Platform: x86_64-linux build 10-Mar-2020 07:30:27 [2020-03-10T07:30:27-07:00] INFO: Chef-client pid: 16907 build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] WARN: Run List override has been provided. build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] WARN: Original Run List: [role[fulfillment-dashboard]] build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] WARN: Overridden Run List: [role[fulfillment-dashboard]] build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] INFO: Run List is [role[fulfillment-dashboard]] build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] INFO: Run List expands to [infra-tools::set_linux_keepalive, infra-tools::create_app_directories, security, configuration, infra-tools::linux_limits_conf, infra-tools::linux_sysctl_conf, nodejs::nodejs_from_binary, fulfillment-dashboard::fulfillment_dashboard_config, security::promotion_maker_ldap_config, security::fulfillment_dashboard_ldap_config, splunk::forwarder-config, fulfillment-dashboard::install_fd] build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] INFO: Starting Chef Run for ecprd-fds-3.tnt2-zone1.aus2 build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] INFO: Running start handlers build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] INFO: Start handlers complete. build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] INFO: HTTP Request Returned 404 Not Found: build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] INFO: HTTP Request Returned 404 Not Found: build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] INFO: Error while reporting run start to Data Collector. URL: https://chef-server1-t2.tnt1-zone1.aus2/organizations/snapfish/data-collector Exception: 404 -- 404 "Not Found" (This is normal if you do not have Chef Automate) build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] INFO: Loading cookbooks [infra-tools@0.1.2, security@0.0.3, configuration@0.1.0, nodejs@3.0.2, yum-epel@2.1.1, compat_resource@12.16.3, build-essential@1.3.4, ark@2.2.1, windows@2.1.1, ohai@4.2.3, seven_zip@2.0.2, apt@5.1.0, homebrew@3.0.0, fulfillment-dashboard@0.0.1, splunk@0.1.0] build 10-Mar-2020 07:30:40 [2020-03-10T07:30:40-07:00] INFO: Skipping removal of obsoleted cookbooks from the cache build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] WARN: Chef::Provider::AptRepository already exists! Cannot create deprecation class for LWRP provider apt_repository from cookbook apt build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] WARN: AptRepository already exists! Deprecation class overwrites Custom resource apt_repository from cookbook apt build 10-Mar-2020 07:30:41 .....[ Security Owner ] :: root.............. build 10-Mar-2020 07:30:41 .....[ Security Group ] :: root.............. build 10-Mar-2020 07:30:41 .....[ Configuration Owner ] :: root.............. build 10-Mar-2020 07:30:41 .....[ Configuration Group ] :: root.............. build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] WARN: Cloning resource attributes for directory[configuration_directory] from prior resource build 10-Mar-2020 07:30:41 Previous directory[configuration_directory]: /var/chef/cache/cookbooks/configuration/recipes/default.rb:23:in `from_file\' build 10-Mar-2020 07:30:41 Current directory[configuration_directory]: /var/chef/cache/cookbooks/fulfillment-dashboard/recipes/fulfillment_dashboard_config.rb:14:in `from_file\' (CHEF-3694)/var/chef/cache/cookbooks/fulfillment-dashboard/recipes/fulfillment_dashboard_config.rb:14:in `from_file\'. build 10-Mar-2020 07:30:41 Please see https://docs.chef.io/deprecations_resource_cloning.html for further details and information on how to correct this problem. at /opt/chef/embedded/lib/ruby/gems/2.3.0/gems/chef-12.17.44/lib/chef/event_dispatch/dispatcher.rb:43:in `call\' build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] WARN: Cloning resource attributes for directory[security_directory] from prior resource build 10-Mar-2020 07:30:41 Previous directory[security_directory]: /var/chef/cache/cookbooks/security/recipes/default.rb:150:in `from_file\' build 10-Mar-2020 07:30:41 Current directory[security_directory]: /var/chef/cache/cookbooks/security/recipes/promotion_maker_ldap_config.rb:17:in `from_file\' (CHEF-3694)/var/chef/cache/cookbooks/security/recipes/promotion_maker_ldap_config.rb:17:in `from_file\'. build 10-Mar-2020 07:30:41 Please see https://docs.chef.io/deprecations_resource_cloning.html for further details and information on how to correct this problem. at /opt/chef/embedded/lib/ruby/gems/2.3.0/gems/chef-12.17.44/lib/chef/event_dispatch/dispatcher.rb:43:in `call\' build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing bash[set-linux-keepalive] action run (infra-tools::set_linux_keepalive line 10) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: bash[set-linux-keepalive] ran successfully build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing directory[/opt/usr] action create (infra-tools::create_app_directories line 13) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing directory[/opt/usr/data] action create (infra-tools::create_app_directories line 20) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing directory[/opt/usr/apps] action create (infra-tools::create_app_directories line 27) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[encrypted_data_bag_secret] action create (security::default line 61) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing ruby_block[load_encrypted_data] action run (security::default line 128) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: ruby_block[load_encrypted_data] called build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing directory[security_directory] action create (security::default line 150) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing directory[oauth_key_base] action create (security::default line 158) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing directory[oauth_key] action create (security::default line 167) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[ecommerce_snapfish_com.key] action create (security::default line 175) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[hpca2ssG2_ns.crt] action create (security::default line 184) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[SCA.crt] action create (security::default line 193) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[Snapfish_Authority.crt] action create (security::default line 202) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[cte-ext_austin_hp_com.crt] action create (security::default line 211) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[verisign1.crt] action create (security::default line 220) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[verisign2.crt] action create (security::default line 229) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing directory[/opt/usr/security/oauth-keys/production] action create (security::default line 243) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[amz_v1_public.key] action create (security::default line 252) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[sf_v1a_public.key] action create (security::default line 261) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[cvs_v1_public.key] action create (security::default line 270) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[wg_v1a_public.key] action create (security::default line 279) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[imr_v1_public.key] action create (security::default line 288) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[wm_v1a_public.key] action create (security::default line 297) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing cookbook_file[puc-validate.crt] action create (security::default line 306) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing template[/opt/usr/security/cte.properties] action create (security::default line 398) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing template[/opt/usr/security/reference.conf] action create (security::default line 411) build 10-Mar-2020 07:30:41 [2020-03-10T07:30:41-07:00] INFO: Processing bash[generate_keystore] action run (security::default line 482) build 10-Mar-2020 07:30:42 [2020-03-10T07:30:42-07:00] INFO: bash[generate_keystore] ran successfully build 10-Mar-2020 07:30:42 [2020-03-10T07:30:42-07:00] INFO: Processing bash[add_certs_to_truststore] action run (security::default line 524) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: bash[add_certs_to_truststore] ran successfully build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing directory[configuration_directory] action create (configuration::default line 23) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing template[/etc/security/limits.conf] action create (infra-tools::linux_limits_conf line 9) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing template[/etc/sysctl.conf] action create (infra-tools::linux_sysctl_conf line 9) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing bash[run-sysctl] action run (infra-tools::linux_sysctl_conf line 16) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: bash[run-sysctl] ran successfully build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing ark[nodejs-binary] action install (nodejs::nodejs_from_binary line 55) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing directory[/usr/local/nodejs-binary-6.10.2] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 35) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing remote_file[/var/chef/cache/nodejs-binary-6.10.2.tar.xz] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 41) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing execute[unpack /var/chef/cache/nodejs-binary-6.10.2.tar.xz] action nothing (/var/chef/cache/cookbooks/ark/providers/default.rb line 51) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing execute[set owner on /usr/local/nodejs-binary-6.10.2] action nothing (/var/chef/cache/cookbooks/ark/providers/default.rb line 60) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing link[/usr/local/bin/node] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 69) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing link[/usr/local/bin/npm] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 69) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing link[/usr/local/nodejs-binary] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 75) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing template[/etc/profile.d/nodejs-binary.sh] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 80) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing ruby_block[adding \'/usr/local/nodejs-binary-6.10.2/bin\' to chef-client ENV[\'PATH\']] action run (/var/chef/cache/cookbooks/ark/providers/default.rb line 94) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing directory[configuration_directory] action create (fulfillment-dashboard::fulfillment_dashboard_config line 14) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing template[/opt/usr/configuration/fulfillment-dashboard-config.json] action create (fulfillment-dashboard::fulfillment_dashboard_config line 23) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing directory[security_directory] action create (security::promotion_maker_ldap_config line 17) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing template[/opt/usr/security/promotion-maker-config.json] action create (security::promotion_maker_ldap_config line 25) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing template[/opt/usr/security/fulfillment-dashboard-config.json] action create (security::fulfillment_dashboard_ldap_config line 17) build 10-Mar-2020 07:30:44 [2020-03-10T07:30:44-07:00] INFO: Processing cookbook_file[/root/splunkforwarder-6.3.2-aaff59bb082c-linux-2.6-amd64.deb] action create (splunk::forwarder-config line 29) build 10-Mar-2020 07:30:45 [2020-03-10T07:30:45-07:00] INFO: Processing apt_package[splunkforwarder-6.3.2-aaff59bb082c-linux-2.6-amd64.deb] action install (splunk::forwarder-config line 37) build 10-Mar-2020 07:30:45 [2020-03-10T07:30:45-07:00] INFO: Processing bash[init-splunk] action run (splunk::forwarder-config line 43) build 10-Mar-2020 07:30:45 [2020-03-10T07:30:45-07:00] INFO: bash[init-splunk] ran successfully build 10-Mar-2020 07:30:45 [2020-03-10T07:30:45-07:00] INFO: Processing template[/opt/splunkforwarder/etc/system/local/inputs.conf] action create (splunk::forwarder-config line 52) build 10-Mar-2020 07:30:45 [2020-03-10T07:30:45-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/inputs.conf] backed up to /var/chef/backup/opt/splunkforwarder/etc/system/local/inputs.conf.chef-20200310073045.885354 build 10-Mar-2020 07:30:45 [2020-03-10T07:30:45-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/inputs.conf] updated file contents /opt/splunkforwarder/etc/system/local/inputs.conf build 10-Mar-2020 07:30:45 [2020-03-10T07:30:45-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/inputs.conf] sending restart action to service[splunk] (immediate) build 10-Mar-2020 07:30:45 [2020-03-10T07:30:45-07:00] INFO: Processing service[splunk] action restart (splunk::forwarder-config line 70) build 10-Mar-2020 07:30:51 [2020-03-10T07:30:51-07:00] INFO: service[splunk] restarted build 10-Mar-2020 07:30:51 [2020-03-10T07:30:51-07:00] INFO: Processing template[/opt/splunkforwarder/etc/system/local/outputs.conf] action create (splunk::forwarder-config line 60) build 10-Mar-2020 07:30:51 [2020-03-10T07:30:51-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] backed up to /var/chef/backup/opt/splunkforwarder/etc/system/local/outputs.conf.chef-20200310073051.658811 build 10-Mar-2020 07:30:51 [2020-03-10T07:30:51-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] updated file contents /opt/splunkforwarder/etc/system/local/outputs.conf build 10-Mar-2020 07:30:51 [2020-03-10T07:30:51-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] mode changed to 600 build 10-Mar-2020 07:30:51 [2020-03-10T07:30:51-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] sending restart action to service[splunk] (immediate) build 10-Mar-2020 07:30:51 [2020-03-10T07:30:51-07:00] INFO: Processing service[splunk] action restart (splunk::forwarder-config line 70) build 10-Mar-2020 07:36:55 [2020-03-10T07:36:55-07:00] INFO: service[splunk] restarted build 10-Mar-2020 07:36:55 [2020-03-10T07:36:55-07:00] INFO: Processing service[splunk] action nothing (splunk::forwarder-config line 70) build 10-Mar-2020 07:36:55 [2020-03-10T07:36:55-07:00] INFO: Processing directory[/opt/usr/apps/fulfillment-dashboard/config] action create (fulfillment-dashboard::install_fd line 16) build 10-Mar-2020 07:36:55 [2020-03-10T07:36:55-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/config] created directory /opt/usr/apps/fulfillment-dashboard/config build 10-Mar-2020 07:36:55 [2020-03-10T07:36:55-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/config] mode changed to 755 build 10-Mar-2020 07:36:55 [2020-03-10T07:36:55-07:00] INFO: Processing directory[/opt/usr/apps/fulfillment-dashboard/data] action create (fulfillment-dashboard::install_fd line 22) build 10-Mar-2020 07:36:55 [2020-03-10T07:36:55-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/data] created directory /opt/usr/apps/fulfillment-dashboard/data build 10-Mar-2020 07:36:55 [2020-03-10T07:36:55-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/data] mode changed to 755 build 10-Mar-2020 07:36:55 [2020-03-10T07:36:55-07:00] INFO: Processing bash[install-fulfillment-dashboard] action run (fulfillment-dashboard::install_fd line 29) build 10-Mar-2020 07:36:58 [2020-03-10T07:36:58-07:00] INFO: bash[install-fulfillment-dashboard] ran successfully build 10-Mar-2020 07:36:58 [2020-03-10T07:36:58-07:00] INFO: Processing apt_package[fulfillment-dashboard] action install (fulfillment-dashboard::install_fd line 36) build 10-Mar-2020 07:36:59 [2020-03-10T07:36:59-07:00] INFO: Processing apt_package[fulfillment-dashboard] action upgrade (fulfillment-dashboard::install_fd line 36) build 10-Mar-2020 07:36:59 [2020-03-10T07:36:59-07:00] INFO: Processing template[/opt/usr/apps/fulfillment-dashboard/config/config.json] action create (fulfillment-dashboard::install_fd line 41) build 10-Mar-2020 07:36:59 [2020-03-10T07:36:59-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] created file /opt/usr/apps/fulfillment-dashboard/config/config.json build 10-Mar-2020 07:36:59 [2020-03-10T07:36:59-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] updated file contents /opt/usr/apps/fulfillment-dashboard/config/config.json build 10-Mar-2020 07:36:59 [2020-03-10T07:36:59-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] owner changed to 0 build 10-Mar-2020 07:36:59 [2020-03-10T07:36:59-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] group changed to 0 build 10-Mar-2020 07:36:59 [2020-03-10T07:36:59-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] mode changed to 644 build 10-Mar-2020 07:36:59 [2020-03-10T07:36:59-07:00] INFO: Processing service[fulfillment-dashboard] action start (fulfillment-dashboard::install_fd line 48) build 10-Mar-2020 07:36:59 [2020-03-10T07:36:59-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] sending restart action to service[fulfillment-dashboard] (delayed) build 10-Mar-2020 07:36:59 [2020-03-10T07:36:59-07:00] INFO: Processing service[fulfillment-dashboard] action restart (fulfillment-dashboard::install_fd line 48) build 10-Mar-2020 07:37:00 [2020-03-10T07:37:00-07:00] INFO: service[fulfillment-dashboard] restarted build 10-Mar-2020 07:37:00 [2020-03-10T07:37:00-07:00] WARN: Skipping final node save because override_runlist was given build 10-Mar-2020 07:37:00 [2020-03-10T07:37:00-07:00] INFO: Chef Run complete in 380.8047803 seconds build 10-Mar-2020 07:37:00 [2020-03-10T07:37:00-07:00] INFO: Skipping removal of unused files from the cache build 10-Mar-2020 07:37:00 [2020-03-10T07:37:00-07:00] INFO: Running report handlers build 10-Mar-2020 07:37:00 [2020-03-10T07:37:00-07:00] INFO: Report handlers complete simple 10-Mar-2020 07:37:01 [ simple 10-Mar-2020 07:37:01 sudo rm -f /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:37:01 simple 10-Mar-2020 07:37:01 md5sum /home/bamboot2/dists/fulfillment-dashboard.deb simple 10-Mar-2020 07:37:01 simple 10-Mar-2020 07:37:01 sudo cp /home/bamboot2/dists/fulfillment-dashboard.deb /root simple 10-Mar-2020 07:37:01 simple 10-Mar-2020 07:37:01 sudo chown root:root /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:37:01 simple 10-Mar-2020 07:37:01 sudo rm -rf /opt/usr/apps/fulfillment-dashboard simple 10-Mar-2020 07:37:01 simple 10-Mar-2020 07:37:01 sudo -t -i chef-client -o "role[fulfillment-dashboard]" simple 10-Mar-2020 07:37:01 ] has finished. simple 10-Mar-2020 07:37:01 Result: exit code = 0 simple 10-Mar-2020 07:37:01 Finished task \'Install (ecprd-fds-3.tnt2-zone1.aus2)\' with result: Success simple 10-Mar-2020 07:37:01 Starting task \'Install (ecprd-fds-4.tnt2-zone1.aus2)\' of type \'com.atlassian.bamboo.plugins.bamboo-scp-plugin:sshtask\' simple 10-Mar-2020 07:37:01 Connecting to ecprd-fds-4.tnt2-zone1.aus2 on port: 22 simple 10-Mar-2020 07:37:01 Executing [ simple 10-Mar-2020 07:37:01 sudo rm -f /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:37:01 simple 10-Mar-2020 07:37:01 md5sum /home/bamboot2/dists/fulfillment-dashboard.deb simple 10-Mar-2020 07:37:01 simple 10-Mar-2020 07:37:01 sudo cp /home/bamboot2/dists/fulfillment-dashboard.deb /root simple 10-Mar-2020 07:37:01 simple 10-Mar-2020 07:37:01 sudo chown root:root /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:37:01 simple 10-Mar-2020 07:37:01 sudo rm -rf /opt/usr/apps/fulfillment-dashboard simple 10-Mar-2020 07:37:01 simple 10-Mar-2020 07:37:01 sudo -t -i chef-client -o "role[fulfillment-dashboard]" simple 10-Mar-2020 07:37:01 ] build 10-Mar-2020 07:37:01 3aef286ebae1ebe94d0bd7cef6820b3c /home/bamboot2/dists/fulfillment-dashboard.deb build 10-Mar-2020 07:37:03 [2020-03-10T07:37:03-07:00] INFO: Forking chef instance to converge... build 10-Mar-2020 07:37:03 [2020-03-10T07:37:03-07:00] INFO: *** Chef 12.17.44 *** build 10-Mar-2020 07:37:03 [2020-03-10T07:37:03-07:00] INFO: Platform: x86_64-linux build 10-Mar-2020 07:37:03 [2020-03-10T07:37:03-07:00] INFO: Chef-client pid: 17752 build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] WARN: Run List override has been provided. build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] WARN: Original Run List: [role[fulfillment-dashboard]] build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] WARN: Overridden Run List: [role[fulfillment-dashboard]] build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] INFO: Run List is [role[fulfillment-dashboard]] build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] INFO: Run List expands to [infra-tools::set_linux_keepalive, infra-tools::create_app_directories, security, configuration, infra-tools::linux_limits_conf, infra-tools::linux_sysctl_conf, nodejs::nodejs_from_binary, fulfillment-dashboard::fulfillment_dashboard_config, security::promotion_maker_ldap_config, security::fulfillment_dashboard_ldap_config, splunk::forwarder-config, fulfillment-dashboard::install_fd] build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] INFO: Starting Chef Run for ecprd-fds-4.tnt2-zone1.aus2 build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] INFO: Running start handlers build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] INFO: Start handlers complete. build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] INFO: HTTP Request Returned 404 Not Found: build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] INFO: HTTP Request Returned 404 Not Found: build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] INFO: Error while reporting run start to Data Collector. URL: https://chef-server1-t2.tnt1-zone1.aus2/organizations/snapfish/data-collector Exception: 404 -- 404 "Not Found" (This is normal if you do not have Chef Automate) build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] INFO: Loading cookbooks [infra-tools@0.1.2, security@0.0.3, configuration@0.1.0, nodejs@3.0.2, yum-epel@2.1.1, compat_resource@12.16.3, build-essential@1.3.4, ark@2.2.1, windows@2.1.1, ohai@4.2.3, seven_zip@2.0.2, apt@5.1.0, homebrew@3.0.0, fulfillment-dashboard@0.0.1, splunk@0.1.0] build 10-Mar-2020 07:37:13 [2020-03-10T07:37:13-07:00] INFO: Skipping removal of obsoleted cookbooks from the cache build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] WARN: Chef::Provider::AptRepository already exists! Cannot create deprecation class for LWRP provider apt_repository from cookbook apt build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] WARN: AptRepository already exists! Deprecation class overwrites Custom resource apt_repository from cookbook apt build 10-Mar-2020 07:37:14 .....[ Security Owner ] :: root.............. build 10-Mar-2020 07:37:14 .....[ Security Group ] :: root.............. build 10-Mar-2020 07:37:14 .....[ Configuration Owner ] :: root.............. build 10-Mar-2020 07:37:14 .....[ Configuration Group ] :: root.............. build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] WARN: Cloning resource attributes for directory[configuration_directory] from prior resource build 10-Mar-2020 07:37:14 Previous directory[configuration_directory]: /var/chef/cache/cookbooks/configuration/recipes/default.rb:23:in `from_file\' build 10-Mar-2020 07:37:14 Current directory[configuration_directory]: /var/chef/cache/cookbooks/fulfillment-dashboard/recipes/fulfillment_dashboard_config.rb:14:in `from_file\' (CHEF-3694)/var/chef/cache/cookbooks/fulfillment-dashboard/recipes/fulfillment_dashboard_config.rb:14:in `from_file\'. build 10-Mar-2020 07:37:14 Please see https://docs.chef.io/deprecations_resource_cloning.html for further details and information on how to correct this problem. at /opt/chef/embedded/lib/ruby/gems/2.3.0/gems/chef-12.17.44/lib/chef/event_dispatch/dispatcher.rb:43:in `call\' build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] WARN: Cloning resource attributes for directory[security_directory] from prior resource build 10-Mar-2020 07:37:14 Previous directory[security_directory]: /var/chef/cache/cookbooks/security/recipes/default.rb:150:in `from_file\' build 10-Mar-2020 07:37:14 Current directory[security_directory]: /var/chef/cache/cookbooks/security/recipes/promotion_maker_ldap_config.rb:17:in `from_file\' (CHEF-3694)/var/chef/cache/cookbooks/security/recipes/promotion_maker_ldap_config.rb:17:in `from_file\'. build 10-Mar-2020 07:37:14 Please see https://docs.chef.io/deprecations_resource_cloning.html for further details and information on how to correct this problem. at /opt/chef/embedded/lib/ruby/gems/2.3.0/gems/chef-12.17.44/lib/chef/event_dispatch/dispatcher.rb:43:in `call\' build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing bash[set-linux-keepalive] action run (infra-tools::set_linux_keepalive line 10) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: bash[set-linux-keepalive] ran successfully build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing directory[/opt/usr] action create (infra-tools::create_app_directories line 13) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing directory[/opt/usr/data] action create (infra-tools::create_app_directories line 20) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing directory[/opt/usr/apps] action create (infra-tools::create_app_directories line 27) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[encrypted_data_bag_secret] action create (security::default line 61) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing ruby_block[load_encrypted_data] action run (security::default line 128) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: ruby_block[load_encrypted_data] called build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing directory[security_directory] action create (security::default line 150) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing directory[oauth_key_base] action create (security::default line 158) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing directory[oauth_key] action create (security::default line 167) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[ecommerce_snapfish_com.key] action create (security::default line 175) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[hpca2ssG2_ns.crt] action create (security::default line 184) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[SCA.crt] action create (security::default line 193) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[Snapfish_Authority.crt] action create (security::default line 202) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[cte-ext_austin_hp_com.crt] action create (security::default line 211) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[verisign1.crt] action create (security::default line 220) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[verisign2.crt] action create (security::default line 229) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing directory[/opt/usr/security/oauth-keys/production] action create (security::default line 243) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[amz_v1_public.key] action create (security::default line 252) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[sf_v1a_public.key] action create (security::default line 261) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[cvs_v1_public.key] action create (security::default line 270) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[wg_v1a_public.key] action create (security::default line 279) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[imr_v1_public.key] action create (security::default line 288) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[wm_v1a_public.key] action create (security::default line 297) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing cookbook_file[puc-validate.crt] action create (security::default line 306) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing template[/opt/usr/security/cte.properties] action create (security::default line 398) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing template[/opt/usr/security/reference.conf] action create (security::default line 411) build 10-Mar-2020 07:37:14 [2020-03-10T07:37:14-07:00] INFO: Processing bash[generate_keystore] action run (security::default line 482) build 10-Mar-2020 07:37:15 [2020-03-10T07:37:15-07:00] INFO: bash[generate_keystore] ran successfully build 10-Mar-2020 07:37:15 [2020-03-10T07:37:15-07:00] INFO: Processing bash[add_certs_to_truststore] action run (security::default line 524) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: bash[add_certs_to_truststore] ran successfully build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing directory[configuration_directory] action create (configuration::default line 23) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing template[/etc/security/limits.conf] action create (infra-tools::linux_limits_conf line 9) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing template[/etc/sysctl.conf] action create (infra-tools::linux_sysctl_conf line 9) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing bash[run-sysctl] action run (infra-tools::linux_sysctl_conf line 16) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: bash[run-sysctl] ran successfully build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing ark[nodejs-binary] action install (nodejs::nodejs_from_binary line 55) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing directory[/usr/local/nodejs-binary-6.10.2] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 35) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing remote_file[/var/chef/cache/nodejs-binary-6.10.2.tar.xz] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 41) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing execute[unpack /var/chef/cache/nodejs-binary-6.10.2.tar.xz] action nothing (/var/chef/cache/cookbooks/ark/providers/default.rb line 51) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing execute[set owner on /usr/local/nodejs-binary-6.10.2] action nothing (/var/chef/cache/cookbooks/ark/providers/default.rb line 60) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing link[/usr/local/bin/node] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 69) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing link[/usr/local/bin/npm] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 69) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing link[/usr/local/nodejs-binary] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 75) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing template[/etc/profile.d/nodejs-binary.sh] action create (/var/chef/cache/cookbooks/ark/providers/default.rb line 80) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing ruby_block[adding \'/usr/local/nodejs-binary-6.10.2/bin\' to chef-client ENV[\'PATH\']] action run (/var/chef/cache/cookbooks/ark/providers/default.rb line 94) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing directory[configuration_directory] action create (fulfillment-dashboard::fulfillment_dashboard_config line 14) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing template[/opt/usr/configuration/fulfillment-dashboard-config.json] action create (fulfillment-dashboard::fulfillment_dashboard_config line 23) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing directory[security_directory] action create (security::promotion_maker_ldap_config line 17) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing template[/opt/usr/security/promotion-maker-config.json] action create (security::promotion_maker_ldap_config line 25) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing template[/opt/usr/security/fulfillment-dashboard-config.json] action create (security::fulfillment_dashboard_ldap_config line 17) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing cookbook_file[/root/splunkforwarder-6.3.2-aaff59bb082c-linux-2.6-amd64.deb] action create (splunk::forwarder-config line 29) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing apt_package[splunkforwarder-6.3.2-aaff59bb082c-linux-2.6-amd64.deb] action install (splunk::forwarder-config line 37) build 10-Mar-2020 07:37:18 [2020-03-10T07:37:18-07:00] INFO: Processing bash[init-splunk] action run (splunk::forwarder-config line 43) build 10-Mar-2020 07:37:19 [2020-03-10T07:37:19-07:00] INFO: bash[init-splunk] ran successfully build 10-Mar-2020 07:37:19 [2020-03-10T07:37:19-07:00] INFO: Processing template[/opt/splunkforwarder/etc/system/local/inputs.conf] action create (splunk::forwarder-config line 52) build 10-Mar-2020 07:37:19 [2020-03-10T07:37:19-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/inputs.conf] backed up to /var/chef/backup/opt/splunkforwarder/etc/system/local/inputs.conf.chef-20200310073719.467622 build 10-Mar-2020 07:37:19 [2020-03-10T07:37:19-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/inputs.conf] updated file contents /opt/splunkforwarder/etc/system/local/inputs.conf build 10-Mar-2020 07:37:19 [2020-03-10T07:37:19-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/inputs.conf] sending restart action to service[splunk] (immediate) build 10-Mar-2020 07:37:19 [2020-03-10T07:37:19-07:00] INFO: Processing service[splunk] action restart (splunk::forwarder-config line 70) build 10-Mar-2020 07:37:25 [2020-03-10T07:37:25-07:00] INFO: service[splunk] restarted build 10-Mar-2020 07:37:25 [2020-03-10T07:37:25-07:00] INFO: Processing template[/opt/splunkforwarder/etc/system/local/outputs.conf] action create (splunk::forwarder-config line 60) build 10-Mar-2020 07:37:25 [2020-03-10T07:37:25-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] backed up to /var/chef/backup/opt/splunkforwarder/etc/system/local/outputs.conf.chef-20200310073725.118435 build 10-Mar-2020 07:37:25 [2020-03-10T07:37:25-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] updated file contents /opt/splunkforwarder/etc/system/local/outputs.conf build 10-Mar-2020 07:37:25 [2020-03-10T07:37:25-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] mode changed to 600 build 10-Mar-2020 07:37:25 [2020-03-10T07:37:25-07:00] INFO: template[/opt/splunkforwarder/etc/system/local/outputs.conf] sending restart action to service[splunk] (immediate) build 10-Mar-2020 07:37:25 [2020-03-10T07:37:25-07:00] INFO: Processing service[splunk] action restart (splunk::forwarder-config line 70) build 10-Mar-2020 07:37:30 [2020-03-10T07:37:30-07:00] INFO: service[splunk] restarted build 10-Mar-2020 07:37:30 [2020-03-10T07:37:30-07:00] INFO: Processing service[splunk] action nothing (splunk::forwarder-config line 70) build 10-Mar-2020 07:37:30 [2020-03-10T07:37:30-07:00] INFO: Processing directory[/opt/usr/apps/fulfillment-dashboard/config] action create (fulfillment-dashboard::install_fd line 16) build 10-Mar-2020 07:37:30 [2020-03-10T07:37:30-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/config] created directory /opt/usr/apps/fulfillment-dashboard/config build 10-Mar-2020 07:37:30 [2020-03-10T07:37:30-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/config] mode changed to 755 build 10-Mar-2020 07:37:30 [2020-03-10T07:37:30-07:00] INFO: Processing directory[/opt/usr/apps/fulfillment-dashboard/data] action create (fulfillment-dashboard::install_fd line 22) build 10-Mar-2020 07:37:30 [2020-03-10T07:37:30-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/data] created directory /opt/usr/apps/fulfillment-dashboard/data build 10-Mar-2020 07:37:30 [2020-03-10T07:37:30-07:00] INFO: directory[/opt/usr/apps/fulfillment-dashboard/data] mode changed to 755 build 10-Mar-2020 07:37:30 [2020-03-10T07:37:30-07:00] INFO: Processing bash[install-fulfillment-dashboard] action run (fulfillment-dashboard::install_fd line 29) build 10-Mar-2020 07:37:33 [2020-03-10T07:37:33-07:00] INFO: bash[install-fulfillment-dashboard] ran successfully build 10-Mar-2020 07:37:33 [2020-03-10T07:37:33-07:00] INFO: Processing apt_package[fulfillment-dashboard] action install (fulfillment-dashboard::install_fd line 36) build 10-Mar-2020 07:37:34 [2020-03-10T07:37:34-07:00] INFO: Processing apt_package[fulfillment-dashboard] action upgrade (fulfillment-dashboard::install_fd line 36) build 10-Mar-2020 07:37:34 [2020-03-10T07:37:34-07:00] INFO: Processing template[/opt/usr/apps/fulfillment-dashboard/config/config.json] action create (fulfillment-dashboard::install_fd line 41) build 10-Mar-2020 07:37:34 [2020-03-10T07:37:34-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] created file /opt/usr/apps/fulfillment-dashboard/config/config.json build 10-Mar-2020 07:37:34 [2020-03-10T07:37:34-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] updated file contents /opt/usr/apps/fulfillment-dashboard/config/config.json build 10-Mar-2020 07:37:34 [2020-03-10T07:37:34-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] owner changed to 0 build 10-Mar-2020 07:37:34 [2020-03-10T07:37:34-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] group changed to 0 build 10-Mar-2020 07:37:34 [2020-03-10T07:37:34-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] mode changed to 644 build 10-Mar-2020 07:37:34 [2020-03-10T07:37:34-07:00] INFO: Processing service[fulfillment-dashboard] action start (fulfillment-dashboard::install_fd line 48) build 10-Mar-2020 07:37:34 [2020-03-10T07:37:34-07:00] INFO: template[/opt/usr/apps/fulfillment-dashboard/config/config.json] sending restart action to service[fulfillment-dashboard] (delayed) build 10-Mar-2020 07:37:34 [2020-03-10T07:37:34-07:00] INFO: Processing service[fulfillment-dashboard] action restart (fulfillment-dashboard::install_fd line 48) build 10-Mar-2020 07:37:36 [2020-03-10T07:37:36-07:00] INFO: service[fulfillment-dashboard] restarted build 10-Mar-2020 07:37:36 [2020-03-10T07:37:36-07:00] WARN: Skipping final node save because override_runlist was given build 10-Mar-2020 07:37:36 [2020-03-10T07:37:36-07:00] INFO: Chef Run complete in 22.618973643 seconds build 10-Mar-2020 07:37:36 [2020-03-10T07:37:36-07:00] INFO: Skipping removal of unused files from the cache build 10-Mar-2020 07:37:36 [2020-03-10T07:37:36-07:00] INFO: Running report handlers build 10-Mar-2020 07:37:36 [2020-03-10T07:37:36-07:00] INFO: Report handlers complete simple 10-Mar-2020 07:37:36 [ simple 10-Mar-2020 07:37:36 sudo rm -f /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:37:36 simple 10-Mar-2020 07:37:36 md5sum /home/bamboot2/dists/fulfillment-dashboard.deb simple 10-Mar-2020 07:37:36 simple 10-Mar-2020 07:37:36 sudo cp /home/bamboot2/dists/fulfillment-dashboard.deb /root simple 10-Mar-2020 07:37:36 simple 10-Mar-2020 07:37:36 sudo chown root:root /root/fulfillment-dashboard.deb simple 10-Mar-2020 07:37:36 simple 10-Mar-2020 07:37:36 sudo rm -rf /opt/usr/apps/fulfillment-dashboard simple 10-Mar-2020 07:37:36 simple 10-Mar-2020 07:37:36 sudo -t -i chef-client -o "role[fulfillment-dashboard]" simple 10-Mar-2020 07:37:36 ] has finished. simple 10-Mar-2020 07:37:36 Result: exit code = 0 simple 10-Mar-2020 07:37:36 Finished task \'Install (ecprd-fds-4.tnt2-zone1.aus2)\' with result: Success command 10-Mar-2020 07:37:36 Substituting variable: ${bamboo.buildResultKey} with CT-CFD-140 command 10-Mar-2020 07:37:36 Substituting variable: ${bamboo.buildResultKey} with CT-CFD-140 simple 10-Mar-2020 07:37:36 Starting task \'GPS update\' of type \'com.atlassian.bamboo.plugins.scripttask:task.builder.script\' command 10-Mar-2020 07:37:36 Beginning to execute external process for build \'Deployment of \'commerce-fds-131\' on \'Production\'\'\\n ... running command line: \\n/root/bamboo-agent-home/temp/1114114-95027212-108789998-ScriptBuildTask-9135669627464830706.sh\\n ... in: /root/bamboo-agent-home/xml-data/build-dir/1114114-95027212\\n ... using extra environment variables: \\nbamboo_planRepository_1_branch=develop\\nbamboo_capability_system_builder_gradle=/var/lib/gradle-2.10\\nbamboo_dhUserName=cdpdocker\\nbamboo_deploy_environment=Production\\nbamboo_deploy_project=Deployment for Commerce Fulfillment Dashboard\\nbamboo_planRepository_1_branchDisplayName=develop\\nbamboo_OPS_HOST=ops.tnt1-zone1.aus2\\nbamboo_resultsUrl=https://cdpbamboo.snapfish.com/deploy/viewDeploymentResult.action?deploymentResultId=108789998\\nbamboo_nexusBuildUser=deployment\\nbamboo_SmartServer=cdp-smartserver-001.tnt31-zone1.phl1\\nbamboo_planRepository_1_name=CommerceFD(develop branch)\\nbamboo_build_working_directory=/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212\\nbamboo_sonarUserName=admin\\nbamboo_shortPlanName=Commerce Fulfillment Dashboard\\nbamboo_planRepository_name=CommerceFD(develop branch)\\nbamboo_capability_system_jdk_JDK_1_8_0_211=/usr/lib/jvm/java-8-oracle\\nbamboo_buildNumber=140\\nbamboo_deploy_release_previous=commerce-fds-131\\nbamboo_SonarUserPassword=********\\nbamboo_planRepository_repositoryUrl=ssh://git@bitbucket.org/sfglobal/commercefd\\nbamboo_JAVA8_HOME=/usr/lib/jvm/java-8-openjdk-amd64\\nbamboo_nexusUserPassword=********\\nbamboo_agentId=42008590\\nbamboo_planName=Commerce Tools - Commerce Fulfillment Dashboard\\nbamboo_shortPlanKey=CFD\\nbamboo_cleversafePassword=********\\nbamboo_planRepository_revision=1796acf0a88c4f5b5028c36bfd90bd95b06d93d1\\nbamboo_cleversafeUserName=OmorZpAp0oTKCbhJYzjX\\nbamboo_capability_system_jdk_JDK_1_8_0_181=/usr/lib/jvm/java-8-oracle\\nbamboo_OPS_PATH=/opt/deploy\\nbamboo_nexusUserName=anonymous\\nbamboo_sfEnv=PRODUCTION\\nbamboo_capability_system_jdk_JDK_1_8_0_221=/usr/lib/jvm/java-8-oracle\\nbamboo_buildResultKey=CT-CFD-140\\nbamboo_deploy_release=commerce-fds-131\\nbamboo_capability_gradle_commerce_tools=gradle\\nbamboo_planRepository_1_revision=1796acf0a88c4f5b5028c36bfd90bd95b06d93d1\\nbamboo_SlackWebHook=https://hooks.slack.com/services/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\\nbamboo_MSAppCenter_API_Token=5ddbbf177360ff4ecc9473f666d23632ee6e2238\\nbamboo_bbIPRange=13.55.145.74/32, 13.236.225.70/32, 13.236.240.90/32, 13.236.240.218/32, 13.237.22.210/32, 13.237.203.34/32, 34.198.210.246/32, 34.252.194.82/32, 35.160.117.30/32, 35.162.23.98/32, 35.167.86.65/32, 104.192.136.0/21, 104.192.142.192/223, 104.192.143.192/223, 52.8.252.137/32, 34.198.211.97/32, 34.208.237.45/32, 35.161.3.151/32, 35.164.29.75/32, 35.166.83.147/32, 52.214.35.33/32, 54.72.233.229/32, 34.192.15.175/32, 52.9.41.1/32, 54.76.3.75/32, 103.233.242.0/24, 52.8.84.222/32, 13.55.123.56/32, 13.237.238.24/32, 34.198.178.64/32, 34.208.39.80/32, 35.162.54.42/32, 52.63.74.64/32, 185.166.140.0/22, 52.63.91.5/32, 52.215.192.128/25, 52.51.80.244/32, 34.198.32.85/32, 34.198.203.127/32, 13.55.180.21/32, 13.54.202.141/32, 13.52.5.0/25, 13.236.8.128/25, 18.136.214.0/25, 18.184.99.128/25, 18.234.32.128/25, 18.246.31.128/25, 34.208.209.12/32, 52.52.234.127/32, 18.205.93.0/27, 54.77.145.185/32, 10.128.120.6, 10.132.120.7, 127.0.0.1\\nbamboo_dhOrg=snapfishdh\\nbamboo_planRepository_branch=develop\\nbamboo_agentWorkingDirectory=/root/bamboo-agent-home/xml-data/build-dir\\nbamboo_capability_system_git_executable=/usr/bin/git\\nbamboo_capability_system_jdk_JDK_1_8_0_231=/usr/lib/jvm/java-8-oracle\\nbamboo_nexusBuildUserPassword=********\\nbamboo_planRepository_branchDisplayName=develop\\nbamboo_planRepository_1_type=bbCloud\\nbamboo_planRepository_branchName=develop\\nbamboo_deploy_version_previous=commerce-fds-131\\nbamboo_dhPassword=********\\nbamboo_ArtifactoryHost=artifactory.tnt1-zone2.phl1\\nbamboo_MSAppCenter_Owner_Name=Mobile-App-Organization\\nbamboo_capability_system_jdk_JDK=/usr/lib/jvm/java-8-oracle\\nbamboo_deploy_rollback=false\\nbamboo_planRepository_type=bbCloud\\nbamboo_planRepository_1_username=\\nbamboo_OPS_USER=bamboot2\\nbamboo_ManualBuildTriggerReason_userName=ericl\\nbamboo_capability_system_builder_node_Node_js=/usr/local/bin/node\\nbamboo_working_directory=/root/bamboo-agent-home/xml-data/build-dir/1114114-95027212\\nbamboo_planKey=CT-CFD\\nbamboo_planRepository_1_repositoryUrl=ssh://git@bitbucket.org/sfglobal/commercefd\\nbamboo_planRepository_username=\\nbamboo_capability_system_jdk_JDK_1_8=/usr/lib/jvm/java-8-oracle\\nbamboo_capability_system_jdk_JDK_1_8_0_242=/usr/lib/jvm/java-8-openjdk-amd64\\nbamboo_capability_system_jdk_JDK_1_8_0_201=/usr/lib/jvm/java-8-oracle\\nbamboo_capability_system_jdk_JDK_1_8_0_161=/usr/lib/jvm/java-8-oracle\\nbamboo_planRepository_1_branchName=develop\\nbamboo_deploy_version=commerce-fds-131\\n build 10-Mar-2020 07:37:36 bamboo.buildResultKey : CT-CFD-140 build 10-Mar-2020 07:37:36 gps : PRODUCTION build 10-Mar-2020 07:37:36 gpsDate : 2020-03-10T07:37:36 error 10-Mar-2020 07:37:36 % Total % Received % Xferd Average Speed Time Time Time Current error 10-Mar-2020 07:37:36 Dload Upload Total Spent Left Speed error 10-Mar-2020 07:37:36 error 10-Mar-2020 07:37:36 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 build 10-Mar-2020 07:37:36 200, OK error 10-Mar-2020 07:37:36 100 8 100 8 0 0 455 0 --:--:-- --:--:-- --:--:-- 470 simple 10-Mar-2020 07:37:36 Finished task \'GPS update\' with result: Success simple 10-Mar-2020 07:37:36 Finalising the build... simple 10-Mar-2020 07:37:36 Stopping timer. simple 10-Mar-2020 07:37:36 Build 1114114-95027212-108789998 completed. simple 10-Mar-2020 07:37:36 Finished processing deployment result Deployment of \'commerce-fds-131\' on \'Production\' '; preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0); // Print the entire match result var_dump($matches);

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for PHP, please visit: http://php.net/manual/en/ref.pcre.php