Chugging through the 'basics' tutorial

mostly for fun ... and to see if I'm missing any foundational bits.
This commit is contained in:
Dan Buch
2012-07-14 10:59:48 -04:00
parent 0d62c61add
commit 1593c21031
4 changed files with 21 additions and 6 deletions

View File

@@ -14,8 +14,9 @@ start: $(HERE)/bin/pg_ctl $(HERE)/data $(HERE)/log
stop: $(HERE)/bin/pg_ctl $(HERE)/data $(HERE)/log
$(HERE)/bin/pg_ctl stop -D $(HERE)/data
# pg_ctl restart isn't quite what I want...
restart: $(HERE)/bin/pg_ctl $(HERE)/data $(HERE)/log
$(HERE)/bin/pg_ctl restart -D $(HERE)/data
$(MAKE) stop && $(MAKE) start
$(TARBALL_BASENAME).tar.bz2:
curl -L -O $(TARBALL_URL)