# smartupstools: conf

CONFFILES=hosts.conf upsmon.conf

all:
clean:

install:
	@for f in $(CONFFILES) ; do \
		if [ -f $(BASEPATH)/etc/$$f ]; then \
			echo "Preserving existing config file: $$f"; \
		else \
			echo cp $$f $(BASEPATH)/etc; \
			cp $$f $(BASEPATH)/etc; \
		fi; \
	done
