Skip to content
Snippets Groups Projects
Select Git revision
  • d3dd49c4a9a4c92086b8b3ec2235aa667bd62d19
  • master default protected
  • 133-fail2ban-page
  • reorganisation
  • 16-maintenace-service
  • 11-fail2ban
  • 6-monit-update
  • 7-dolibarr-fail2ban
  • 6-surveillance-interne-des-serveur
  • test-glpi
  • 2-migrate-to-phpfpm
  • jessie
  • github
13 results

Makefile

Blame
  • Makefile 483 B
    
    .PHONY: tarball
    
    default:
    	echo "make tarball"
    
    tarball : initInstall.sh installMySQL.sh installNextcloud.env \
    	installNextcloud.sh installNextcloudApps.sh run.sh \
    	nextcloudStrongDirectoryPermissions.sh
    	mkdir NoCloud-Auto-Installer
    	cp -r *.sh *.env *.conf DOLIBARR_PACKAGES NoCloud-Auto-Installer
    	tar cf NoCloud-Auto-Installer.tar NoCloud-Auto-Installer
    	rm -r NoCloud-Auto-Installer
    
    clean :
    	@if [ -f NoCloud-Auto-Installer.tar ]; then \
    		rm NoCloud-Auto-Installer.tar; fi