Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Makefile 351 B
Newer Older
  • Learn to ignore specific revisions
  • EDITOR = geany
    
    clean:
    	# Remove files not in source control
    	find . -type f -name "*.retry" -delete
    	find . -type f -name "*.orig" -delete
    
    open_all:
    
    	${EDITOR} .gitignore inventory Makefile README.md
    
    	${EDITOR} tasks/files/*
    	${EDITOR} tasks/vars/*
    
    	${EDITOR} tasks/*.yml
    
    
    inventory_generation:
    	cp inventory.sample inventory && ${EDITOR} inventory