From 1200f9b9e268bce0f9753b15fbd4302b32cb6c26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= <git@kchr.de> Date: Thu, 23 Nov 2017 15:06:32 +0100 Subject: [PATCH] Adds missing documentation for copyFileFromHost in NixOS tests --- nixos/doc/manual/development/writing-nixos-tests.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/nixos/doc/manual/development/writing-nixos-tests.xml b/nixos/doc/manual/development/writing-nixos-tests.xml index b9da712b86f0..7b25a39e83b8 100644 --- a/nixos/doc/manual/development/writing-nixos-tests.xml +++ b/nixos/doc/manual/development/writing-nixos-tests.xml @@ -262,8 +262,18 @@ startAll; <literal>waitForWindow(qr/Terminal/)</literal>.</para></listitem> </varlistentry> + <varlistentry> + <term><methodname>copyFileFromHost</methodname></term> + <listitem><para>Copies a file from host to machine, e.g., + <literal>copyFileFromHost("myfile", "/etc/my/important/file")</literal>.</para> + <para>The first argument is the file on the host. The file needs to be + accessible while building the nix derivation. The second argument is + the location of the file on the machine.</para> + </listitem> + </varlistentry> + </variablelist> </para> -</section> \ No newline at end of file +</section>