You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metron.apache.org by mm...@apache.org on 2019/06/04 16:03:34 UTC

[metron] branch master updated: METRON-2145 Clarify RPM build documentation (mmiklavc) closes apache/metron#1434

This is an automated email from the ASF dual-hosted git repository.

mmiklavcic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/metron.git


The following commit(s) were added to refs/heads/master by this push:
     new dbf8bf9  METRON-2145 Clarify RPM build documentation (mmiklavc) closes apache/metron#1434
dbf8bf9 is described below

commit dbf8bf9dd0f7140092ba789ff048c2f6beeb79c6
Author: mmiklavc <mi...@gmail.com>
AuthorDate: Tue Jun 4 10:03:05 2019 -0600

    METRON-2145 Clarify RPM build documentation (mmiklavc) closes apache/metron#1434
---
 metron-deployment/packaging/docker/deb-docker/README.md | 2 +-
 metron-deployment/packaging/docker/rpm-docker/README.md | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/metron-deployment/packaging/docker/deb-docker/README.md b/metron-deployment/packaging/docker/deb-docker/README.md
index a0ac0b3..3f91b3f 100644
--- a/metron-deployment/packaging/docker/deb-docker/README.md
+++ b/metron-deployment/packaging/docker/deb-docker/README.md
@@ -28,7 +28,7 @@ If you are installing Metron using Ambari, these packages are necessary prerequi
 
 ### Quick Start
 
-1. Execute the following command from the project's root directory.
+1. Execute the following command from the project's root directory. This will build/package **all** of Metron prior to building the DEBs. See [Build Packages](#build-packages) below to only build the DEBs.
     ```
     mvn clean package -DskipTests -Pbuild-debs
     ```
diff --git a/metron-deployment/packaging/docker/rpm-docker/README.md b/metron-deployment/packaging/docker/rpm-docker/README.md
index 7667ed1..4f2bc08 100644
--- a/metron-deployment/packaging/docker/rpm-docker/README.md
+++ b/metron-deployment/packaging/docker/rpm-docker/README.md
@@ -26,7 +26,7 @@ If you are installing Metron using Ambari, these packages are necessary prerequi
 
 ### Quick Start
 
-1. Execute the following command from the project's root directory.
+1. Execute the following command from the project's root directory. This will build/package **all** of Metron prior to building the RPMs. See [Build Packages](#build-packages) below to only build the RPMs.
     ```
     mvn clean package -DskipTests -Pbuild-rpms
     ```
@@ -41,7 +41,7 @@ If you are installing Metron using Ambari, these packages are necessary prerequi
 If Metron has already been built, just the RPM packages can be built by executing the following commands.
   ```
   cd metron-deployment
-  mvn clean package -Pbuild-debs
+  mvn clean package -Pbuild-rpms
   ```
 
 ### How does this work?