Drop trailing white spaces.

parent 953e611c
...@@ -32,8 +32,8 @@ error when starting a container. ...@@ -32,8 +32,8 @@ error when starting a container.
"[syserr] lxc_start:96: Invalid argument - failed to fork into a new "[syserr] lxc_start:96: Invalid argument - failed to fork into a new
namespace" namespace"
Answer: Answer:
------- -------
read the lxc man page about kernel version prereq :) most probably read the lxc man page about kernel version prereq :) most probably
your kernel is not configured to support the container options you your kernel is not configured to support the container options you
......
...@@ -215,7 +215,7 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp> ...@@ -215,7 +215,7 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
The lxcpath of the original container. By default, the system The lxcpath of the original container. By default, the system
wide configured lxcpath will be used. wide configured lxcpath will be used.
--> -->
オリジナルのコンテナの lxcpath.デフォルトでは,システム全体で設定された lxcpath が使われます. オリジナルのコンテナの lxcpath.デフォルトでは,システム全体で設定された lxcpath が使われます.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
......
...@@ -112,7 +112,7 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp> ...@@ -112,7 +112,7 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
<listitem> <listitem>
<para> <para>
<!-- <!--
List existing snapshots. List existing snapshots.
--> -->
存在するスナップショットをリスト表示します. 存在するスナップショットをリスト表示します.
</para> </para>
...@@ -124,7 +124,7 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp> ...@@ -124,7 +124,7 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
<listitem> <listitem>
<para> <para>
<!-- <!--
Show snapshot comments in the snapshots listings. Show snapshot comments in the snapshots listings.
--> -->
スナップショットのリスト表示でスナップショットに対するコメントを表示します. スナップショットのリスト表示でスナップショットに対するコメントを表示します.
</para> </para>
......
...@@ -52,8 +52,8 @@ BuildRequires: python3-devel ...@@ -52,8 +52,8 @@ BuildRequires: python3-devel
%description %description
Containers are insulated areas inside a system, which have their own namespace Containers are insulated areas inside a system, which have their own namespace
for filesystem, network, PID, IPC, CPU and memory allocation and which can be for filesystem, network, PID, IPC, CPU and memory allocation and which can be
created using the Control Group and Namespace features included in the Linux created using the Control Group and Namespace features included in the Linux
kernel. kernel.
This package provides the lxc-* tools, which can be used to start a single This package provides the lxc-* tools, which can be used to start a single
......
...@@ -40,7 +40,7 @@ enum { ...@@ -40,7 +40,7 @@ enum {
LXC_ATTACH_MOVE_TO_CGROUP = 0x00000001, //!< Move to cgroup LXC_ATTACH_MOVE_TO_CGROUP = 0x00000001, //!< Move to cgroup
LXC_ATTACH_DROP_CAPABILITIES = 0x00000002, //!< Drop capabilities LXC_ATTACH_DROP_CAPABILITIES = 0x00000002, //!< Drop capabilities
LXC_ATTACH_SET_PERSONALITY = 0x00000004, //!< Set personality LXC_ATTACH_SET_PERSONALITY = 0x00000004, //!< Set personality
LXC_ATTACH_LSM_EXEC = 0x00000008, //!< Execute under a Linux Security Module LXC_ATTACH_LSM_EXEC = 0x00000008, //!< Execute under a Linux Security Module
/* the following are off by default */ /* the following are off by default */
LXC_ATTACH_REMOUNT_PROC_SYS = 0x00010000, //!< Remount /proc filesystem LXC_ATTACH_REMOUNT_PROC_SYS = 0x00010000, //!< Remount /proc filesystem
......
...@@ -149,7 +149,7 @@ struct lxc_container { ...@@ -149,7 +149,7 @@ struct lxc_container {
* \brief Determine process ID of the containers init process. * \brief Determine process ID of the containers init process.
* *
* \param c Container. * \param c Container.
* *
* \return pid of init process as seen from outside the * \return pid of init process as seen from outside the
* container. * container.
*/ */
......
...@@ -253,7 +253,7 @@ const char *lxc_global_config_value(const char *option_name) ...@@ -253,7 +253,7 @@ const char *lxc_global_config_value(const char *option_name)
{ "cgroup.use", NULL }, { "cgroup.use", NULL },
{ NULL, NULL }, { NULL, NULL },
}; };
/* Protected by a mutex to eliminate conflicting load and store operations */ /* Protected by a mutex to eliminate conflicting load and store operations */
static const char *values[sizeof(options) / sizeof(options[0])] = { 0 }; static const char *values[sizeof(options) / sizeof(options[0])] = { 0 };
const char *(*ptr)[2]; const char *(*ptr)[2];
const char *value; const char *value;
......
/* /*
* Copyright 2012 Serge Hallyn <serge.hallyn@ubuntu.com>. * Copyright 2012 Serge Hallyn <serge.hallyn@ubuntu.com>.
* Copyright 2012 Canonical Ltd. * Copyright 2012 Canonical Ltd.
* *
......
...@@ -343,7 +343,7 @@ if [ $? -ne 0 ]; then ...@@ -343,7 +343,7 @@ if [ $? -ne 0 ]; then
fi fi
eval set -- "$options" eval set -- "$options"
release=${release:-"cooker"} release=${release:-"cooker"}
if [ -f /etc/lsb-release ]; then if [ -f /etc/lsb-release ]; then
. /etc/lsb-release . /etc/lsb-release
if [ "$DISTRIB_ID" = "OpenMandrivaLinux" ]; then if [ "$DISTRIB_ID" = "OpenMandrivaLinux" ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment