From 200ac0a9b1240966465188bb518f592826a301f0 Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Fri, 27 Jun 2014 16:39:10 +0000 Subject: Do not enable the units when installing. They aren't eligible to be started until they are configured, and Ansible handles both the initial start, and configuring them to start automatically on next boot. --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0559468..52e3106 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,7 @@ install: mkdir -p "${DESTDIR}/usr/lib/systemd/system/multi-user.target.wants" cp units/* "${DESTDIR}/usr/lib/systemd/system" - for I in $$(cd units; ls); do \ - ln -sf ../$$I "${DESTDIR}/usr/lib/systemd/system/multi-user.target.wants/$$I"; \ - done + ln -sf ../trove-setup.service "${DESTDIR}/usr/lib/systemd/system/multi-user.target.wants/trove-setup.service" cp -r etc "${DESTDIR}" mkdir -p "${DESTDIR}/var/www/htdocs" cp http-assets/* "${DESTDIR}/var/www/htdocs" -- cgit v1.2.1