App-LXC-Container

 view release on metacpan or  search on metacpan

lib/App/LXC/Container/Texts/de.pm  view on Meta::CPAN

     ."ausgewählten Eintrags.  '++' erlaubt schließlich das Hinzufügen von\n"
     ."Paketen mit Bibliotheken, die von der ausgewählten Anwendung (oder\n"
     ."Bibliothek) benötigt werden - dies wird für fremde Anwendungen oder\n"
     ."Pakete mit fehlenden Abhängigkeiten benötigt. (Ansonsten werden die\n"
     ."installierten Abhängigkeiten später automatisch ergänzt.)\n\n"
     ."Die zweite Spalte erlaubt das Hinzufügen einzelner Dateien oder\n"
     ."Verzeichnisse. '-' entfernt wieder den ausgewählten Eintrag. '+' öffnet\n"
     ."eine Dateiauswahl zum Hinzufügen.  Alle neu hinzugefügten Einträge sind\n"
     ."zunächst schreibgeschützt, was mittels '*' geändert werden kann: 'OV'\n"
     ."konfiguriert ein überlagertes Dateisystem, daß das originale verdeckt\n"
     ."(overlay), 'RW' ermöglicht Schreibzugriff und 'EM' erzeugt eine leere\n"
     ."Datei oder ein leeres Verzeichnis.  Üblicherweise ist Schreibzugriff\n"
     ."nur für /tmp sowie einige ausgewählte Geräte und Sockets erlaubt.\n\n"
     ."Die dritte Spalte enthält eine Liste von Dateien oder Verzeichnissen,\n"
     ."die unterdrückt oder besonders behandelt werden sollen: 'IG' ist der\n"
     ."Standard und ignoriert das entsprechende Verzeichnis (bzw. die Datei).\n"
     ."Wie zuvor kann dies mit '*' geändert werden: 'CP' erzeugt eine Kopie\n"
     ."(nützlich für symbolische Links), 'EM' erzeugt das Verzeichnis oder die\n"
     ."Datei leer (empty), 'NM' verhindert für das angegebene Verzeichnis das\n"
     ."Optimieren / Zusammenfassen von Unterverzeichnissen bei der Erstellung\n"
     ." des Containers.\n\n"

lib/App/LXC/Container/Texts/en.pm  view on Meta::CPAN

    (
     CP
     => 'copy from original (at time of LXC update!)',
     EM
     => 'create empty',
     IG
     => 'ignore directory',
     NM
     => "don't merge sub-directories into directory",
     OV
     => 'overlay file-system (hide original)',
     RW
     => 'read/write access',
     _1_differs_from_standard__2
     => "%s differs from the standard configuration:\n%s",
     _1_does_not_exist
     => "%s doesn't exist!",
     _1_has_incompatible_state__2
     => '%s already has incompatible state to configuration of %s',
     _1_is_not_a_symbolic_link
     => '%s is not a symbolic link',

lib/App/LXC/Container/Texts/en.pm  view on Meta::CPAN

     ."generated container.  With '-' you can remove a selected entry.  With\n"
     ."'+' you open a file-selection dialog, where you can select a file or\n"
     ."directory, whose (installed) package(s) are added to the list. '*'\n"
     ."allows you to modify an existing entry.  Finally '++' allows adding\n"
     ."dependencies to libraries used by an application (or other library).\n"
     ."Note that the later is only needed for 3rd party applications.\n\n"
     ."The second column contains single files and/or directories to be\n"
     ."included into the generated container.  '-' again removes a selected\n"
     ."entry.  '+' again allows adding an entry using a file-selection dialog.\n"
     ."All added entries are read-only by default.  With '*' you can change\n"
     ."this to 'OV' for an overlay mount hiding the original file-system\n"
     ."outside of the container or 'RW' to allow modifications of the original\n"
     ."files.  Note that by default we only allow write access to files outside\n"
     ."of the container in the '/tmp' directory and a few relevant devices and\n"
     ."sockets.\n\n"
     ."The third column contains a list of files and/or directories that are\n"
     ."filtered out from the files / directories determined by the first two\n"
     ."lists.  The default is ignoring the directories ('IG'), but with the\n"
     ."modification dialog accessed by '*' there are three other possible\n"
     ."variants: 'CP' copies exactly that item (useful for symbolic links),\n"
     ."'EM' creates it empty and 'NM' prevents merging sub-directories of that\n"

t/03-setup.t  view on Meta::CPAN

    $re_2nd_cancel_ok . $re_select;

my $re_select_in_files_list =
    '(?:^<\+/-> ++)?' . $re_listbox_head .
    '(?:^< ?[1-9]\d*>[ *]{3}(  |OV|RW) /(?-s:.++)\s++){3,4}' .
    $re_select_listbox;
my $re_modify_perm_dialogue =
    '^========== (?:modify file permissions\s++){2}' .
    '^' .
    $re_radio . ' ++read-only access\s++' .
    $re_radio . 'OV overlay file-system \(hide original\)\s++' .
    $re_radio . 'RW read/write access\s++' .
    $re_2nd_cancel_ok;
my $re_perm_radio_select =
    '^<1>    read-only access\s++' .
    '^<2> OV overlay file-system \(hide original\)\s++' .
    '^<3> RW read/write access\s++' .
    $re_select_radio;

my $re_select_in_filter_list =
    '(?:^<\+/-> ++)?' . $re_listbox_head .
    '(?:^< ?[1-9]\d*>[ *]{3}(IG|CP|EM|NM) /(?-s:.++)\s++){3,6}' .
    $re_select_listbox;
my $re_modify_filter_dialogue =
    '^========== (?:modify type of filter\s++){2}' .
    '^' .



( run in 0.890 second using v1.01-cache-2.11-cpan-49f99fa48dc )