|
Revision 849, 312 bytes
(checked in by raphael, 15 months 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 | export |
|---|
| 2 | |
|---|
| 3 | install: |
|---|
| 4 | |
|---|
| 5 | $(SYSTEM_MAKE_DIRS) $(SYSTEM_CONF)/cron.d |
|---|
| 6 | cp ./ispcp $(SYSTEM_CONF)/cron.d |
|---|
| 7 | cp -R ./backup $(SYSTEM_CONF)/cron.d |
|---|
| 8 | cp -R ./parts $(SYSTEM_CONF)/cron.d |
|---|
| 9 | cp -R ./working $(SYSTEM_CONF)/cron.d |
|---|
| 10 | cp $(SYSTEM_CONF)/cron.d/ispcp $(SYSTEM_CONF)/cron.d/working |
|---|
| 11 | |
|---|
| 12 | uninstall: |
|---|
| 13 | |
|---|
| 14 | rm -rf $(ROOT_CONF)/cron.d |
|---|