From 9ad649ea369ed881c5ed779a7a2e7a050673776b Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Mon, 18 Jun 2007 20:33:30 +0000 Subject: [PATCH] Added services tree checkout - needed, for example, for apache-httpd svn path=/nixos/trunk/; revision=8890 --- installer/nixos-checkout.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/installer/nixos-checkout.sh b/installer/nixos-checkout.sh index a1defc3f1ce4..b4767d292e10 100644 --- a/installer/nixos-checkout.sh +++ b/installer/nixos-checkout.sh @@ -21,9 +21,14 @@ if test -e nixpkgs -a ! -e nixpkgs/.svn; then mv nixpkgs nixpkgs-$backupTimestamp fi +if test -e nixos/services -a ! -e nixos/services/.svn; then + mv nixos/services services-$backupTimestamp +fi + # Check out the NixOS and Nixpkgs sources. svn co https://svn.cs.uu.nl:12443/repos/trace/nixos/trunk nixos svn co https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk nixpkgs +svn co https://svn.cs.uu.nl:12443/repos/trace/services/trunk nixos/services # A few symlink. ln -sfn ../nixpkgs/pkgs nixos/pkgs