diff options
author | Sven Vermeulen <sven.vermeulen@siphos.be> | 2011-10-25 20:33:55 +0200 |
---|---|---|
committer | Sven Vermeulen <sven.vermeulen@siphos.be> | 2011-10-25 20:33:55 +0200 |
commit | 6f020c3b5ef75a36f9c2814851a25b8ef40b837b (patch) | |
tree | 340367bc29c5e8942e08b48860b975ac0fee96ad | |
parent | Remove obsolete documents (diff) | |
download | hardened-docs-6f020c3b5ef75a36f9c2814851a25b8ef40b837b.tar.gz hardened-docs-6f020c3b5ef75a36f9c2814851a25b8ef40b837b.tar.bz2 hardened-docs-6f020c3b5ef75a36f9c2814851a25b8ef40b837b.zip |
Posix SH requires semicolon; thanks to Mick Reed for reporting
-rw-r--r-- | xml/selinux-faq.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xml/selinux-faq.xml b/xml/selinux-faq.xml index 70b2f69..39fbd49 100644 --- a/xml/selinux-faq.xml +++ b/xml/selinux-faq.xml @@ -17,8 +17,8 @@ The FAQ is a collection of solutions found on IRC, mailinglist, forums or elsewhere </abstract> -<version>16</version> -<date>2011-10-13</date> +<version>17</version> +<date>2011-10-25</date> <faqindex> <title>Questions</title> @@ -791,7 +791,7 @@ the feedback received from <c>matchpathcon</c>. <pre caption="Recovering from Portage installation failures"> # <i>FEATURES="-selinux" emerge --oneshot policycoreutils</i> # <i>for FILE in $(qlist policycoreutils); do \ -CONTEXT=$(matchpathcon -n ${FILE}) chcon ${CONTEXT} ${FILE}; done</i> +CONTEXT=$(matchpathcon -n ${FILE}); chcon ${CONTEXT} ${FILE}; done</i> </pre> <p> |