chiark / gitweb /
nspawn: rename --file-label to --apifs-label since it's really just about the API...
authorLennart Poettering <lennart@poettering.net>
Fri, 7 Feb 2014 18:29:28 +0000 (19:29 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 7 Feb 2014 18:29:28 +0000 (19:29 +0100)
TODO
man/systemd-nspawn.xml
src/nspawn/nspawn.c

diff --git a/TODO b/TODO
index b9a0f0f6346ceb2939212ad68b2f3bbd639bde51..57e82ff262a39fa49f3cc84f84eb7606de9f9c37 100644 (file)
--- a/TODO
+++ b/TODO
@@ -36,8 +36,6 @@ External:
 
 Features:
 
-* nspawn: rename --file-label to --apifs-label
-
 * hookup nspawn and PrivateNetwork=yes with "ip netns"
 
 * socket units: support creating sockets in different namespace,
index df318d7a43c02c6ac33bc181728b9aae00603dbe..c95a7c0e9a5148600a1adf3e0a2340190b142a42 100644 (file)
 
                         <varlistentry>
                                 <term><option>-L</option></term>
-                                <term><option>--file-label=</option></term>
+                                <term><option>--apifs-label=</option></term>
 
                                 <listitem><para>Sets the mandatory
                                 access control (MAC/SELinux) file
index f904ebea6439c80edaa91411e5cc3f0c3a1b7978..46ca3357b4706d637da3a116570aae8a6252b88f 100644 (file)
@@ -81,7 +81,7 @@ static char *arg_user = NULL;
 static sd_id128_t arg_uuid = {};
 static char *arg_machine = NULL;
 static char *arg_process_label = NULL;
-static char *arg_file_label = NULL;
+static char *arg_apifs_label = NULL;
 static const char *arg_slice = NULL;
 static bool arg_private_network = false;
 static bool arg_read_only = false;
@@ -131,7 +131,7 @@ static int help(void) {
                "     --uuid=UUID            Set a specific machine UUID for the container\n"
                "  -M --machine=NAME         Set the machine name for the container\n"
                "  -S --slice=SLICE          Place the container in the specified slice\n"
-               "  -L --file-label=LABEL     Set the MAC file label to be used by tmpfs file\n"
+               "  -L --apifs-label=LABEL    Set the MAC file label to be used by API/tmpfs file\n"
                "                            systems in the container\n"
                "  -Z --process-label=LABEL  Set the MAC label to be used by processes in\n"
                "                            the container\n"
@@ -185,7 +185,7 @@ static int parse_argv(int argc, char *argv[]) {
                 { "slice",           required_argument, NULL, 'S'                 },
                 { "setenv",          required_argument, NULL, ARG_SETENV          },
                 { "process-label",   required_argument, NULL, 'Z'                 },
-                { "file-label",      required_argument, NULL, 'L'                 },
+                { "apifs-label",     required_argument, NULL, 'L'                 },
                 { "quiet",           no_argument,       NULL, 'q'                 },
                 {}
         };
@@ -262,7 +262,7 @@ static int parse_argv(int argc, char *argv[]) {
                         break;
 
                 case 'L':
-                        arg_file_label = optarg;
+                        arg_apifs_label = optarg;
                         break;
 
                 case 'Z':
@@ -449,8 +449,8 @@ static int mount_all(const char *dest) {
                 mkdir_p(where, 0755);
 
 #ifdef HAVE_SELINUX
-                if (arg_file_label && (streq_ptr(mount_table[k].what, "tmpfs") || streq_ptr(mount_table[k].what, "devpts"))) {
-                        options = strjoin(mount_table[k].options, ",context=\"", arg_file_label, "\"", NULL);
+                if (arg_apifs_label && (streq_ptr(mount_table[k].what, "tmpfs") || streq_ptr(mount_table[k].what, "devpts"))) {
+                        options = strjoin(mount_table[k].options, ",context=\"", arg_apifs_label, "\"", NULL);
                         if (!options)
                                 return log_oom();