From a8b5a2c8a7fe8d0a78236560a8bac065af287eb0 Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Fri, 3 Jun 2011 13:21:20 +0000 Subject: [PATCH] Fix nightly build. --- src/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Makefile b/src/Makefile index 43f4bd62..e0fde013 100644 --- a/src/Makefile +++ b/src/Makefile @@ -31,8 +31,9 @@ LIBS=functions.sh functions_hosting.sh functions_dns.sh BIN=$(DESTDIR)/usr/lib/alternc/ install: - chown root:alterncpanel $(BIN) + # Group 1999 references alterncpanel + chown root:1999 $(BIN) chmod 755 $(BIN) - install -o root -g alterncpanel -m4750 $(SETUID) du.pl $(BIN) - install -o root -g alterncpanel -m0750 $(SCRIPTS) $(BIN) - install -o root -g alterncpanel -m0644 $(LIBS) $(BIN) + install -o root -g 1999 -m4750 $(SETUID) du.pl $(BIN) + install -o root -g 1999 -m0750 $(SCRIPTS) $(BIN) + install -o root -g 1999 -m0644 $(LIBS) $(BIN)