40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
From 7ab35273917c5e6a9fa3d528053d146e32013def Mon Sep 17 00:00:00 2001
|
|
From: Terje Rosten <terje.rosten@ntnu.no>
|
|
Date: Sun, 2 Feb 2020 09:58:43 +0100
|
|
Subject: [PATCH] Fix paths
|
|
|
|
---
|
|
Makefile | 7 +++----
|
|
1 file changed, 3 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 2d04cd9..7a6d5fd 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -2,10 +2,10 @@
|
|
# User configurables:
|
|
##########################################################
|
|
# Location where gweb should be installed to (excluding conf, dwoo dirs).
|
|
-GDESTDIR = /usr/share/ganglia-webfrontend
|
|
+GDESTDIR = /usr/share/ganglia
|
|
|
|
# Location where default apache configuration should be installed to.
|
|
-GCONFDIR = /etc/ganglia-web
|
|
+GCONFDIR = /etc/ganglia
|
|
|
|
# Gweb statedir (where conf dir and Dwoo templates dir are stored)
|
|
GWEB_STATEDIR = /var/lib/ganglia-web
|
|
@@ -86,8 +86,7 @@ install: dist-dir
|
|
mkdir -p $(DESTDIR)/$(GWEB_STATEDIR) && \
|
|
rsync -a $(DIST_DIR)/conf $(DESTDIR)/$(GWEB_STATEDIR) && \
|
|
mkdir -p $(DESTDIR)/$(GDESTDIR) && \
|
|
- rsync --exclude "conf" -a $(DIST_DIR)/* $(DESTDIR)/$(GDESTDIR) && \
|
|
- chown -R $(APACHE_USER):$(APACHE_GROUP) $(DESTDIR)/$(GWEB_STATEDIR)
|
|
+ rsync --exclude "conf" -a $(DIST_DIR)/* $(DESTDIR)/$(GDESTDIR)
|
|
|
|
dist-gzip: dist-dir
|
|
if [ -f $(DIST_TARBALL) ]; then \
|
|
--
|
|
2.24.1
|
|
|