From patchwork Tue Oct 1 05:59:50 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schantl X-Patchwork-Id: 2443 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 46j7s95y37z3yyK for ; Tue, 1 Oct 2019 05:59:57 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 46j7s80n4pz3GM; Tue, 1 Oct 2019 05:59:56 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 46j7s75qYFz2yxy; Tue, 1 Oct 2019 05:59:55 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 46j7s63PP7z2yCr; Tue, 1 Oct 2019 05:59:54 +0000 (UTC) Received: from tuxedo.stevee (unknown [46.125.250.123]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 46j7s56bf9z2MK; Tue, 1 Oct 2019 05:59:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=201909rsa; t=1569909594; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=fLyClxSVH7Wx1fjFko5/lPDUo2QRqkG5J7itN6GnWOU=; b=en2WSo3vK4XeQyN7P8JC/I8NGeV5AUSQEnZy2/HPdGWE4ro2b3nXZyKXhXN1PuXGOvoavU KLdEMXTumztJWlEuklwoMirz8zzflvltDt4FqM5WaaoKzFyKhc8LfT3AODKJg4qXF+yVcP 8DyToTEicX4fLa6CXgDVyYyqhAzmw9fv8MAxoS/51E+OCacvoNnjl7QalvMQ4nZRc5ttbu 2M/2+7q/cdQjLL61yFuhn3PR+iOpD5edIrhOI4tb5O9L+ZxpXV7MrOBXi3QSpa0y/ukT34 SEo1jY5qwVB3J1PxNnQ9mcc22g5XXHQnuAK9bM+KPXD/BEd9GE9Y1UjC2YYhDQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=201909ed25519; t=1569909594; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=fLyClxSVH7Wx1fjFko5/lPDUo2QRqkG5J7itN6GnWOU=; b=U0xsdVMdaLc2IAMQMI2lF6+tk3pnVHSZnUfR0SbGZ0NYIMigIvBQ0ZuAdMsaenNkS7wOZe CN63vtspOAA/mqCg== From: Stefan Schantl To: development@lists.ipfire.org, location@lists.ipfire.org Subject: [PATCH] examples: python/create-database.py: Add license to database Date: Tue, 1 Oct 2019 07:59:50 +0200 Message-Id: <20191001055950.4365-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Authentication-Results: mail01.ipfire.org; auth=pass smtp.auth=stevee smtp.mailfrom=stefan.schantl@ipfire.org X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Stefan Schantl --- examples/python/create-database.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/python/create-database.py b/examples/python/create-database.py index 284c85f..651709c 100644 --- a/examples/python/create-database.py +++ b/examples/python/create-database.py @@ -10,6 +10,9 @@ w.vendor = "IPFire Project" # Set a description w.description = "This is a geo location database" +# Set a license +w.license = "CC" + # Add an AS a = w.add_as(204867) a.name = "Lightning Wire Labs GmbH"