diff --git a/.gitignore b/.gitignore
index 5ad266e..84d4160 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,2 @@
 .*
 *.log
-data/*.dat
diff --git a/Makefile b/Makefile
index c59b465..b2cb8b0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,10 @@
 #
 # Populates the account with relevant files
 #
 
-all: .ssh/authorized_keys data/acquisitariat.dat
+all: .ssh/authorized_keys
 
 .ssh/authorized_keys:
 	mkdir -p -m 0700 .ssh
 	php bin/getpublickeys > .ssh/authorized_keys
 	chmod 600 .ssh/authorized_keys
-
-data/acquisitariat.dat:
-	openssl rand -hex 21 > data/acquisitariat.dat
-