|
Revision 849, 183 bytes
(checked in by raphael, 1 year ago)
|
Generate database keys at setup time (fix for Debian packaging)
Added ispCP config (/etc/ispcp) and database backup system
LSB compatiblity for installing/removing init scripts
Added BACKUP_DOMAINS yes/no switch to enable/disable customer backups
Made ispcp_network and ispcp_daemon more or less LSB compatible
Fixed #688: updated ispcp_network in all distros (including fedora)
Fixed #645: improve welcome emails messages
Fixed #758: phpMyAdmin Security vulnerability
Added different message levels to be used with write_log to reduce verbosity of emails sent
Fixed some Makefiles which were replacing files in the local copy rather than in the installation
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
export |
|---|
| 3 |
|
|---|
| 4 |
KEYS_DIR=$(SYSTEM_ROOT)/keys |
|---|
| 5 |
|
|---|
| 6 |
install: |
|---|
| 7 |
$(SYSTEM_MAKE_DIRS) $(KEYS_DIR) |
|---|
| 8 |
cp ./rpl.pl $(KEYS_DIR) |
|---|
| 9 |
|
|---|
| 10 |
uninstall: |
|---|
| 11 |
$(RM) $(KEYS_DIR)/rpl.pl $(KEYS_DIR) |
|---|
| 12 |
|
|---|
| 13 |
.PHONY: install uninstall |
|---|