From 1117ac92c089d3fe6dc023d01543bae7fc411b13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Jeanneret?= Date: Wed, 6 Jun 2018 07:13:29 +0200 Subject: [PATCH] Added example blogposts The usage of privsep isn't really clear nor easy - adding examples is a good way to avoid bad practices, especially since those two entries actually provide hints for a common, clean way to use this library. Thumb up to Mike Carden for those precious links. Change-Id: If051ef284ad06aaf44a5eb81242b90af31fdcc06 --- doc/source/user/index.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/source/user/index.rst b/doc/source/user/index.rst index b0d166e..99d393b 100644 --- a/doc/source/user/index.rst +++ b/doc/source/user/index.rst @@ -5,3 +5,11 @@ To use oslo.privsep in a project:: import oslo_privsep + +You can read the following blog posts in order to know a bit more: + +* `How to make a privileged call with oslo privsep`_ +* `Adding oslo privsep to a new project, a worked example`_ + +.. _How to make a privileged call with oslo privsep: https://www.madebymikal.com/how-to-make-a-privileged-call-with-oslo-privsep/ +.. _Adding oslo privsep to a new project, a worked example: https://www.madebymikal.com/adding-oslo-privsep-to-a-new-project-a-worked-example/