realmd-0.17.1/0000755003225100322510000000000014315277004013357 5ustar00sbosesbose00000000000000realmd-0.17.1/AUTHORS0000644003225100322510000000003614046520517014427 0ustar00sbosesbose00000000000000Stef Walter realmd-0.17.1/service/0000755003225100322510000000000014315277002015015 5ustar00sbosesbose00000000000000realmd-0.17.1/service/realm-settings.h0000644003225100322510000000404314046520517020130 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SETTINGS_H__ #define __REALM_SETTINGS_H__ #include G_BEGIN_DECLS void realm_settings_init (void); void realm_settings_uninit (void); gboolean realm_settings_load (const gchar *filename, GError **error); void realm_settings_add (const gchar *section, const gchar *key, const gchar *value); const gchar * realm_settings_path (const gchar *name); GHashTable * realm_settings_section (const gchar *section); const gchar * realm_settings_value (const gchar *section, const gchar *key); const gchar * realm_settings_string (const gchar *section, const gchar *key); gdouble realm_settings_double (const gchar *section, const gchar *key, gdouble def); gboolean realm_settings_boolean (const gchar *section, const gchar *key, gboolean def); G_END_DECLS #endif /* __REALM_SETTINGS_H__ */ realmd-0.17.1/service/realm-usleep-async.h0000644003225100322510000000201114046520517020671 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Marius Vollmer */ #include "config.h" #ifndef __REALM_USLEEP_ASYNC_H__ #define __REALM_USLEEP_ASYNC_H__ #include #include G_BEGIN_DECLS /* A cancellable delay */ void realm_usleep_async (gulong microseconds, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_usleep_finish (GAsyncResult *result, GError **error); G_END_DECLS #endif /* __REALM_USLEEP_ASYNC_H__ */ realmd-0.17.1/service/realm-samba-winbind.h0000644003225100322510000000325614046520517021010 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SAMBA_WINBIND_H__ #define __REALM_SAMBA_WINBIND_H__ #include G_BEGIN_DECLS void realm_samba_winbind_configure_async (RealmIniConfig *config, const gchar *domain_name, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_samba_winbind_configure_finish (GAsyncResult *result, GError **error); void realm_samba_winbind_deconfigure_async (RealmIniConfig *config, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_samba_winbind_deconfigure_finish (GAsyncResult *result, GError **error); G_END_DECLS #endif /* __REALM_SAMBA_WINBIND_H__ */ realmd-0.17.1/service/realm-provider.h0000644003225100322510000001136014046520517020122 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_PROVIDER_H__ #define __REALM_PROVIDER_H__ #include #include "realm-dbus-generated.h" #include "realm-disco.h" #include "realm-kerberos.h" G_BEGIN_DECLS #define REALM_TYPE_PROVIDER (realm_provider_get_type ()) #define REALM_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_PROVIDER, RealmProvider)) #define REALM_IS_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_PROVIDER)) #define REALM_PROVIDER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), REALM_TYPE_PROVIDER, RealmProviderClass)) #define REALM_IS_PROVIDER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), REALM_TYPE_PROVIDER)) #define REALM_PROVIDER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), REALM_TYPE_PROVIDER, RealmProviderClass)) typedef struct _RealmProvider RealmProvider; typedef struct _RealmProviderClass RealmProviderClass; typedef struct _RealmProviderPrivate RealmProviderPrivate; struct _RealmProvider { RealmDbusProviderSkeleton parent; RealmProviderPrivate *pv; }; struct _RealmProviderClass { RealmDbusProviderSkeletonClass parent_class; void (* discover_async) (RealmProvider *provider, const gchar *string, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); GList * (* discover_finish) (RealmProvider *provider, GAsyncResult *result, gint *relevance, GError **error); GList * (* get_realms) (RealmProvider *provider); }; GType realm_provider_get_type (void) G_GNUC_CONST; RealmProvider * realm_provider_start (GDBusConnection *connection, GType type); void realm_provider_stop_all (void); RealmKerberos * realm_provider_lookup_or_register_realm (RealmProvider *self, GType realm_type, const gchar *realm_name, RealmDisco *disco); gboolean realm_provider_is_default (const gchar *type, const gchar *name); void realm_provider_discover (RealmProvider *self, const gchar *string, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); GList * realm_provider_discover_finish (RealmProvider *self, GAsyncResult *result, gint *relevance, GError **error); void realm_provider_set_name (RealmProvider *self, const gchar *value); GList * realm_provider_get_realms (RealmProvider *self); void realm_provider_set_realm_paths (RealmProvider *self, const gchar **value); gboolean realm_provider_match_software (GVariant *options, const gchar *server_software, const gchar *client_software, const gchar *membership_software); G_END_DECLS #endif /* __REALM_KERBEROS_PROVIDER_H__ */ realmd-0.17.1/service/realm-example.c0000644003225100322510000004000514046520517017714 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-dbus-constants.h" #include "realm-dbus-generated.h" #include "realm-errors.h" #include "realm-example.h" #include "realm-ini-config.h" #include "realm-invocation.h" #include "realm-kerberos-membership.h" #include "realm-settings.h" #include "realm-usleep-async.h" #include struct _RealmExample { RealmKerberos parent; RealmIniConfig *config; gulong config_sig; }; typedef struct { RealmKerberosClass parent_class; } RealmExampleClass; enum { PROP_0, PROP_PROVIDER, }; static void realm_example_kerberos_membership_iface (RealmKerberosMembershipIface *iface); G_DEFINE_TYPE_WITH_CODE (RealmExample, realm_example, REALM_TYPE_KERBEROS, G_IMPLEMENT_INTERFACE (REALM_TYPE_KERBEROS_MEMBERSHIP, realm_example_kerberos_membership_iface); ); static void realm_example_init (RealmExample *self) { } static void realm_example_constructed (GObject *obj) { RealmKerberos *kerberos = REALM_KERBEROS (obj); G_OBJECT_CLASS (realm_example_parent_class)->constructed (obj); realm_kerberos_set_details (kerberos, REALM_DBUS_OPTION_SERVER_SOFTWARE, REALM_DBUS_IDENTIFIER_EXAMPLE, REALM_DBUS_OPTION_CLIENT_SOFTWARE, REALM_DBUS_IDENTIFIER_EXAMPLE, NULL); realm_kerberos_set_login_policy (kerberos, REALM_KERBEROS_ALLOW_ANY_LOGIN); } static gboolean validate_membership_options (GVariant *options, GError **error) { const gchar *software; /* Figure out the method that we're going to use to enroll */ if (g_variant_lookup (options, REALM_DBUS_OPTION_MEMBERSHIP_SOFTWARE, "&s", &software)) { if (!g_str_equal (software, REALM_DBUS_IDENTIFIER_EXAMPLE)) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, _("Unsupported or unknown membership software '%s'"), software); return FALSE; } } return TRUE; } static gboolean match_admin_and_password (RealmIniConfig *config, const gchar *realm_name, const gchar *admin_name, GBytes *password) { const gchar *admin; const gchar *pass; gconstpointer data; gsize size; admin = realm_settings_value (realm_name, "example-administrator"); if (admin == NULL) return FALSE; if (!g_str_equal (admin_name, admin)) return FALSE; pass = realm_settings_value (realm_name, "example-password"); if (pass == NULL) return FALSE; data = g_bytes_get_data (password, &size); if (strlen (pass) != size) return FALSE; return (memcmp (data, pass, size) == 0); } static gdouble settings_delay (const gchar *realm_name, const gchar *key) { return realm_settings_double (realm_name, key, 0.0) * G_USEC_PER_SEC; } static void on_join_sleep_done (GObject *source, GAsyncResult *res, gpointer user_data) { GTask *task = G_TASK (user_data); RealmExample *self = g_task_get_source_object (task); GError *error = NULL; const gchar *realm_name; if (realm_usleep_finish (res, &error)) { realm_name = realm_kerberos_get_name (REALM_KERBEROS (self)); realm_ini_config_change (self->config, realm_name, &error, "login-formats", "%U@%D", "login-permitted", "", "login-policy", REALM_DBUS_LOGIN_POLICY_PERMITTED, NULL); } if (error) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void realm_example_join_async (RealmKerberosMembership *membership, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmExample *self = REALM_EXAMPLE (membership); RealmKerberos *kerberos = REALM_KERBEROS (self); GTask *task; GError *error = NULL; const gchar *realm_name; g_return_if_fail (cred->type == REALM_CREDENTIAL_PASSWORD); realm_name = realm_kerberos_get_name (kerberos); task = g_task_new (self, NULL, callback, user_data); /* Make sure not already enrolled in a realm */ if (realm_ini_config_have_section (self->config, realm_name)) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_ALREADY_CONFIGURED, _("Already joined to a domain")); } else if (!validate_membership_options (options, &error)) { g_task_return_error (task, error); } else if (!match_admin_and_password (self->config, realm_name, cred->x.password.name, cred->x.password.value)) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_AUTH_FAILED, _("Admin name or password is not valid")); } else { realm_usleep_async (settings_delay (realm_name, "example-join-delay"), realm_invocation_get_cancellable (invocation), on_join_sleep_done, g_object_ref (task)); } g_object_unref (task); } static const RealmCredential * realm_example_join_creds (RealmKerberosMembership *membership) { static const RealmCredential creds[] = { { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_ADMIN }, { 0, } }; return creds; } static void on_leave_sleep_done (GObject *source, GAsyncResult *res, gpointer user_data) { GTask *task = G_TASK (user_data); RealmExample *self = g_task_get_source_object (task); GError *error = NULL; const gchar *realm_name; if (realm_usleep_finish (res, &error)) { realm_name = realm_kerberos_get_name (REALM_KERBEROS (self)); if (realm_ini_config_begin_change (self->config, &error)) { realm_ini_config_remove_section (self->config, realm_name); realm_ini_config_finish_change (self->config, &error); } } if (error) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (self); } static GTask * setup_leave (RealmExample *self, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; const gchar *realm_name; realm_name = realm_kerberos_get_name (REALM_KERBEROS (self)); task = g_task_new (self, NULL, callback, user_data); /* Check that enrolled in this realm */ if (!realm_ini_config_have_section (self->config, realm_name)) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_NOT_CONFIGURED, _("Not currently joined to this domain")); g_object_unref (task); return NULL; } return task; } static void realm_example_leave_password_async (RealmKerberosMembership *membership, const gchar *name, GBytes *password, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmExample *self = REALM_EXAMPLE (membership); GTask *task; const gchar *realm_name; task = setup_leave (self, options, invocation, callback, user_data); if (task == NULL) return; realm_name = realm_kerberos_get_name (REALM_KERBEROS (self)); if (!match_admin_and_password (self->config, realm_name, name, password)) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_AUTH_FAILED, _("Admin name or password is not valid")); } else { realm_usleep_async (settings_delay (realm_name, "example-leave-delay"), realm_invocation_get_cancellable (invocation), on_leave_sleep_done, g_object_ref (task)); } g_object_unref (task); } static void realm_example_leave_automatic_async (RealmKerberosMembership *membership, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmExample *self = REALM_EXAMPLE (membership); GTask *task; const gchar *realm_name; task = setup_leave (self, options, invocation, callback, user_data); if (task == NULL) return; realm_name = realm_kerberos_get_name (REALM_KERBEROS (self)); if (realm_settings_boolean (realm_name, "example-no-auto-leave", FALSE) == TRUE) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_AUTH_FAILED, _("Need credentials for leaving this domain")); } else { realm_usleep_async (settings_delay (realm_name, "example-leave-delay"), realm_invocation_get_cancellable (invocation), on_leave_sleep_done, g_object_ref (task)); } g_object_unref (task); } static void realm_example_leave_async (RealmKerberosMembership *membership, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { switch (cred->type) { case REALM_CREDENTIAL_AUTOMATIC: realm_example_leave_automatic_async (membership, options, invocation, callback, user_data); break; case REALM_CREDENTIAL_PASSWORD: realm_example_leave_password_async (membership, cred->x.password.name, cred->x.password.value, options, invocation, callback, user_data); break; default: g_return_if_reached (); } } static const RealmCredential * realm_example_leave_creds (RealmKerberosMembership *membership) { static const RealmCredential creds[] = { { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_ADMIN }, { REALM_CREDENTIAL_AUTOMATIC, REALM_CREDENTIAL_OWNER_NONE }, { 0, } }; return creds; } static void realm_example_logins_async (RealmKerberos *realm, GDBusMethodInvocation *invocation, RealmKerberosLoginPolicy login_policy, const gchar **add, const gchar **remove, GVariant *options, GAsyncReadyCallback callback, gpointer user_data) { RealmExample *self = REALM_EXAMPLE (realm); GTask *task; GError *error = NULL; const gchar *name; task = g_task_new (realm, NULL, callback, user_data); name = realm_kerberos_get_name (realm); if (realm_ini_config_begin_change (self->config, &error)) { realm_ini_config_set (self->config, name, "login-policy", realm_kerberos_login_policy_to_string (login_policy), NULL); realm_ini_config_set_list_diff (self->config, name, "login-permitted", ", ", add, remove); realm_ini_config_finish_change (self->config, &error); } if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void update_properties (RealmExample *self) { RealmKerberos *kerberos = REALM_KERBEROS (self); GDBusInterface *iface; const gchar *name; gchar *domain; gchar *realm; gchar **formats; gchar **permitted; gchar *policy; const gchar *admin; gboolean configured; g_object_freeze_notify (G_OBJECT (self)); name = realm_kerberos_get_name (kerberos); domain = name ? g_ascii_strdown (name, -1) : NULL; realm_kerberos_set_domain_name (kerberos, domain); g_free (domain); realm = name ? g_ascii_strup (name, -1) : NULL; realm_kerberos_set_realm_name (kerberos, realm); g_free (realm); /* Setup the workgroup property */ formats = realm_ini_config_get_list (self->config, name, "login-formats", ", "); realm_kerberos_set_login_formats (kerberos, (const gchar **)formats); g_strfreev (formats); permitted = realm_ini_config_get_list (self->config, name, "login-permitted", ", "); realm_kerberos_set_permitted_logins (kerberos, (const gchar **)permitted); g_strfreev (permitted); policy = realm_ini_config_get (self->config, name, "login-policy"); iface = g_dbus_object_get_interface (G_DBUS_OBJECT (self), REALM_DBUS_REALM_INTERFACE); g_object_set (iface, "login-policy", policy, NULL); g_free (policy); admin = realm_settings_value (name, "example-administrator"); realm_kerberos_set_suggested_admin (kerberos, admin ? admin : ""); configured = realm_ini_config_have_section (self->config, name); realm_kerberos_set_configured (kerberos, configured); } static void on_config_changed (RealmIniConfig *config, gpointer user_data) { update_properties (REALM_EXAMPLE (user_data)); } static gboolean realm_example_membership_generic_finish (RealmKerberosMembership *realm, GAsyncResult *result, GError **error) { if (g_task_propagate_boolean (G_TASK (result), error)) return FALSE; update_properties (REALM_EXAMPLE (realm)); return TRUE; } static gboolean realm_example_generic_finish (RealmKerberos *realm, GAsyncResult *result, GError **error) { if (g_task_propagate_boolean (G_TASK (result), error)) return FALSE; update_properties (REALM_EXAMPLE (realm)); return TRUE; } static void realm_example_set_property (GObject *obj, guint prop_id, const GValue *value, GParamSpec *pspec) { RealmExample *self = REALM_EXAMPLE (obj); RealmProvider *provider; switch (prop_id) { case PROP_PROVIDER: provider = g_value_get_object (value); g_object_get (provider, "example-config", &self->config, NULL); self->config_sig = g_signal_connect (self->config, "changed", G_CALLBACK (on_config_changed), self); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec); break; } } static void realm_example_notify (GObject *obj, GParamSpec *spec) { if (g_str_equal (spec->name, "name")) update_properties (REALM_EXAMPLE (obj)); if (G_OBJECT_CLASS (realm_example_parent_class)->notify) G_OBJECT_CLASS (realm_example_parent_class)->notify (obj, spec); } static void realm_example_finalize (GObject *obj) { RealmExample *self = REALM_EXAMPLE (obj); if (self->config) g_object_unref (self->config); G_OBJECT_CLASS (realm_example_parent_class)->finalize (obj); } void realm_example_class_init (RealmExampleClass *klass) { RealmKerberosClass *kerberos_class = REALM_KERBEROS_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); kerberos_class->logins_async = realm_example_logins_async; kerberos_class->logins_finish = realm_example_generic_finish; object_class->constructed = realm_example_constructed; object_class->set_property = realm_example_set_property; object_class->notify = realm_example_notify; object_class->finalize = realm_example_finalize; g_object_class_override_property (object_class, PROP_PROVIDER, "provider"); } static void realm_example_kerberos_membership_iface (RealmKerberosMembershipIface *iface) { iface->join_async = realm_example_join_async; iface->join_finish = realm_example_membership_generic_finish; iface->join_creds = realm_example_join_creds; iface->leave_async = realm_example_leave_async; iface->leave_finish = realm_example_membership_generic_finish; iface->leave_creds = realm_example_leave_creds; } RealmKerberos * realm_example_new (const gchar *name, RealmProvider *provider) { return g_object_new (REALM_TYPE_EXAMPLE, "name", name, "provider", provider, NULL); } realmd-0.17.1/service/realm-invocation.c0000644003225100322510000004030714046520517020437 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-dbus-generated.h" #include "realm-invocation.h" #include #include #include #include typedef struct { const gchar *interface; const gchar *method; const gchar *action_id; int options_param; } InvocationMethod; static InvocationMethod invocation_methods[] = { { REALM_DBUS_PROVIDER_INTERFACE, "Discover", "org.freedesktop.realmd.discover-realm", 2 }, { REALM_DBUS_KERBEROS_MEMBERSHIP_INTERFACE, "Join", "org.freedesktop.realmd.configure-realm", 2 }, { REALM_DBUS_KERBEROS_MEMBERSHIP_INTERFACE, "Leave", "org.freedesktop.realmd.deconfigure-realm", 2 }, { REALM_DBUS_REALM_INTERFACE, "Deconfigure", "org.freedesktop.realmd.deconfigure-realm", 1 }, { REALM_DBUS_REALM_INTERFACE, "ChangeLoginPolicy", "org.freedesktop.realmd.login-policy", 4 }, }; typedef struct { GCancellable *cancellable; gchar *identifier; const gchar *operation; const InvocationMethod *method; } InvocationData; typedef struct { guint watch; gchar *locale; } InvocationClient; static const GVariantType *asv_type = NULL; static GObject *current_invocation = NULL; static GQuark invocation_data_quark = 0; /* These are protected by the mutex */ static GHashTable *invocation_clients = NULL; static GHashTable *cancellables = NULL; static PolkitAuthority *polkit_authority = NULL; G_LOCK_DEFINE_STATIC (invocations); #define PEER ":peer" static void on_cancellable_gone (gpointer user_data, GObject *where_the_object_was) { gchar *invocation_id = user_data; G_LOCK (invocations); g_hash_table_remove (cancellables, invocation_id); G_UNLOCK (invocations); } static void invocation_data_free (void *data) { InvocationData *invo = data; if (invo->cancellable) g_object_unref (invo->cancellable); g_free (invo->identifier); g_free (invo); } static void on_client_vanished (GDBusConnection *connection, const gchar *name, gpointer user_data) { g_debug ("client gone away: %s", name); G_LOCK (invocations); realm_daemon_release (name); g_hash_table_remove (invocation_clients, name); G_UNLOCK (invocations); } static InvocationClient * lookup_or_register_client (const gchar *sender) { InvocationClient *client; g_assert (sender != NULL); client = g_hash_table_lookup (invocation_clients, sender); if (!client) { client = g_new0 (InvocationClient, 1); if (!g_str_equal (sender, PEER)) { client->watch = g_bus_watch_name (G_BUS_TYPE_SYSTEM, sender, G_BUS_NAME_WATCHER_FLAGS_NONE, NULL, on_client_vanished, NULL, NULL); g_debug ("client using service: %s", sender); } g_hash_table_insert (invocation_clients, g_strdup (sender), client); realm_daemon_hold (sender); } return client; } static gboolean on_idle_setup_client (gpointer user_data) { gchar *sender = user_data; G_LOCK (invocations); lookup_or_register_client (sender); G_UNLOCK (invocations); return FALSE; /* don't call again */ } static gchar * extract_operation (GDBusMessage *message, const InvocationMethod *method) { gchar *operation = NULL; GVariant *params; GVariant *options; gint idx; if (!method->options_param) return NULL; params = g_dbus_message_get_body (message); idx = method->options_param - 1; if (g_variant_n_children (params) <= idx) return NULL; options = g_variant_get_child_value (params, idx); if (g_variant_is_of_type (options, asv_type)) { if (!g_variant_lookup (options, REALM_DBUS_OPTION_OPERATION, "&s", &operation)) operation = NULL; } g_variant_unref (options); return operation; } static void prepare_method_in_dbus_worker_thread (GDBusMessage *message, const gchar *sender) { const InvocationMethod *invo_method; InvocationData *invo = NULL; const gchar *interface; const gchar *method; gchar *operation; gchar *key; gint i; g_assert (sender != NULL); interface = g_dbus_message_get_interface (message); /* Do no processing these interfaces */ if (g_str_equal (interface, REALM_DBUS_SERVICE_INTERFACE) || g_str_equal (interface, DBUS_PROPERTIES_INTERFACE) || g_str_equal (interface, DBUS_INTROSPECTABLE_INTERFACE) || g_str_equal (interface, DBUS_PEER_INTERFACE)) return; method = g_dbus_message_get_member (message); invo_method = NULL; for (i = 0; i < G_N_ELEMENTS (invocation_methods); i++) { if (g_str_equal (invocation_methods[i].interface, interface) && g_str_equal (invocation_methods[i].method, method)) { invo_method = invocation_methods + i; break; } } /* Find the operation id for this message */ if (invo_method) { invo = g_new0 (InvocationData, 1); invo->method = invo_method; operation = extract_operation (message, invo_method); if (operation) { g_debug ("Using '%s' operation for method '%s' invocation on '%s' interface", operation, method, interface); invo->identifier = g_strdup_printf ("%s %s", sender, operation); invo->operation = strchr (invo->identifier, ' '); g_assert (invo->operation != NULL); invo->operation++; } else { invo->identifier = g_strdup (sender); invo->operation = NULL; } } g_object_set_qdata_full (G_OBJECT (message), invocation_data_quark, invo, invocation_data_free); G_LOCK (invocations); /* Prepare a cancellable if desired */ if (invo && invo->operation) { invo->cancellable = g_hash_table_lookup (cancellables, invo->identifier); if (invo->cancellable == NULL) { invo->cancellable = g_cancellable_new (); key = g_strdup (invo->identifier); g_hash_table_insert (cancellables, key, invo->cancellable); g_debug ("Registered cancellable for operation '%s'", operation); g_object_weak_ref (G_OBJECT (invo->cancellable), on_cancellable_gone, key); } else { g_object_ref (invo->cancellable); } } /* Setup a client later if necessary */ if (g_hash_table_lookup (invocation_clients, sender) == NULL) g_idle_add_full (G_PRIORITY_DEFAULT, on_idle_setup_client, g_strdup (sender), g_free); G_UNLOCK (invocations); } static GDBusMessage * on_connection_filter (GDBusConnection *connection, GDBusMessage *message, gboolean incoming, gpointer user_data) { const gchar *own_name = user_data; GDBusMessageType type; const gchar *sender; /* Each time we see an incoming function call, keep the service alive */ if (incoming) { type = g_dbus_message_get_message_type (message); if (type == G_DBUS_MESSAGE_TYPE_METHOD_CALL) { sender = g_dbus_message_get_sender (message); g_return_val_if_fail (sender != NULL || realm_daemon_is_dbus_peer (), message); if (sender == NULL) sender = PEER; if (!own_name || g_strcmp0 (own_name, sender) != 0) prepare_method_in_dbus_worker_thread (message, sender); } } return message; } static gboolean on_service_release (RealmDbusService *object, GDBusMethodInvocation *invocation) { const char *sender; sender = g_dbus_method_invocation_get_sender (invocation); g_return_val_if_fail (sender != NULL || realm_daemon_is_dbus_peer (), FALSE); if (sender == NULL) sender = PEER; g_debug ("explicitly releasing service: %s", sender); G_LOCK (invocations); g_hash_table_remove (invocation_clients, sender); realm_daemon_release (sender); G_UNLOCK (invocations); realm_dbus_service_complete_release (object, invocation); return TRUE; } static gboolean on_service_cancel (RealmDbusService *object, GDBusMethodInvocation *invocation, const gchar *operation) { GCancellable *cancellable; gchar *identifier; const gchar *sender; sender = g_dbus_method_invocation_get_sender (invocation); g_return_val_if_fail (sender != NULL || realm_daemon_is_dbus_peer (), FALSE); if (sender == NULL) sender = PEER; G_LOCK (invocations); identifier = g_strdup_printf ("%s %s", sender, operation); cancellable = g_hash_table_lookup (cancellables, identifier); g_free (identifier); if (cancellable) g_object_ref (cancellable); G_UNLOCK (invocations); realm_dbus_service_complete_cancel (object, invocation); if (cancellable) { g_debug ("Cancelling operation '%s'", operation); g_cancellable_cancel (cancellable); g_object_unref (cancellable); } else { g_debug ("Nothing to cancel for '%s'", operation); } return TRUE; } static gboolean on_service_set_locale (RealmDbusService *object, GDBusMethodInvocation *invocation, const gchar *arg_locale) { InvocationClient *client; const gchar *sender; sender = g_dbus_method_invocation_get_sender (invocation); g_return_val_if_fail (sender != NULL || realm_daemon_is_dbus_peer (), FALSE); if (sender == NULL) sender = PEER; G_LOCK (invocations); client = lookup_or_register_client (sender); g_free (client->locale); client->locale = g_strdup (arg_locale); G_UNLOCK (invocations); realm_dbus_service_complete_set_locale (object, invocation); return TRUE; } static void unwatch_and_free_client (gpointer data) { InvocationClient *client = data; g_assert (data != NULL); if (client->watch) g_bus_unwatch_name (client->watch); g_free (client->locale); g_free (client); realm_daemon_poke (); } void realm_invocation_initialize (GDBusConnection *connection) { RealmDbusService *service; const gchar *self_name; invocation_data_quark = g_quark_from_static_string ("realmd-invocation-data"); asv_type = G_VARIANT_TYPE ("a{sv}"); cancellables = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); invocation_clients = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, unwatch_and_free_client); /* Add a filter which keeps service alive */ self_name = g_dbus_connection_get_unique_name (connection); g_dbus_connection_add_filter (connection, on_connection_filter, g_strdup (self_name), g_free); service = realm_dbus_service_skeleton_new (); g_signal_connect (service, "handle-release", G_CALLBACK (on_service_release), NULL); g_signal_connect (service, "handle-set-locale", G_CALLBACK (on_service_set_locale), NULL); g_signal_connect (service, "handle-cancel", G_CALLBACK (on_service_cancel), NULL); g_dbus_interface_skeleton_export (G_DBUS_INTERFACE_SKELETON (service), connection, REALM_DBUS_SERVICE_PATH, NULL); } void realm_invocation_cleanup (void) { g_hash_table_destroy (cancellables); cancellables = NULL; g_hash_table_destroy (invocation_clients); invocation_clients = NULL; g_clear_object (&polkit_authority); } static InvocationData * lookup_invocation_data (GDBusMethodInvocation *invocation) { InvocationData *invo; GDBusMessage *message; invo = g_object_get_qdata (G_OBJECT (invocation), invocation_data_quark); if (invo == NULL) { message = g_dbus_method_invocation_get_message (invocation); invo = g_object_get_qdata (G_OBJECT (message), invocation_data_quark); if (invo != NULL) g_object_set_qdata (G_OBJECT (invocation), invocation_data_quark, invo); } return invo; } static gboolean check_dbus_action (const gchar *sender, const gchar *action_id) { PolkitAuthorizationResult *result; PolkitAuthority *authority; PolkitSubject *subject; GError *error = NULL; gboolean ret; /* If we're a dbus peer, just allow all calls */ if (realm_daemon_is_dbus_peer ()) return TRUE; g_return_val_if_fail (sender != NULL, FALSE); g_return_val_if_fail (action_id != NULL, FALSE); G_LOCK (invocations); authority = polkit_authority ? g_object_ref (polkit_authority) : NULL; G_UNLOCK (invocations); if (!authority) { authority = polkit_authority_get_sync (NULL, &error); if (authority == NULL) { g_warning ("failure to get polkit authority: %s", error->message); g_error_free (error); return FALSE; } G_LOCK (invocations); if (polkit_authority == NULL) { polkit_authority = g_object_ref (authority); } else { g_object_unref (authority); authority = g_object_ref (polkit_authority); } G_UNLOCK (invocations); } /* do authorization async */ subject = polkit_system_bus_name_new (sender); result = polkit_authority_check_authorization_sync (authority, subject, action_id, NULL, POLKIT_CHECK_AUTHORIZATION_FLAGS_ALLOW_USER_INTERACTION, NULL, &error); g_object_unref (authority); g_object_unref (subject); /* failed */ if (result == NULL) { g_warning ("couldn't check polkit authorization%s%s", error ? ": " : "", error ? error->message : ""); g_error_free (error); return FALSE; } ret = polkit_authorization_result_get_is_authorized (result); g_object_unref (result); return ret; } gboolean realm_invocation_authorize (GDBusMethodInvocation *invocation) { const gchar *action_id = NULL; const gchar *sender; InvocationData *invo; gboolean ret; invo = lookup_invocation_data (invocation); if (invo != NULL && invo->method != NULL) action_id = invo->method->action_id; if (action_id == NULL) { g_warning ("Couldn't authorize unregistered method '%s' on interface '%s'", g_dbus_method_invocation_get_method_name (invocation), g_dbus_method_invocation_get_interface_name (invocation)); ret = FALSE; } else { sender = g_dbus_method_invocation_get_sender (invocation); ret = check_dbus_action (sender, action_id); } if (ret == FALSE) { g_debug ("rejecting access to method '%s' on interface '%s' at %s", g_dbus_method_invocation_get_method_name (invocation), g_dbus_method_invocation_get_interface_name (invocation), g_dbus_method_invocation_get_object_path (invocation)); g_dbus_method_invocation_return_dbus_error (invocation, REALM_DBUS_ERROR_NOT_AUTHORIZED, _("Not authorized to perform this action")); } return ret; } GCancellable * realm_invocation_get_cancellable (GDBusMethodInvocation *invocation) { InvocationData *invo; g_return_val_if_fail (invocation != NULL, NULL); invo = lookup_invocation_data (invocation); return invo ? invo->cancellable : NULL; } const gchar * realm_invocation_get_operation (GDBusMethodInvocation *invocation) { InvocationData *invo; g_return_val_if_fail (invocation != NULL, NULL); invo = lookup_invocation_data (invocation); return invo ? invo->operation : NULL; } const gchar * realm_invocation_get_key (GDBusMethodInvocation *invocation) { InvocationData *invo; g_return_val_if_fail (invocation != NULL, NULL); invo = lookup_invocation_data (invocation); return invo ? invo->identifier : NULL; } static void on_invocation_gone (gpointer unused, GObject *where_the_object_was) { g_warning ("a GDBusMethodInvocation was released but the invocation was " "registered as part of a realm_invocation_lock_daemon()"); g_assert (where_the_object_was == current_invocation); current_invocation = NULL; } gboolean realm_invocation_lock_daemon (GDBusMethodInvocation *invocation) { g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation), FALSE); if (current_invocation) return FALSE; current_invocation = G_OBJECT (invocation); g_object_weak_ref (current_invocation, on_invocation_gone, NULL); /* Hold the daemon up while action */ realm_daemon_hold ("current-invocation"); return TRUE; } void realm_invocation_unlock_daemon (GDBusMethodInvocation *invocation) { g_return_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation)); if (current_invocation != G_OBJECT (invocation)) { g_warning ("trying to realm_invocation_unlock_daemon() with an invocation " "that is not registered as the current locked action."); return; } g_object_weak_unref (current_invocation, on_invocation_gone, NULL); current_invocation = NULL; /* Matches the hold in realm_invocation_lock_daemon() */ if (!realm_daemon_release ("current-invocation")) g_warn_if_reached (); } realmd-0.17.1/service/realm-example-provider.c0000644003225100322510000001670614046520517021557 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-diagnostics.h" #include "realm-disco.h" #include "realm-errors.h" #include "realm-example.h" #include "realm-example-provider.h" #include "realm-ini-config.h" #include "realm-settings.h" #include "realm-kerberos.h" #include "realm-usleep-async.h" #include "realm-invocation.h" #include struct _RealmExampleProvider { RealmProvider parent; RealmIniConfig *config; }; typedef struct { RealmProviderClass parent_class; } RealmExampleProviderClass; enum { PROP_0, PROP_EXAMPLE_CONFIG, }; #define REALM_EXAMPLE_CONFIG STATE_DIR "/example.conf" #define REALM_DBUS_EXAMPLE_PATH "/org/freedesktop/realmd/Example" #define ALLOWED_CHARS "abcdefghijklmnopqrstuvwxyz012346789-." G_DEFINE_TYPE (RealmExampleProvider, realm_example_provider, REALM_TYPE_PROVIDER); static void realm_example_provider_init (RealmExampleProvider *self) { self->config = realm_ini_config_new (REALM_INI_NONE); } static void realm_example_provider_constructed (GObject *obj) { RealmExampleProvider *self; GError *error = NULL; gchar **sections; gint i; G_OBJECT_CLASS (realm_example_provider_parent_class)->constructed (obj); self = REALM_EXAMPLE_PROVIDER (obj); realm_ini_config_read_file (self->config, REALM_EXAMPLE_CONFIG, &error); if (error != NULL) { g_warning ("Couldn't load config file: %s: %s", REALM_EXAMPLE_CONFIG, error->message); g_error_free (error); } realm_provider_set_name (REALM_PROVIDER (self), "Example"); sections = realm_ini_config_get_sections (self->config); for (i = 0; sections != NULL && sections[i] != NULL; i++) { realm_provider_lookup_or_register_realm (REALM_PROVIDER (self), REALM_TYPE_EXAMPLE, sections[i], NULL); } g_strfreev (sections); } static void on_discover_sleep_done (GObject *source, GAsyncResult *res, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; if (!realm_usleep_finish (res, &error)) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static gchar * parse_example_name (const char *string) { gchar *domain; gsize length; domain = g_ascii_strdown (string, -1); g_strstrip (domain); length = strlen (domain); if (!length || strspn (domain, ALLOWED_CHARS) != length || strstr (domain, "..") != NULL || domain[0] == '.') { g_free (domain); return NULL; } if (g_str_has_suffix (domain, ".")) { domain[length] = '\0'; length--; } /* No, I don't care */ if (!g_str_has_suffix (domain, "example.org") && !g_str_has_suffix (domain, "example.com") && !g_str_has_suffix (domain, "example.net")) { g_free (domain); return NULL; } if (length > 11) { if (domain[length - 12] != '.') { g_free (domain); return NULL; } } return domain; } static void realm_example_provider_discover_async (RealmProvider *provider, const gchar *string, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; task = g_task_new (provider, NULL, callback, user_data); if (!realm_provider_match_software (options, REALM_DBUS_IDENTIFIER_EXAMPLE, REALM_DBUS_IDENTIFIER_EXAMPLE, REALM_DBUS_IDENTIFIER_EXAMPLE)) { g_task_return_boolean (task, TRUE); /* A valid example domain name */ } else { gchar *domain; gdouble delay; if (string == NULL || strlen (string) == 0) domain = g_strdup (realm_settings_value ("example", "default")); else domain = parse_example_name (string); if (domain && realm_settings_section(domain)) delay = realm_settings_double (domain, "example-discovery-delay", 0.0); else { delay = realm_settings_double ("example", "non-discovery-delay", 0.0); g_free (domain); domain = NULL; } g_object_set_data_full (G_OBJECT (task), "the-domain", domain, g_free); realm_usleep_async (delay * G_USEC_PER_SEC, realm_invocation_get_cancellable (invocation), on_discover_sleep_done, g_object_ref (task)); } g_object_unref (task); } static GList * realm_example_provider_discover_finish (RealmProvider *provider, GAsyncResult *result, gint *relevance, GError **error) { RealmKerberos *realm = NULL; gchar *domain; g_return_val_if_fail (g_task_is_valid (result, provider), NULL); if (!g_task_propagate_boolean (G_TASK (result), error)) return NULL; domain = g_object_get_data (G_OBJECT (result), "the-domain"); if (domain == NULL || realm_settings_section (domain) == NULL) return NULL; realm = realm_provider_lookup_or_register_realm (provider, REALM_TYPE_EXAMPLE, domain, NULL); if (realm == NULL) return NULL; *relevance = 10; return g_list_append (NULL, g_object_ref (realm)); } static void realm_example_provider_get_property (GObject *obj, guint prop_id, GValue *value, GParamSpec *pspec) { RealmExampleProvider *self = REALM_EXAMPLE_PROVIDER (obj); switch (prop_id) { case PROP_EXAMPLE_CONFIG: g_value_set_object (value, self->config); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec); break; } } static void realm_example_provider_finalize (GObject *obj) { RealmExampleProvider *self = REALM_EXAMPLE_PROVIDER (obj); g_object_unref (self->config); G_OBJECT_CLASS (realm_example_provider_parent_class)->finalize (obj); } void realm_example_provider_class_init (RealmExampleProviderClass *klass) { RealmProviderClass *provider_class = REALM_PROVIDER_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); provider_class->discover_async = realm_example_provider_discover_async; provider_class->discover_finish = realm_example_provider_discover_finish; object_class->constructed = realm_example_provider_constructed; object_class->get_property = realm_example_provider_get_property; object_class->finalize = realm_example_provider_finalize; g_object_class_install_property (object_class, PROP_EXAMPLE_CONFIG, g_param_spec_object ("example-config", "Example Config", "Example Config", REALM_TYPE_INI_CONFIG, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)); } RealmProvider * realm_example_provider_new (void) { return g_object_new (REALM_TYPE_EXAMPLE_PROVIDER, "g-object-path", REALM_DBUS_EXAMPLE_PATH, NULL); } realmd-0.17.1/service/realm-diagnostics.c0000664003225100322510000001252614147736341020607 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-diagnostics.h" #include "realm-invocation.h" #include #include static GDBusConnection *the_connection = NULL; static GString *line_buffer = NULL; void realm_diagnostics_initialize (GDBusConnection *connection) { g_return_if_fail (G_IS_DBUS_CONNECTION (connection)); if (the_connection != NULL) g_object_remove_weak_pointer (G_OBJECT (the_connection), (gpointer *)&the_connection); the_connection = connection; g_object_add_weak_pointer (G_OBJECT (the_connection), (gpointer *)&the_connection); } static void log_syslog_and_debug (GDBusMethodInvocation *invocation, int log_level, gchar *string, gsize length) { const gchar *operation = NULL; gchar *at = string; gchar *ptr; if (invocation) operation = realm_invocation_get_operation (invocation); /* Print all stderr lines as messages */ while ((ptr = memchr (at, '\n', length)) != NULL) { *ptr = '\0'; if (line_buffer && line_buffer->len > 0) { #ifdef WITH_JOURNAL /* Call realm_daemon_syslog directly to add * REALMD_OPERATION to the jounrnal */ realm_daemon_syslog (operation, log_level, "%s%s", line_buffer->str, at); #else g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "%s%s", line_buffer->str, at); #endif g_string_set_size (line_buffer, 0); } else { #ifdef WITH_JOURNAL realm_daemon_syslog (operation, log_level, "%s", at); #else g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "%s", at); #endif } *ptr = '\n'; ptr++; length -= (ptr - at); at = ptr; } if (length != 0) { if (line_buffer == NULL) line_buffer = g_string_new_len (at, length); else g_string_append_len (line_buffer, at, length); } } static void log_take_diagnostic (GDBusMethodInvocation *invocation, int log_level, gchar *string) { log_syslog_and_debug (invocation, log_level, string, strlen (string)); realm_diagnostics_signal (invocation, string); g_free (string); } void realm_diagnostics_info (GDBusMethodInvocation *invocation, const gchar *format, ...) { GString *message; va_list va; g_return_if_fail (invocation == NULL || G_IS_DBUS_METHOD_INVOCATION (invocation)); g_return_if_fail (format != NULL); va_start (va, format); message = g_string_new (" * "); g_string_append_vprintf (message, format, va); va_end (va); if (!g_str_has_suffix (message->str, "\n")) g_string_append_c (message, '\n'); log_take_diagnostic (invocation, LOG_INFO, g_string_free (message, FALSE)); } void realm_diagnostics_error (GDBusMethodInvocation *invocation, GError *error, const gchar *format, ...) { GString *message; va_list va; g_return_if_fail (invocation == NULL || G_IS_DBUS_METHOD_INVOCATION (invocation)); if (!format && g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) return; message = g_string_new (" ! "); if (format) { va_start (va, format); g_string_append_vprintf (message, format, va); va_end (va); } if (format && error) g_string_append (message, ": "); if (error) g_string_append (message, error->message); g_string_append_c (message, '\n'); log_take_diagnostic (invocation, LOG_INFO, g_string_free (message, FALSE)); } void realm_diagnostics_info_data (GDBusMethodInvocation *invocation, const gchar *data, gssize n_data) { gchar *info; gsize length; g_return_if_fail (invocation == NULL || G_IS_DBUS_METHOD_INVOCATION (invocation)); g_return_if_fail (data != NULL); if (n_data == -1) n_data = strlen (data); if (g_utf8_validate (data, n_data, NULL)) { info = g_strndup (data, n_data); } else { info = g_convert_with_fallback (data, n_data, "utf-8", "ascii", "\xef\xbf\xbd", NULL, &length, NULL); } log_take_diagnostic (invocation, LOG_INFO, info); } void realm_diagnostics_signal (GDBusMethodInvocation *invocation, const gchar *data) { const gchar *operation; GError *error = NULL; const gchar *sender; if (!the_connection || !invocation) return; operation = realm_invocation_get_operation (invocation); if (operation == NULL) operation = ""; /* This might be NULL if operating in peer mode, but that's appropriate for use below */ sender = g_dbus_method_invocation_get_sender (invocation); g_dbus_connection_emit_signal (the_connection, sender, REALM_DBUS_SERVICE_PATH, REALM_DBUS_SERVICE_INTERFACE, REALM_DBUS_DIAGNOSTICS_SIGNAL, g_variant_new ("(ss)", data, operation), &error); if (error != NULL) { g_warning ("couldn't emit the %s signal: %s", REALM_DBUS_DIAGNOSTICS_SIGNAL, error->message); g_error_free (error); } } realmd-0.17.1/service/realm-dn-util.h0000644003225100322510000000160514046520517017645 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_DN_UTIL_H__ #define __REALM_DN_UTIL_H__ #include G_BEGIN_DECLS gchar * realm_dn_util_build_samba_ou (const gchar *ldap_dn, const gchar *domain); gchar * realm_dn_util_build_qualified (const gchar *ldap_dn, const gchar *domain); G_END_DECLS #endif /* __REALM_DN_UTIL_H__ */ realmd-0.17.1/service/realm-command.h0000644003225100322510000000356014046520517017711 0ustar00sbosesbose00000000000000/* * Copyright (C) 2011 Collabora Ltd. * Copyright (C) 2012 Red Hat Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #ifndef REALM_COMMAND_H #define REALM_COMMAND_H #include G_BEGIN_DECLS void realm_command_runv_async (gchar **name_or_path_and_arguments, gchar **environ, GBytes *input, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); void realm_command_run_known_async (const gchar *known_command, gchar **environ, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gint realm_command_run_finish (GAsyncResult *result, GString **output, GError **error); GBytes * realm_command_build_password_line (GBytes *password); G_END_DECLS #endif /* REALM_COMMAND_H */ realmd-0.17.1/service/realm-sssd-ipa.c0000644003225100322510000003704414311053251020004 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-command.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-diagnostics.h" #include "realm-errors.h" #include "realm-kerberos.h" #include "realm-kerberos-membership.h" #include "realm-options.h" #include "realm-packages.h" #include "realm-provider.h" #include "realm-service.h" #include "realm-settings.h" #include "realm-sssd.h" #include "realm-sssd-ipa.h" #include "realm-sssd-config.h" #include #include #include #include struct _RealmSssdIpa { RealmSssd parent; }; typedef struct { RealmSssdClass parent_class; } RealmSssdIpaClass; static const gchar *IPA_PACKAGES[] = { REALM_DBUS_IDENTIFIER_IPA, REALM_DBUS_IDENTIFIER_SSSD, NULL }; static void realm_sssd_ipa_kerberos_membership_iface (RealmKerberosMembershipIface *iface); G_DEFINE_TYPE_WITH_CODE (RealmSssdIpa, realm_sssd_ipa, REALM_TYPE_SSSD, G_IMPLEMENT_INTERFACE (REALM_TYPE_KERBEROS_MEMBERSHIP, realm_sssd_ipa_kerberos_membership_iface); ); static void realm_sssd_ipa_init (RealmSssdIpa *self) { } static void realm_sssd_ipa_constructed (GObject *obj) { RealmKerberos *kerberos = REALM_KERBEROS (obj); G_OBJECT_CLASS (realm_sssd_ipa_parent_class)->constructed (obj); realm_kerberos_set_details (kerberos, REALM_DBUS_OPTION_SERVER_SOFTWARE, REALM_DBUS_IDENTIFIER_IPA, REALM_DBUS_OPTION_CLIENT_SOFTWARE, REALM_DBUS_IDENTIFIER_SSSD, NULL); realm_kerberos_set_suggested_admin (kerberos, "admin"); realm_kerberos_set_required_package_sets (kerberos, IPA_PACKAGES); } void realm_sssd_ipa_class_init (RealmSssdIpaClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); RealmSssdClass *sssd_class = REALM_SSSD_CLASS (klass); object_class->constructed = realm_sssd_ipa_constructed; /* The provider in sssd.conf relevant to this realm type */ sssd_class->sssd_conf_provider_name = "ipa"; } typedef struct { GDBusMethodInvocation *invocation; GPtrArray *argv; GVariant *options; GBytes *input; } EnrollClosure; static void enroll_closure_free (gpointer data) { EnrollClosure *enroll = data; g_object_unref (enroll->invocation); if (enroll->argv) g_ptr_array_unref (enroll->argv); g_variant_unref (enroll->options); g_bytes_unref (enroll->input); g_free (enroll); } static void on_restart_done (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); RealmSssd *sssd = g_task_get_source_object (task); GError *error = NULL; realm_service_enable_and_restart_finish (result, &error); if (error == NULL) { realm_sssd_update_properties (sssd); g_task_return_boolean (task, TRUE); } else { g_task_return_error (task, error); } g_object_unref (task); } static void on_ipa_client_do_restart (GObject *source, GAsyncResult *result, gpointer user_data) { const gchar *services[] = { "nss", "pam", NULL }; GTask *task = G_TASK (user_data); EnrollClosure *enroll = g_task_get_task_data (task); RealmSssd *sssd = g_task_get_source_object (task); RealmKerberos *realm = REALM_KERBEROS (sssd); const gchar *access_provider; const gchar *realmd_tags; GError *error = NULL; GString *output = NULL; RealmIniConfig *config; const gchar *domain; const gchar *shell; gchar *section; gchar *home; gint status; status = realm_command_run_finish (result, &output, &error); if (error == NULL && status != 0) { /* * TODO: We need to update ipa-client-install to accept a * ccache so we can get better feedback on invalid passwords. * We run the process with LC_ALL=C so at least we know these * messages will be in english. */ if (g_pattern_match_simple ("*kinit: Password incorrect*", output->str)) { g_set_error (&error, REALM_ERROR, REALM_ERROR_AUTH_FAILED, "Password is incorrect"); } else { g_set_error (&error, REALM_ERROR, REALM_ERROR_INTERNAL, "Running ipa-client-install failed"); } } domain = realm_kerberos_get_name (realm); config = realm_sssd_get_config (sssd); shell = realm_settings_string ("users", "default-shell"); if (error == NULL) { home = realm_sssd_build_default_home (realm_settings_string ("users", "default-home")); realmd_tags = realm_options_manage_system (enroll->options, domain) ? "manages-system" : ""; realm_sssd_config_update_domain (config, domain, &error, "cache_credentials", "True", "use_fully_qualified_names", realm_options_qualify_names (domain, FALSE) ? "True" : "False", "krb5_store_password_if_offline", "True", "default_shell", shell, "fallback_homedir", home, "realmd_tags", realmd_tags, NULL); if (error == NULL) realm_ini_config_change_list (config, "sssd", "services", ", ", services, NULL, &error); g_free (home); } if (error == NULL) { if (realm_options_manage_system (enroll->options, domain)) access_provider = "ipa"; else access_provider = "simple"; section = realm_sssd_config_domain_to_section (domain); realm_sssd_set_login_policy (config, section, access_provider, NULL, NULL, FALSE, &error); free (section); } if (error == NULL) { realm_service_enable_and_restart ("sssd", enroll->invocation, on_restart_done, g_object_ref (task)); } else { g_task_return_error (task, error); } g_object_unref (task); } static void on_install_do_join (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); EnrollClosure *enroll = g_task_get_task_data (task); GError *error = NULL; const gchar *env[] = { "LANG=C", NULL, }; realm_packages_install_finish (result, &error); if (error == NULL) { realm_command_runv_async ((gchar **)enroll->argv->pdata, (gchar **)env, enroll->input, enroll->invocation, on_ipa_client_do_restart, g_object_ref (task)); } else { g_task_return_error (task, error); } g_object_unref (task); } static char * secret_to_password (GBytes *secret) { gconstpointer data; gsize length; /* * In theory the password could be binary with embedded nulls. * We don't support that. And we assume that we don't need to * check for that here, because such a password will be wrong, * and ipa-client-install will simply fail to join the domain. */ data = g_bytes_get_data (secret, &length); return g_strndup (data, length); } static void push_arg (GPtrArray *argv, const gchar *value) { g_ptr_array_add (argv, strdup (value)); } static void realm_sssd_ipa_join_async (RealmKerberosMembership *membership, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmKerberos *realm = REALM_KERBEROS (membership); RealmSssd *sssd = REALM_SSSD (realm); GTask *task; EnrollClosure *enroll; RealmDisco *disco; const gchar *domain_name; const gchar *computer_ou; const gchar *software; GPtrArray *argv; domain_name = realm_kerberos_get_name (realm); task = g_task_new (realm, NULL, callback, user_data); enroll = g_new0 (EnrollClosure, 1); enroll->invocation = g_object_ref (invocation); enroll->options = g_variant_ref (options); g_task_set_task_data (task, enroll, enroll_closure_free); if (g_variant_lookup (options, REALM_DBUS_OPTION_COMPUTER_OU, "&s", &computer_ou)) { g_task_return_new_error (task, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, _("The computer-ou argument is not supported when joining an IPA domain.")); } else if (realm_option_do_not_touch_config (options)) { g_task_return_new_error (task, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, _("The do-not-touch-config option is not supported when joining an IPA domain.")); } else if (g_variant_lookup (options, REALM_DBUS_OPTION_MEMBERSHIP_SOFTWARE, "&s", &software) && !g_str_equal (software, REALM_DBUS_IDENTIFIER_FREEIPA) && !g_str_equal (software, REALM_DBUS_IDENTIFIER_IPA)) { g_task_return_new_error (task, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, _("Unsupported or unknown membership software '%s'"), software); } else if (realm_sssd_get_config_section (sssd) != NULL) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_ALREADY_CONFIGURED, _("Already joined to this domain")); } else if (realm_sssd_config_have_domain (realm_sssd_get_config (sssd), domain_name)) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_ALREADY_CONFIGURED, _("A domain with this name is already configured")); } else { disco = realm_kerberos_get_disco (realm); g_return_if_fail (disco != NULL); argv = g_ptr_array_new (); push_arg (argv, realm_settings_string ("paths", "ipa-client-install")); push_arg (argv, "--domain"); push_arg (argv, disco->domain_name); push_arg (argv, "--realm"); push_arg (argv, disco->kerberos_realm); push_arg (argv, "--mkhomedir"); push_arg (argv, "--enable-dns-updates"); push_arg (argv, "--unattended"); push_arg (argv, "--force-join"); /* If the caller specified a server directly */ if (disco->explicit_server) { push_arg (argv, "--server"); push_arg (argv, disco->explicit_server); push_arg (argv, "--fixed-primary"); } switch (cred->type) { case REALM_CREDENTIAL_SECRET: /* * TODO: Allow passing the password other than command line. * * ipa-client-install won't let us pass a password into a prompt * when used with --unattended. We need --unattended since we can't * handle arbitrary prompts. So pass the one time password on * the command line. It's just a one time password, so in the short * term this should be okay. */ push_arg (argv, "--password"); g_ptr_array_add (argv, secret_to_password (cred->x.secret.value)); break; case REALM_CREDENTIAL_PASSWORD: enroll->input = realm_command_build_password_line (cred->x.password.value); push_arg (argv, "--principal"); push_arg (argv, cred->x.password.name); push_arg (argv, "-W"); break; default: g_return_if_reached (); } if (realm_options_manage_system (options, domain_name)) { push_arg (argv, "--force-ntpd"); } else { push_arg (argv, "--no-ssh"); push_arg (argv, "--no-sshd"); push_arg (argv, "--no-ntp"); } g_ptr_array_add (argv, NULL); enroll->argv = argv; realm_packages_install_async (IPA_PACKAGES, invocation, g_dbus_method_invocation_get_connection (invocation), on_install_do_join, g_object_ref (task)); } g_object_unref (task); } static const RealmCredential * realm_sssd_ipa_join_creds (RealmKerberosMembership *membership) { /* * NOTE: The ipa-client-install service requires that we pass a password directly * to the process, and not a ccache. It also accepts a one time password. */ static const RealmCredential creds[] = { { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_ADMIN }, { REALM_CREDENTIAL_SECRET, REALM_CREDENTIAL_OWNER_NONE, }, { 0, } }; return creds; } static void on_ipa_client_do_disable (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); EnrollClosure *enroll = g_task_get_task_data (task); RealmSssd *sssd = g_task_get_source_object (task); GError *error = NULL; gint status; status = realm_command_run_finish (result, NULL, &error); if (error == NULL && status != 0) { g_set_error (&error, REALM_ERROR, REALM_ERROR_INTERNAL, "Running ipa-client-install failed"); } if (error == NULL) realm_sssd_deconfigure_domain_tail (sssd, task, enroll->invocation); else g_task_return_error (task, error); g_object_unref (task); } static void realm_sssd_ipa_leave_async (RealmKerberosMembership *membership, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmKerberos *realm = REALM_KERBEROS (membership); RealmSssd *sssd = REALM_SSSD (realm); GTask *task; EnrollClosure *enroll; const gchar *computer_ou; GBytes *input = NULL; const gchar **argv; const gchar *env[] = { "LANG=C", NULL, }; const gchar *automatic_args[] = { realm_settings_string ("paths", "ipa-client-install"), "--uninstall", "--unattended", NULL }; const gchar *password_args[] = { realm_settings_string ("paths", "ipa-client-install"), "--uninstall", "--principal", cred->x.password.name, "-W", "--unattended", NULL }; task = g_task_new (realm, NULL, callback, user_data); enroll = g_new0 (EnrollClosure, 1); enroll->invocation = g_object_ref (invocation); enroll->options = g_variant_ref (options); g_task_set_task_data (task, enroll, enroll_closure_free); if (realm_sssd_get_config_section (sssd) == NULL) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_NOT_CONFIGURED, _("Not currently joined to this realm")); } else if (g_variant_lookup (options, REALM_DBUS_OPTION_COMPUTER_OU, "&s", &computer_ou)) { g_task_return_new_error (task, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "The computer-ou argument is not supported when leaving an IPA domain."); } else { switch (cred->type) { case REALM_CREDENTIAL_AUTOMATIC: argv = automatic_args; break; case REALM_CREDENTIAL_PASSWORD: input = realm_command_build_password_line (cred->x.password.value); argv = password_args; break; default: g_return_if_reached (); } realm_command_runv_async ((gchar **)argv, (gchar **)env, input, invocation, on_ipa_client_do_disable, g_object_ref (task)); if (input) g_bytes_unref (input); } g_object_unref (task); } static const RealmCredential * realm_sssd_ipa_leave_creds (RealmKerberosMembership *membership) { static const RealmCredential creds[] = { { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_ADMIN, }, { REALM_CREDENTIAL_AUTOMATIC, REALM_CREDENTIAL_OWNER_NONE, }, { 0, } }; return creds; } static gboolean realm_sssd_ipa_generic_finish (RealmKerberosMembership *realm, GAsyncResult *result, GError **error) { return g_task_propagate_boolean (G_TASK (result), error); } static void realm_sssd_ipa_kerberos_membership_iface (RealmKerberosMembershipIface *iface) { iface->join_async = realm_sssd_ipa_join_async; iface->join_finish = realm_sssd_ipa_generic_finish; iface->join_creds = realm_sssd_ipa_join_creds; iface->leave_async = realm_sssd_ipa_leave_async; iface->leave_finish = realm_sssd_ipa_generic_finish; iface->leave_creds = realm_sssd_ipa_leave_creds; } realmd-0.17.1/service/realm-sssd-config.h0000644003225100322510000000502714046520517020512 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SSSD_CONFIG_H__ #define __REALM_SSSD_CONFIG_H__ #include #include "realm-ini-config.h" RealmIniConfig * realm_sssd_config_new (GError **error); RealmIniConfig * realm_sssd_config_new_with_flags (RealmIniFlags flags, GError **error); gchar ** realm_sssd_config_get_domains (RealmIniConfig *config); gchar * realm_sssd_config_domain_to_section (const gchar *domain); gboolean realm_sssd_config_have_domain (RealmIniConfig *config, const gchar *domain); gboolean realm_sssd_config_add_domain (RealmIniConfig *config, const gchar *domain, GError **error, ...) G_GNUC_NULL_TERMINATED; gboolean realm_sssd_config_update_domain (RealmIniConfig *config, const gchar *domain, GError **error, ...); gboolean realm_sssd_config_remove_domain (RealmIniConfig *config, const gchar *domain, GError **error); gboolean realm_sssd_config_load_domain (RealmIniConfig *config, const gchar *domain, gchar **section, gchar **id_provider, gchar **realm_name); G_END_DECLS #endif /* __REALM_SSSD_CONFIG_H__ */ realmd-0.17.1/service/realm-command.c0000644003225100322510000004274414306662441017715 0ustar00sbosesbose00000000000000/* * Copyright (C) 2011 Collabora Ltd. * Copyright (C) 2012 Red Hat Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-daemon.h" #include "realm-command.h" #include "realm-diagnostics.h" #include "realm-invocation.h" #include "realm-settings.h" #include #include #include #include #include enum { FD_INPUT, FD_OUTPUT, FD_ERROR, NUM_FDS }; #define DEBUG_VERBOSE 0 typedef struct { GBytes *input; gsize input_offset; GString *output; guint source_sig; gint exit_code; gboolean cancelled; GDBusMethodInvocation *invocation; } CommandClosure; typedef struct { GSource source; GPollFD polls[NUM_FDS]; /* The various fd's we're listening to */ GPid child_pid; guint child_sig; GSimpleAsyncResult *res; CommandClosure *command; GCancellable *cancellable; guint cancel_sig; } ProcessSource; static void command_closure_free (gpointer data) { CommandClosure *command = data; if (command->input) g_bytes_unref (command->input); if (command->invocation) g_object_unref (command->invocation); g_string_free (command->output, TRUE); g_assert (command->source_sig == 0); g_free (command); } static void complete_source_is_done (ProcessSource *process_source) { #if DEBUG_VERBOSE g_debug ("all fds closed and process exited, completing"); #endif g_assert (process_source->child_sig == 0); if (process_source->cancel_sig) { g_signal_handler_disconnect (process_source->cancellable, process_source->cancel_sig); process_source->cancel_sig = 0; } g_clear_object (&process_source->cancellable); g_simple_async_result_complete (process_source->res); /* All done, the source can go away now */ g_source_unref ((GSource*)process_source); } static void close_fd (int *fd) { g_assert (fd); if (*fd >= 0) { #if DEBUG_VERBOSE g_debug ("closing fd: %d", *fd); #endif close (*fd); } *fd = -1; } static void close_poll (GSource *source, GPollFD *poll) { g_source_remove_poll (source, poll); close_fd (&poll->fd); poll->revents = 0; } static gboolean unused_callback (gpointer data) { /* Never called */ g_assert_not_reached (); return FALSE; } static gboolean on_process_source_prepare (GSource *source, gint *timeout_) { ProcessSource *process_source = (ProcessSource*)source; gint i; for (i = 0; i < NUM_FDS; ++i) { if (process_source->polls[i].fd >= 0) return FALSE; } /* If none of the FDs are valid, then process immediately */ return TRUE; } static gboolean on_process_source_check (GSource *source) { ProcessSource *process_source = (ProcessSource*)source; gint i; for (i = 0; i < NUM_FDS; ++i) { if (process_source->polls[i].fd >= 0 && process_source->polls[i].revents != 0) return TRUE; } return FALSE; } static void on_process_source_finalize (GSource *source) { ProcessSource *process_source = (ProcessSource*)source; gint i; g_assert (process_source->cancellable == NULL); g_assert (process_source->cancel_sig == 0); for (i = 0; i < NUM_FDS; ++i) close_fd (&process_source->polls[i].fd); g_assert (!process_source->child_pid); g_assert (!process_source->child_sig); } static gboolean read_output (int fd, GString *buffer, GDBusMethodInvocation *invocation) { gchar block[1024]; gssize result; g_return_val_if_fail (fd >= 0, FALSE); do { result = read (fd, block, sizeof (block)); if (result < 0) { if (errno == EINTR || errno == EAGAIN) continue; return FALSE; } else if (result > 0) { realm_diagnostics_info_data (invocation, block, result); g_string_append_len (buffer, block, result); } } while (result == sizeof (block)); return TRUE; } static gboolean on_process_source_input (CommandClosure *command, ProcessSource *process_source, gint fd) { const guchar *data; gsize length; gssize result; if (command->input == NULL) return FALSE; /* don't call again */ data = g_bytes_get_data (command->input, &length); if (command->input_offset < length) { result = write (fd, data + command->input_offset, length - command->input_offset); if (result < 0) { if (errno != EINTR && errno != EAGAIN) { if (!command->cancelled || errno != EPIPE) g_warning ("couldn't write output data to process: %s", g_strerror (errno)); g_bytes_unref (command->input); command->input = NULL; return FALSE; } } else { command->input_offset += result; } } if (command->input_offset >= length) { g_bytes_unref (command->input); command->input = NULL; return FALSE; /* close, don't call again */ } return TRUE; /* call again */ } static gboolean on_process_source_output (CommandClosure *command, ProcessSource *process_source, gint fd) { if (!read_output (fd, command->output, command->invocation)) { g_warning ("couldn't read output data from process"); return FALSE; } return TRUE; } static gboolean on_process_source_error (CommandClosure *command, ProcessSource *process_source, gint fd) { if (!read_output (fd, command->output, command->invocation)) { g_warning ("couldn't read error data from process"); return FALSE; } return TRUE; } static gboolean on_process_source_dispatch (GSource *source, GSourceFunc unused, gpointer user_data) { ProcessSource *process_source = (ProcessSource*)source; CommandClosure *command = process_source->command; GPollFD *poll; guint i; /* Standard input, no support yet */ poll = &process_source->polls[FD_INPUT]; if (poll->fd >= 0) { if (poll->revents & G_IO_OUT) if (!on_process_source_input (command, process_source, poll->fd)) poll->revents |= G_IO_HUP; if (poll->revents & G_IO_HUP) close_poll (source, poll); poll->revents = 0; } /* Standard output */ poll = &process_source->polls[FD_OUTPUT]; if (poll->fd >= 0) { if (poll->revents & G_IO_IN) if (!on_process_source_output (command, process_source, poll->fd)) poll->revents |= G_IO_HUP; if (poll->revents & G_IO_HUP) close_poll (source, poll); poll->revents = 0; } /* Standard error */ poll = &process_source->polls[FD_ERROR]; if (poll->fd >= 0) { if (poll->revents & G_IO_IN) if (!on_process_source_error (command, process_source, poll->fd)) poll->revents |= G_IO_HUP; if (poll->revents & G_IO_HUP) close_poll (source, poll); poll->revents = 0; } for (i = 0; i < NUM_FDS; ++i) { if (process_source->polls[i].fd >= 0) return TRUE; } /* Because we return below */ command->source_sig = 0; if (!process_source->child_pid) complete_source_is_done (process_source); return FALSE; /* Disconnect this source */ } static GSourceFuncs process_source_funcs = { on_process_source_prepare, on_process_source_check, on_process_source_dispatch, on_process_source_finalize, }; static void on_unix_process_child_exited (GPid pid, gint status, gpointer user_data) { ProcessSource *process_source = user_data; CommandClosure *command = process_source->command; gint code; guint i; g_debug ("process exited: %d", (int)pid); g_spawn_close_pid (process_source->child_pid); process_source->child_pid = 0; process_source->child_sig = 0; if (WIFEXITED (status)) { command->exit_code = WEXITSTATUS (status); } else if (WIFSIGNALED (status)) { code = WTERMSIG (status); /* Ignore cases where we've signaled the process because we were cancelled */ if (!command->cancelled) g_simple_async_result_set_error (process_source->res, G_SPAWN_ERROR, G_SPAWN_ERROR_FAILED, _("Process was terminated with signal: %d"), code); } for (i = 0; i < NUM_FDS; ++i) { if (process_source->polls[i].fd >= 0) return; } complete_source_is_done (process_source); } static void on_unix_process_child_setup (gpointer user_data) { int *child_fds = user_data; long val; guint i; int ret; /* * Become a process leader in order to close the controlling terminal. * This allows us to avoid the sub-processes blocking on reading from * the terminal. We can also pipe passwords and such into stdin since * getpass() will fall back to that. */ setsid (); /* * Clear close-on-exec flag for these file descriptors, so that * gnupg can write to them */ for (i = 0; i < NUM_FDS; i++) { if (child_fds[i] >= 0) { val = fcntl (child_fds[i], F_GETFD); ret = fcntl (child_fds[i], F_SETFD, val & ~FD_CLOEXEC); if (ret != 0) { /* ignore */ } } } } static void on_cancellable_cancelled (GCancellable *cancellable, gpointer user_data) { ProcessSource *process_source = user_data; g_debug ("process cancelled: %d", process_source->child_pid); /* Set an error, which is respected when this actually completes. */ g_simple_async_result_set_error (process_source->res, G_IO_ERROR, G_IO_ERROR_CANCELLED, _("The operation was cancelled")); process_source->command->cancelled = TRUE; /* Try and kill the child process */ if (process_source->child_pid) { g_debug ("sending term signal to process: %d", (int)process_source->child_pid); kill (process_source->child_pid, SIGTERM); } } void realm_command_runv_async (gchar **argv, gchar **environ, GBytes *input, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GSimpleAsyncResult *res; CommandClosure *command; GError *error = NULL; int child_fds[NUM_FDS]; int output_fd = -1; int error_fd = -1; int input_fd = -1; ProcessSource *process_source; GCancellable *cancellable; GSource *source; gchar *cmd_string; gchar *env_string; gchar **parts; gchar **env; GPid pid; guint i; g_return_if_fail (argv != NULL); g_return_if_fail (invocation == NULL || G_IS_DBUS_METHOD_INVOCATION (invocation)); cancellable = realm_invocation_get_cancellable (invocation); for (i = 0; i < NUM_FDS; i++) child_fds[i] = -1; /* TODO: Figure out if it's a name, and lookup the path */ /* Spawn/child will close all other attributes, besides thesthose in child_fds */ child_fds[FD_INPUT] = 0; child_fds[FD_OUTPUT] = 1; child_fds[FD_ERROR] = 2; env = g_get_environ (); env_string = NULL; if (environ) { env_string = g_strjoinv (" ", environ); for (i = 0; environ != NULL && environ[i] != NULL; i++) { parts = g_strsplit (environ[i], "=", 2); if (!parts[0] || !parts[1]) g_warning ("invalid environment variable: %s", environ[i]); else env = g_environ_setenv (env, parts[0], parts[1], TRUE); g_strfreev (parts); } } cmd_string = g_strjoinv (" ", argv); realm_diagnostics_info (invocation, "%s%s%s", env_string ? env_string : "", env_string ? " " : "", cmd_string); g_free (env_string); g_free (cmd_string); g_spawn_async_with_pipes (NULL, argv, env, G_SPAWN_DO_NOT_REAP_CHILD, on_unix_process_child_setup, child_fds, &pid, &input_fd, &output_fd, &error_fd, &error); g_strfreev (env); res = g_simple_async_result_new (NULL, callback, user_data, realm_command_runv_async); command = g_new0 (CommandClosure, 1); command->input = input ? g_bytes_ref (input) : NULL; command->output = g_string_sized_new (128); command->invocation = invocation ? g_object_ref (invocation) : NULL; g_simple_async_result_set_op_res_gpointer (res, command, command_closure_free); if (error) { g_simple_async_result_take_error (res, error); g_simple_async_result_complete_in_idle (res); g_object_unref (res); return; } g_debug ("process started: %d", (int)pid); source = g_source_new (&process_source_funcs, sizeof (ProcessSource)); /* Initialize the source */ process_source = (ProcessSource *)source; for (i = 0; i < NUM_FDS; i++) process_source->polls[i].fd = -1; process_source->res = g_object_ref (res); process_source->command = command; process_source->child_pid = pid; process_source->polls[FD_INPUT].fd = input_fd; if (input_fd >= 0) { process_source->polls[FD_INPUT].events = G_IO_HUP | G_IO_OUT; g_source_add_poll (source, &process_source->polls[FD_INPUT]); } process_source->polls[FD_OUTPUT].fd = output_fd; if (output_fd >= 0) { process_source->polls[FD_OUTPUT].events = G_IO_HUP | G_IO_IN; g_source_add_poll (source, &process_source->polls[FD_OUTPUT]); } process_source->polls[FD_ERROR].fd = error_fd; if (error_fd >= 0) { process_source->polls[FD_ERROR].events = G_IO_HUP | G_IO_IN; g_source_add_poll (source, &process_source->polls[FD_ERROR]); } if (cancellable) { process_source->cancellable = g_object_ref (cancellable); process_source->cancel_sig = g_cancellable_connect (cancellable, G_CALLBACK (on_cancellable_cancelled), g_source_ref (source), (GDestroyNotify)g_source_unref); } g_assert (command->source_sig == 0); g_source_set_callback (source, unused_callback, NULL, NULL); command->source_sig = g_source_attach (source, g_main_context_default ()); /* This assumes the outstanding reference to source */ g_assert (process_source->child_sig == 0); process_source->child_sig = g_child_watch_add_full (G_PRIORITY_DEFAULT, pid, on_unix_process_child_exited, g_source_ref (source), (GDestroyNotify)g_source_unref); /* source is unreffed in complete_if_source_is_done() */ } static gboolean is_only_whitespace (const gchar *string) { while (*string != '\0') { if (!g_ascii_isspace (*string)) return FALSE; string++; } return TRUE; } void realm_command_run_known_async (const gchar *known_command, gchar **environ, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { const gchar *command_line; GSimpleAsyncResult *async; CommandClosure *command; GError *error = NULL; gchar *message = NULL; gint exit_code = -1; gchar **argv = NULL; gint unused; g_return_if_fail (known_command != NULL); g_return_if_fail (invocation == NULL || G_IS_DBUS_METHOD_INVOCATION (invocation)); command_line = realm_settings_value ("commands", known_command); if (command_line == NULL) { message = g_strdup_printf (_("Configured command not found: %s"), known_command); g_warning ("Configured command not found: %s", known_command); exit_code = 127; } else if (is_only_whitespace (command_line)) { message = g_strdup_printf (_("Skipped command: %s"), known_command); exit_code = 0; } else if (!g_shell_parse_argv (command_line, &unused, &argv, &error)) { g_warning ("Couldn't parse the command line: %s: %s", command_line, error->message); g_error_free (error); message = g_strdup_printf (_("Configured command invalid: %s"), command_line); exit_code = 127; } if (message == NULL) { realm_command_runv_async (argv, environ, NULL, invocation, callback, user_data); g_free (argv); } else { async = g_simple_async_result_new (NULL, callback, user_data, realm_command_runv_async); command = g_new0 (CommandClosure, 1); command->output = g_string_new (message); command->exit_code = exit_code; g_simple_async_result_set_op_res_gpointer (async, command, command_closure_free); g_simple_async_result_complete_in_idle (async); g_object_unref (async); g_free (message); } } gint realm_command_run_finish (GAsyncResult *result, GString **output, GError **error) { GSimpleAsyncResult *res; CommandClosure *command; g_return_val_if_fail (error == NULL || *error == NULL, -1); g_return_val_if_fail (g_simple_async_result_is_valid (result, NULL, realm_command_runv_async), -1); res = G_SIMPLE_ASYNC_RESULT (result); if (g_simple_async_result_propagate_error (res, error)) return -1; command = g_simple_async_result_get_op_res_gpointer (res); if (output) { *output = command->output; command->output = NULL; } return command->exit_code; } static void clear_and_free_password (gpointer data) { gchar *password = data; memset ((char *)password, 0, strlen (password)); g_free (password); } GBytes * realm_command_build_password_line (GBytes *password) { GByteArray *array; gconstpointer data; gsize length; guchar *result; array = g_byte_array_new (); data = g_bytes_get_data (password, &length); g_byte_array_append (array, data, length); /* * We add a new line, which getpass() used inside command expects */ g_byte_array_append (array, (guchar *)"\n", 1); length = array->len; /* * In addition we add null terminator. This is not * written to 'net' command, but used by clear_and_free_password(). */ g_byte_array_append (array, (guchar *)"\0", 1); result = g_byte_array_free (array, FALSE); return g_bytes_new_with_free_func (result, length, clear_and_free_password, result); } realmd-0.17.1/service/safe-format-string.h0000644003225100322510000000602114046520517020700 0ustar00sbosesbose00000000000000/* * This file originated in the realmd project * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __SAFE_FORMAT_STRING_H__ #define __SAFE_FORMAT_STRING_H__ #include /* * This is a neutered printf variant that can be used with user-provided * format strings. * * Not only are the normal printf functions not safe to use on user-provided * input (ie: can crash, be abused, etc), they're also very brittle with * regards to positional arguments: one must consume them all or printf will * just abort(). This is because arguments of different sizes are accepted * in the varargs. So obviously the positional code cannot know the offset * of the relevant varargs if some are not consumed (ie: tagged with a * field type). * * Thus the only accepted field type here is 's'. It's all we need. * * In general new code should use a better syntax than printf format strings * for configuration options. This code is here to facilitate robust processing * of the full_name_format syntax we already have, which has been documented as * "printf(3) compatible". * * Features: * - Only string 's' fields are supported * - All the varargs should be strings, followed by a NULL argument * - Both positional '%$1s' and non-positional '%s' are supported * - Field widths '%8s' work as expected * - Precision '%.8s' works, but precision cannot be read from a field * - Left alignment flag is supported '%-8s'. * - The space flag '% 8s' has no effect (it's the default for string fields). * - No more than six digits are supported for widths, precisions, etc. * - Percent signs are to be escaped as usual '%%' * * Use of other flags or field types will cause the relevant printf call to * return -1. Using too many arguments or incorrect positional arguments * will also cause the call to fail. * * Functions return -1 on failure and set errno. Otherwise they return * the full length of the string that would be formatted, with the same * semantics as snprintf(). */ #ifndef GNUC_NULL_TERMINATED #if __GNUC__ >= 4 #define GNUC_NULL_TERMINATED __attribute__((__sentinel__)) #else #define GNUC_NULL_TERMINATED #endif #endif int safe_format_string (char *str, size_t len, const char *format, ...) GNUC_NULL_TERMINATED; int safe_format_string_cb (void (* callback) (void *data, const char *piece, size_t len), void *data, const char *format, const char * const args[], int num_args); #endif /* __SAFE_FORMAT_STRING_H__ */ realmd-0.17.1/service/realm-samba-provider.h0000644003225100322510000000225114046520517021202 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SAMBA_PROVIDER_H__ #define __REALM_SAMBA_PROVIDER_H__ #include #include "realm-provider.h" G_BEGIN_DECLS #define REALM_TYPE_SAMBA_PROVIDER (realm_samba_provider_get_type ()) #define REALM_SAMBA_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_SAMBA_PROVIDER, RealmSambaProvider)) #define REALM_IS_SAMBA_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_SAMBA_PROVIDER)) typedef struct _RealmSambaProvider RealmSambaProvider; GType realm_samba_provider_get_type (void) G_GNUC_CONST; RealmProvider * realm_samba_provider_new (void); G_END_DECLS #endif /* __REALM_SAMBA_PROVIDER_H__ */ realmd-0.17.1/service/realm-errors.c0000644003225100322510000000350314046520517017577 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-dbus-constants.h" #include "realm-errors.h" #include static const GDBusErrorEntry realm_error_entries[] = { { REALM_ERROR_INTERNAL, REALM_DBUS_ERROR_INTERNAL }, { REALM_ERROR_FAILED, REALM_DBUS_ERROR_FAILED }, { REALM_ERROR_BUSY, REALM_DBUS_ERROR_BUSY }, { REALM_ERROR_ALREADY_CONFIGURED, REALM_DBUS_ERROR_ALREADY_CONFIGURED }, { REALM_ERROR_NOT_CONFIGURED, REALM_DBUS_ERROR_NOT_CONFIGURED }, { REALM_ERROR_AUTH_FAILED, REALM_DBUS_ERROR_AUTH_FAILED }, { REALM_ERROR_BAD_HOSTNAME, REALM_DBUS_ERROR_BAD_HOSTNAME }, { REALM_ERROR_CANCELLED, REALM_DBUS_ERROR_CANCELLED }, }; /* * If there's a compilation error here, then the realm_error_entries * array above is not synced with the RealmErrorCodes enum in realm-errors.h. */ G_STATIC_ASSERT (G_N_ELEMENTS (realm_error_entries) == _NUM_REALM_ERRORS); GQuark realm_error_quark (void) { static volatile gsize quark_volatile = 0; g_dbus_error_register_error_domain ("realmd-error", &quark_volatile, realm_error_entries, G_N_ELEMENTS (realm_error_entries)); return (GQuark)quark_volatile; } GQuark realm_krb5_error_quark (void) { static volatile gsize quark_volatile = 0; if (quark_volatile == 0) quark_volatile = g_quark_from_static_string ("krb5-error"); return (GQuark)quark_volatile; } realmd-0.17.1/service/realm-disco.h0000644003225100322510000000231114314774345017375 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #ifndef __REALM_DISCO_H__ #define __REALM_DISCO_H__ #include #include #include G_BEGIN_DECLS typedef struct { gint refs; const gchar *server_software; gchar *domain_name; gchar *kerberos_realm; gchar *workgroup; gchar *explicit_server; gchar *explicit_netbios; GSocketAddress *server_address; gchar *dns_fqdn; gchar *netlogon_server_name; } RealmDisco; #define REALM_TYPE_DISCO (realm_disco_get_type ()) GType realm_disco_get_type (void) G_GNUC_CONST; RealmDisco * realm_disco_new (const gchar *domain); RealmDisco * realm_disco_ref (RealmDisco *disco); void realm_disco_unref (gpointer disco); G_END_DECLS #endif /* __REALM_DISCO_H__ */ realmd-0.17.1/service/realmd-debian.conf0000644003225100322510000000325714046520517020362 0ustar00sbosesbose00000000000000# Distro specific overrides for debian [paths] smb.conf = /etc/samba/smb.conf krb5.conf = /etc/krb5.conf # # Normally in these packages sections we can specify a file # to quickly check if the package is installed. However # different archictectures put the pam and nss plugins in # different directories, so no really great way to check them. # # On the other hand package-kit + apt doesn't suck as much # as package-kit + yum, so lets just leave these blank and # check that they are installed through the package manager. # [samba-packages] samba-common-bin = /usr/bin/net [winbind-packages] winbind = /usr/sbin/winbindd libpam-winbind = libnss-winbind = [sssd-packages] sssd = /usr/sbin/sssd sssd-tools = /usr/sbin/sss_cache libnss-sss = libpam-sss = [ipa-packages] freeipa-client = /usr/sbin/ipa-client-install [adcli-packages] adcli = /usr/sbin/adcli [commands] # Various pam and nss plugins are automatically configured when # installed on debian. So just stub them out. winbind-enable-logins = winbind-disable-logins = sssd-enable-logins = sssd-disable-logins = winbind-enable-service = /usr/sbin/update-rc.d winbind enable winbind-disable-service = /usr/sbin/update-rc.d winbind disable winbind-restart-service = /usr/sbin/service winbind restart winbind-stop-service = /usr/sbin/service winbind stop sssd-enable-service = /usr/sbin/update-rc.d sssd enable sssd-disable-service = /usr/sbin/update-rc.d sssd disable sssd-restart-service = /usr/sbin/service sssd restart sssd-stop-service = /usr/sbin/service sssd stop sssd-caches-flush = /usr/sbin/sss_cache --users --groups --netgroups --services --autofs-maps # Not sure if this is needed on debian, or if even possible name-caches-flush = realmd-0.17.1/service/realm-usleep-async.c0000644003225100322510000000643614046520517020703 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Marius Vollmer */ #include "config.h" #include "realm-usleep-async.h" typedef struct { gboolean completed; guint timeout_id; GCancellable *cancellable; guint cancel_id; } SleepAsyncData; static void complete_sleep_async (GSimpleAsyncResult *async) { SleepAsyncData *data = g_simple_async_result_get_op_res_gpointer (async); g_object_ref (async); if (!data->completed) { if (data->timeout_id > 0) g_source_remove (data->timeout_id); if (data->cancel_id > 0) { g_signal_handler_disconnect (data->cancellable, data->cancel_id); g_object_unref (data->cancellable); } data->completed = TRUE; g_simple_async_result_complete (async); } g_object_unref (async); } static gboolean on_sleep_async_done (gpointer user_data) { GSimpleAsyncResult *async = user_data; SleepAsyncData *data = g_simple_async_result_get_op_res_gpointer (async); data->timeout_id = 0; complete_sleep_async (async); return FALSE; } static void on_sleep_async_cancelled (GCancellable *cancellable, gpointer user_data) { GSimpleAsyncResult *async = user_data; complete_sleep_async (async); } void realm_usleep_async (gulong microseconds, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { GSimpleAsyncResult *async = g_simple_async_result_new (NULL, callback, user_data, realm_usleep_async); SleepAsyncData *data = g_new0 (SleepAsyncData, 1); g_simple_async_result_set_op_res_gpointer (async, data, g_free); if (cancellable) { g_simple_async_result_set_check_cancellable (async, cancellable); if (g_cancellable_is_cancelled (cancellable)) { g_simple_async_result_complete_in_idle (async); g_object_unref (async); return; } data->cancellable = g_object_ref (cancellable); data->cancel_id = g_cancellable_connect (cancellable, G_CALLBACK (on_sleep_async_cancelled), g_object_ref (async), g_object_unref); } data->timeout_id = g_timeout_add_full (G_PRIORITY_DEFAULT, microseconds / 1000, on_sleep_async_done, g_object_ref (async), g_object_unref); g_object_unref (async); } gboolean realm_usleep_finish (GAsyncResult *result, GError **error) { GSimpleAsyncResult *async; g_return_val_if_fail (g_simple_async_result_is_valid (result, NULL, realm_usleep_async), FALSE); async = G_SIMPLE_ASYNC_RESULT (result); if (g_simple_async_result_propagate_error (async, error)) return FALSE; return TRUE; } realmd-0.17.1/service/realm-sssd-provider.c0000644003225100322510000001707114046520517021074 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-command.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-diagnostics.h" #include "realm-disco-domain.h" #include "realm-errors.h" #include "realm-kerberos.h" #include "realm-packages.h" #include "realm-sssd-ad.h" #include "realm-sssd-ipa.h" #include "realm-sssd-provider.h" #include "realm-sssd-config.h" #include "realm-options.h" #include #include struct _RealmSssdProvider { RealmProvider parent; RealmIniConfig *config; }; typedef struct { RealmProviderClass parent_class; } RealmSssdProviderClass; enum { PROP_0, PROP_SSSD_CONFIG, }; #define REALM_DBUS_SSSD_PATH "/org/freedesktop/realmd/Sssd" G_DEFINE_TYPE (RealmSssdProvider, realm_sssd_provider, REALM_TYPE_PROVIDER); static void realm_sssd_provider_init (RealmSssdProvider *self) { self->config = realm_sssd_config_new (NULL); } static void realm_sssd_provider_constructed (GObject *obj) { RealmSssdProvider *self; GType realm_type; gchar **domains; gchar *type; gchar *name; gint i; G_OBJECT_CLASS (realm_sssd_provider_parent_class)->constructed (obj); self = REALM_SSSD_PROVIDER (obj); realm_provider_set_name (REALM_PROVIDER (self), "Sssd"); domains = realm_sssd_config_get_domains (self->config); for (i = 0; domains && domains[i] != 0; i++) { if (realm_sssd_config_load_domain (self->config, domains[i], NULL, &type, &name)) { if (g_strcmp0 (type, "ad") == 0) realm_type = REALM_TYPE_SSSD_AD; else if (g_strcmp0 (type, "ipa") == 0) realm_type = REALM_TYPE_SSSD_IPA; else realm_type = 0; if (realm_type) realm_provider_lookup_or_register_realm (REALM_PROVIDER (self), realm_type, name, NULL); g_free (name); g_free (type); } } g_strfreev (domains); } static void on_kerberos_discover (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); RealmDisco *disco; GError *error = NULL; disco = realm_disco_domain_finish (result, &error); if (error) g_task_return_error (task, error); else g_task_return_pointer (task, disco, realm_disco_unref); g_object_unref (task); } static void realm_sssd_provider_discover_async (RealmProvider *provider, const gchar *string, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; task = g_task_new (provider, NULL, callback, user_data); g_task_set_task_data (task, g_variant_ref (options), (GDestroyNotify)g_variant_unref); if (!realm_provider_match_software (options, REALM_DBUS_IDENTIFIER_ACTIVE_DIRECTORY, REALM_DBUS_IDENTIFIER_SSSD, REALM_DBUS_IDENTIFIER_SAMBA) && !realm_provider_match_software (options, REALM_DBUS_IDENTIFIER_ACTIVE_DIRECTORY, REALM_DBUS_IDENTIFIER_SSSD, REALM_DBUS_IDENTIFIER_ADCLI) && !realm_provider_match_software (options, REALM_DBUS_IDENTIFIER_FREEIPA, REALM_DBUS_IDENTIFIER_SSSD, REALM_DBUS_IDENTIFIER_FREEIPA) && !realm_provider_match_software (options, REALM_DBUS_IDENTIFIER_IPA, REALM_DBUS_IDENTIFIER_SSSD, REALM_DBUS_IDENTIFIER_IPA)) { g_task_return_pointer (task, NULL, NULL); } else { realm_disco_domain_async (string, realm_option_use_ldaps (options), invocation, on_kerberos_discover, g_object_ref (task)); } g_object_unref (task); } static GList * realm_sssd_provider_discover_finish (RealmProvider *provider, GAsyncResult *result, gint *relevance, GError **error) { RealmKerberos *realm = NULL; RealmDisco *disco; GVariant *options; gint priority; disco = g_task_propagate_pointer (G_TASK (result), error); if (disco == NULL) return NULL; options = g_task_get_task_data (G_TASK (result)); if (disco->server_software == NULL || !realm_provider_match_software (options, disco->server_software, REALM_DBUS_IDENTIFIER_SSSD, NULL)) { realm = NULL; } else if (g_str_equal (disco->server_software, REALM_DBUS_IDENTIFIER_ACTIVE_DIRECTORY)) { realm = realm_provider_lookup_or_register_realm (provider, REALM_TYPE_SSSD_AD, disco->domain_name, disco); priority = realm_provider_is_default (REALM_DBUS_IDENTIFIER_ACTIVE_DIRECTORY, REALM_DBUS_IDENTIFIER_SSSD) ? 100 : 50; } else if (g_str_equal (disco->server_software, REALM_DBUS_IDENTIFIER_IPA)) { realm = realm_provider_lookup_or_register_realm (provider, REALM_TYPE_SSSD_IPA, disco->domain_name, disco); priority = 100; } realm_disco_unref (disco); if (realm == NULL) return NULL; /* Return a higher priority if we're the default */ *relevance = priority; return g_list_append (NULL, g_object_ref (realm)); } static void realm_sssd_provider_get_property (GObject *obj, guint prop_id, GValue *value, GParamSpec *pspec) { RealmSssdProvider *self = REALM_SSSD_PROVIDER (obj); switch (prop_id) { case PROP_SSSD_CONFIG: g_value_set_object (value, self->config); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec); break; } } static void realm_sssd_provider_finalize (GObject *obj) { RealmSssdProvider *self = REALM_SSSD_PROVIDER (obj); g_object_unref (self->config); G_OBJECT_CLASS (realm_sssd_provider_parent_class)->finalize (obj); } void realm_sssd_provider_class_init (RealmSssdProviderClass *klass) { RealmProviderClass *provider_class = REALM_PROVIDER_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); provider_class->discover_async = realm_sssd_provider_discover_async; provider_class->discover_finish = realm_sssd_provider_discover_finish; object_class->constructed = realm_sssd_provider_constructed; object_class->get_property = realm_sssd_provider_get_property; object_class->finalize = realm_sssd_provider_finalize; g_object_class_install_property (object_class, PROP_SSSD_CONFIG, g_param_spec_object ("sssd-config", "Sssd Config", "Sssd Config", REALM_TYPE_INI_CONFIG, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)); } RealmProvider * realm_sssd_provider_new (void) { return g_object_new (REALM_TYPE_SSSD_PROVIDER, "g-object-path", REALM_DBUS_SSSD_PATH, NULL); } realmd-0.17.1/service/realm-credential.h0000644003225100322510000000370214046520517020403 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_CREDENTIAL_H__ #define __REALM_CREDENTIAL_H__ #include #include G_BEGIN_DECLS typedef enum { REALM_CREDENTIAL_OWNER_NONE = 0, REALM_CREDENTIAL_OWNER_ADMIN = 1, REALM_CREDENTIAL_OWNER_USER, REALM_CREDENTIAL_OWNER_COMPUTER } RealmCredentialOwner; typedef enum { REALM_CREDENTIAL_CCACHE = 1, REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_SECRET, REALM_CREDENTIAL_AUTOMATIC } RealmCredentialType; typedef struct { RealmCredentialType type; RealmCredentialOwner owner; /* * Sometimes these structures are allocated statically. The following * fields should not be used in that case, nor should the structure * be passed to the realm_credential_ref() or unref() function. */ int refs; union { struct { gchar *file; } ccache; struct { gchar *name; GBytes *value; } password; struct { GBytes *value; } secret; struct { int unused; } automatic; } x; } RealmCredential; RealmCredential * realm_credential_parse (GVariant *variant, GError **error); RealmCredential * realm_credential_ref (RealmCredential *cred); void realm_credential_unref (RealmCredential *cred); void realm_credential_ccache_delete_and_free (gchar *ccache_file); GVariant * realm_credential_build_supported (const RealmCredential *creds); G_END_DECLS #endif /* __REALM_CREDENTIAL_H__ */ realmd-0.17.1/service/realm-samba-provider.c0000644003225100322510000001422014046520517021174 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-command.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-diagnostics.h" #include "realm-disco-domain.h" #include "realm-errors.h" #include "realm-kerberos.h" #include "realm-packages.h" #include "realm-samba.h" #include "realm-samba-config.h" #include "realm-samba-enroll.h" #include "realm-samba-provider.h" #include "realm-samba-winbind.h" #include "realm-options.h" #include #include struct _RealmSambaProvider { RealmProvider parent; RealmIniConfig *config; }; typedef struct { RealmProviderClass parent_class; } RealmSambaProviderClass; enum { PROP_0, PROP_SAMBA_CONFIG, }; #define REALM_DBUS_SAMBA_PATH "/org/freedesktop/realmd/Samba" G_DEFINE_TYPE (RealmSambaProvider, realm_samba_provider, REALM_TYPE_PROVIDER); static void realm_samba_provider_init (RealmSambaProvider *self) { self->config = realm_samba_config_new (NULL); } static void realm_samba_provider_constructed (GObject *obj) { RealmSambaProvider *self; gchar *krb_realm = NULL; gchar *security; gchar *name; G_OBJECT_CLASS (realm_samba_provider_parent_class)->constructed (obj); self = REALM_SAMBA_PROVIDER (obj); realm_provider_set_name (REALM_PROVIDER (self), "Samba"); security = realm_ini_config_get (self->config, REALM_SAMBA_CONFIG_GLOBAL, "security"); if (security != NULL && g_ascii_strcasecmp (security, "ADS") == 0) krb_realm = realm_ini_config_get (self->config, REALM_SAMBA_CONFIG_GLOBAL, "realm"); if (krb_realm != NULL) { name = g_ascii_strdown (krb_realm, -1); realm_provider_lookup_or_register_realm (REALM_PROVIDER (self), REALM_TYPE_SAMBA, name, NULL); g_free (name); } g_free (krb_realm); g_free (security); } static void on_ad_discover (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); RealmDisco *disco; GError *error = NULL; disco = realm_disco_domain_finish (result, &error); if (error) g_task_return_error (task, error); else g_task_return_pointer (task, disco, realm_disco_unref); g_object_unref (task); } static void realm_samba_provider_discover_async (RealmProvider *provider, const gchar *string, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; task = g_task_new (provider, NULL, callback, user_data); if (!realm_provider_match_software (options, REALM_DBUS_IDENTIFIER_ACTIVE_DIRECTORY, REALM_DBUS_IDENTIFIER_WINBIND, REALM_DBUS_IDENTIFIER_SAMBA)) { g_task_return_pointer (task, NULL, NULL); } else { realm_disco_domain_async (string, realm_option_use_ldaps (options), invocation, on_ad_discover, g_object_ref (task)); } g_object_unref (task); } static GList * realm_samba_provider_discover_finish (RealmProvider *provider, GAsyncResult *result, gint *relevance, GError **error) { RealmKerberos *realm = NULL; RealmDisco *disco; disco = g_task_propagate_pointer (G_TASK (result), error); if (disco == NULL) return NULL; if (g_strcmp0 (disco->server_software, REALM_DBUS_IDENTIFIER_ACTIVE_DIRECTORY) == 0) { realm = realm_provider_lookup_or_register_realm (provider, REALM_TYPE_SAMBA, disco->domain_name, disco); } realm_disco_unref (disco); if (realm == NULL) return NULL; /* Return a higher priority if we're the default */ *relevance = realm_provider_is_default (REALM_DBUS_IDENTIFIER_ACTIVE_DIRECTORY, REALM_DBUS_IDENTIFIER_WINBIND) ? 100 : 50; return g_list_append (NULL, g_object_ref (realm)); } static void realm_samba_provider_get_property (GObject *obj, guint prop_id, GValue *value, GParamSpec *pspec) { RealmSambaProvider *self = REALM_SAMBA_PROVIDER (obj); switch (prop_id) { case PROP_SAMBA_CONFIG: g_value_set_object (value, self->config); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec); break; } } static void realm_samba_provider_finalize (GObject *obj) { RealmSambaProvider *self = REALM_SAMBA_PROVIDER (obj); g_object_unref (self->config); G_OBJECT_CLASS (realm_samba_provider_parent_class)->finalize (obj); } void realm_samba_provider_class_init (RealmSambaProviderClass *klass) { RealmProviderClass *provider_class = REALM_PROVIDER_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); provider_class->discover_async = realm_samba_provider_discover_async; provider_class->discover_finish = realm_samba_provider_discover_finish; object_class->constructed = realm_samba_provider_constructed; object_class->get_property = realm_samba_provider_get_property; object_class->finalize = realm_samba_provider_finalize; g_object_class_install_property (object_class, PROP_SAMBA_CONFIG, g_param_spec_object ("samba-config", "Samba Config", "Samba Config", REALM_TYPE_INI_CONFIG, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)); } RealmProvider * realm_samba_provider_new (void) { return g_object_new (REALM_TYPE_SAMBA_PROVIDER, "g-object-path", REALM_DBUS_SAMBA_PATH, NULL); } realmd-0.17.1/service/realm-kerberos-membership.c0000644003225100322510000000135114046520517022227 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-kerberos-membership.h" typedef RealmKerberosMembershipIface RealmKerberosMembershipInterface; G_DEFINE_INTERFACE (RealmKerberosMembership, realm_kerberos_membership, 0); static void realm_kerberos_membership_default_init (RealmKerberosMembershipIface *iface) { } realmd-0.17.1/service/org.freedesktop.realmd.policy.in0000664003225100322510000000400714216036521023211 0ustar00sbosesbose00000000000000 realmd Discover realm Authentication is required to discover a kerberos realm yes yes yes Join machine to realm Authentication is required to join this machine to a realm or domain auth_admin auth_admin auth_admin_keep org.freedesktop.realmd.discover-realm org.freedesktop.realmd.deconfigure-realm Remove machine from realm Authentication is required to remove this computer from a realm or domain. auth_admin auth_admin auth_admin_keep Change login policy Authentication is required to change the policy of who can log in on this computer. auth_admin auth_admin auth_admin_keep realmd-0.17.1/service/realm-disco-rootdse.c0000644003225100322510000003225114306662532021046 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-dbus-constants.h" #include "realm-diagnostics.h" #include "realm-disco-mscldap.h" #include "realm-disco-rootdse.h" #include "realm-ldap.h" #include "realm-options.h" #include #include typedef struct _Closure Closure; struct _Closure { RealmDisco *disco; GSource *source; GDBusMethodInvocation *invocation; gchar *default_naming_context; gint msgid; gboolean (* request) (GTask *task, Closure *clo, LDAP *ldap); gboolean (* result) (GTask *task, Closure *clo, LDAP *ldap, LDAPMessage *msg); }; static void closure_free (gpointer data) { Closure *clo = data; ldap_memfree (clo->default_naming_context); g_source_destroy (clo->source); g_source_unref (clo->source); g_clear_object (&clo->invocation); realm_disco_unref (clo->disco); g_free (clo); } static gboolean entry_has_attribute (LDAP *ldap, LDAPMessage *entry, const gchar *field, const gchar *value) { struct berval **bvs = NULL; gboolean has = FALSE; gsize len; int i; len = strlen (value); if (entry != NULL) bvs = ldap_get_values_len (ldap, entry, field); for (i = 0; bvs && bvs[i]; i++) { if (bvs[i]->bv_len == len && memcmp (bvs[i]->bv_val, value, len) == 0) { has = TRUE; break; } } ldap_value_free_len (bvs); return has; } static gchar * entry_get_attribute (LDAP *ldap, LDAPMessage *entry, const gchar *field, gboolean domain_name) { struct berval **bvs = NULL; gchar *value = NULL; if (entry != NULL) bvs = ldap_get_values_len (ldap, entry, field); if (bvs && bvs[0]) { value = g_strndup (bvs[0]->bv_val, bvs[0]->bv_len); if (domain_name) { if (!realm_options_check_domain_name (value)) { g_free (value); g_message ("Invalid value in LDAP %s field", field); value = NULL; } } } ldap_value_free_len (bvs); return value; } static gboolean search_ldap (GTask *task, Closure *clo, LDAP *ldap, const gchar *base, int scope, const char *filter, const char **attrs) { GError *error = NULL; int rc; if (!filter) filter = "(objectClass=*)"; g_debug ("Searching %s for %s", base, filter); rc = ldap_search_ext (ldap, base, scope, filter, (char **)attrs, 0, NULL, NULL, NULL, -1, &clo->msgid); if (rc != 0) { realm_ldap_set_error (&error, ldap, rc); g_task_return_error (task, error); return FALSE; } return TRUE; } static gboolean result_krb_realm (GTask *task, Closure *clo, LDAP *ldap, LDAPMessage *message) { LDAPMessage *entry; entry = ldap_first_entry (ldap, message); g_free (clo->disco->kerberos_realm); clo->disco->kerberos_realm = entry_get_attribute (ldap, entry, "cn", TRUE); g_debug ("Found realm: %s", clo->disco->kerberos_realm); /* All done */ g_task_return_boolean (task, TRUE); return FALSE; } static gboolean request_krb_realm (GTask *task, Closure *clo, LDAP *ldap) { const char *attrs[] = { "cn", NULL }; clo->request = NULL; clo->result = result_krb_realm; return search_ldap (task, clo, ldap, clo->default_naming_context, LDAP_SCOPE_SUB, "(objectClass=krbRealmContainer)", attrs); } static gboolean result_domain_info (GTask *task, Closure *clo, LDAP *ldap, LDAPMessage *message) { LDAPMessage *entry; struct berval **bvs; entry = ldap_first_entry (ldap, message); /* If we can't retrieve this, then nothing more to do */ if (entry == NULL) { g_debug ("Couldn't read default naming context"); g_task_return_new_error (task, REALM_LDAP_ERROR, LDAP_NO_SUCH_OBJECT, "Couldn't lookup domain name on LDAP server"); return FALSE; } /* What kind of server is it? */ clo->disco->server_software = NULL; bvs = ldap_get_values_len (ldap, entry, "info"); if (bvs && bvs[0] && bvs[0]->bv_len >= 3) { if (g_ascii_strncasecmp (bvs[0]->bv_val, "IPA", 3) == 0) clo->disco->server_software = REALM_DBUS_IDENTIFIER_IPA; } ldap_value_free_len (bvs); if (clo->disco->server_software) g_debug ("Got server software: %s", clo->disco->server_software); /* What is the domain name? */ g_free (clo->disco->domain_name); clo->disco->domain_name = entry_get_attribute (ldap, entry, "associatedDomain", TRUE); g_debug ("Got associatedDomain: %s", clo->disco->domain_name); /* Next search for Kerberos container */ clo->request = request_krb_realm; clo->result = NULL; return TRUE; } static gboolean request_domain_info (GTask *task, Closure *clo, LDAP *ldap) { const char *attrs[] = { "info", "associatedDomain", NULL }; int ret; int ldap_opt_val; clo->request = NULL; clo->result = result_domain_info; /* Trying to setup a TLS tunnel in the case the IPA server requires an * encrypted connected. Trying without in case of an error. Since we * most probably do not have the IPA CA certificate we will not check * the server certificate. */ ldap_opt_val = LDAP_OPT_X_TLS_NEVER; ret = ldap_set_option (ldap, LDAP_OPT_X_TLS_REQUIRE_CERT, &ldap_opt_val); if (ret != LDAP_OPT_SUCCESS) { g_debug ("Failed to disable certificate checking, trying without"); } ldap_opt_val = 0; ret = ldap_set_option (ldap, LDAP_OPT_X_TLS_NEWCTX, &ldap_opt_val); if (ret != LDAP_OPT_SUCCESS) { g_debug ("Failed to refresh LDAP context for TLS, trying without"); } ret = ldap_start_tls_s (ldap, NULL, NULL); if (ret != LDAP_SUCCESS) { g_debug ("Failed to setup TLS tunnel, trying without"); } return search_ldap (task, clo, ldap, clo->default_naming_context, LDAP_SCOPE_BASE, NULL, attrs); } static void on_udp_mscldap_complete (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); Closure *clo = g_task_get_task_data (task); GError *error = NULL; realm_disco_unref (clo->disco); clo->disco = realm_disco_mscldap_finish (result, &error); if (error != NULL) { g_debug ("Failed UDP Netlogon response: %s", error->message); g_task_return_error (task, error); } else { g_debug ("Received UDP Netlogon response"); g_task_return_boolean (task, TRUE); } g_object_unref (task); } static gboolean result_netlogon (GTask *task, Closure *clo, LDAP *ldap, LDAPMessage *message) { GError *error = NULL; if (realm_disco_mscldap_result (ldap, message, clo->disco, &error)) { g_debug ("Received TCP Netlogon response"); g_task_return_boolean (task, TRUE); } else { g_debug ("Failed TCP Netlogon response: %s", error->message); g_task_return_error (task, error); } /* All done */ return FALSE; } static gboolean request_netlogon (GTask *task, Closure *clo, LDAP *ldap) { GError *error = NULL; g_debug ("Sending TCP Netlogon request"); if (!realm_disco_mscldap_request (ldap, &clo->msgid, &error)) { g_task_return_error (task, error); return FALSE; } clo->request = NULL; clo->result = result_netlogon; return TRUE; } static gboolean result_root_dse (GTask *task, Closure *clo, LDAP *ldap, LDAPMessage *message) { GInetSocketAddress *inet; LDAPMessage *entry; gchar *string; entry = ldap_first_entry (ldap, message); /* Parse out the default naming context */ clo->default_naming_context = entry_get_attribute (ldap, entry, "defaultNamingContext", FALSE); g_debug ("Got defaultNamingContext: %s", clo->default_naming_context); /* This means that this is an Active Directory server */ if (entry_has_attribute (ldap, entry, "supportedCapabilities", "1.2.840.113556.1.4.800")) { /* This means that this is Windows 2003+ */ if (entry_has_attribute (ldap, entry, "supportedCapabilities", "1.2.840.113556.1.4.1670")) { /* * Do a TCP NetLogon request since doing this over * TCP is supported, and we already have a connection */ clo->request = request_netlogon; clo->result = NULL; return TRUE; /* Prior to Windows 2003 we have to use UDP for netlogon lookup */ } else { inet = G_INET_SOCKET_ADDRESS (clo->disco->server_address); string = g_inet_address_to_string (g_inet_socket_address_get_address (inet)); realm_diagnostics_info (clo->invocation, "Sending MS-CLDAP ping to: %s", string); g_free (string); realm_disco_mscldap_async (clo->disco->server_address, G_SOCKET_PROTOCOL_UDP, clo->disco->explicit_server, g_task_get_cancellable (task), on_udp_mscldap_complete, g_object_ref (task)); /* Disconnect from TCP at this point */ return FALSE; } /* Not an Active Directory server, check for IPA */ } else { if (clo->default_naming_context == NULL) { g_task_return_new_error (task, REALM_LDAP_ERROR, LDAP_NO_SUCH_OBJECT, "Couldn't find default naming context on LDAP server"); return FALSE; } /* Next search for IPA field */ clo->request = request_domain_info; clo->result = NULL; return TRUE; } } static gboolean request_root_dse (GTask *task, Closure *clo, LDAP *ldap) { const char *attrs[] = { "defaultNamingContext", "supportedCapabilities", NULL }; clo->request = NULL; clo->result = result_root_dse; return search_ldap (task, clo, ldap, "", LDAP_SCOPE_BASE, NULL, attrs); } static GIOCondition on_ldap_io (LDAP *ldap, GIOCondition cond, gpointer user_data) { GTask *task = G_TASK (user_data); Closure *clo = g_task_get_task_data (task); struct timeval tvpoll = { 0, 0 }; LDAPMessage *message; GError *error = NULL; gboolean ret; /* Some failure */ if (cond & G_IO_ERR) { realm_ldap_set_error (&error, ldap, 0); g_task_return_error (task, error); return G_IO_NVAL; } /* Ready to get a result */ if (cond & G_IO_IN && clo->result != NULL) { switch (ldap_result (ldap, clo->msgid, 0, &tvpoll, &message)) { case LDAP_RES_INTERMEDIATE: case LDAP_RES_SEARCH_REFERENCE: ret = TRUE; break; case -1: realm_ldap_set_error (&error, ldap, -1); g_task_return_error (task, error); ret = FALSE; break; case 0: ret = TRUE; break; default: ret = clo->result (task, clo, ldap, message); ldap_msgfree (message); break; } if (!ret) return G_IO_NVAL; } if (cond & G_IO_OUT && clo->request != NULL) { if (!(clo->request) (task, clo, ldap)) return G_IO_NVAL; } return (clo->request ? G_IO_OUT : 0) | (clo->result ? G_IO_IN : 0); } void realm_disco_rootdse_async (GSocketAddress *address, const gchar *explicit_server, gboolean use_ldaps, GDBusMethodInvocation *invocation, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; Closure *clo; g_return_if_fail (address != NULL); task = g_task_new (NULL, cancellable, callback, user_data); clo = g_new0 (Closure, 1); clo->disco = realm_disco_new (NULL); clo->disco->explicit_server = g_strdup (explicit_server); clo->disco->server_address = g_object_ref (address); clo->invocation = invocation ? g_object_ref (invocation) : NULL; clo->request = request_root_dse; g_task_set_task_data (task, clo, closure_free); clo->source = realm_ldap_connect_anonymous (address, G_SOCKET_PROTOCOL_TCP, use_ldaps, cancellable); if (clo->source == NULL) { g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_NOT_CONNECTED, _("Failed to setup LDAP connection")); g_object_unref (task); return; } g_source_set_callback (clo->source, (GSourceFunc)on_ldap_io, g_object_ref (task), g_object_unref); g_source_attach (clo->source, g_task_get_context (task)); g_object_unref (task); } RealmDisco * realm_disco_rootdse_finish (GAsyncResult *result, GError **error) { Closure *clo; RealmDisco *disco; g_return_val_if_fail (g_task_is_valid (result, NULL), NULL); g_return_val_if_fail (error == NULL || *error == NULL, NULL); if (!g_task_propagate_boolean (G_TASK (result), error)) return FALSE; clo = g_task_get_task_data (G_TASK (result)); disco = clo->disco; clo->disco = NULL; /* Should have been set above */ g_return_val_if_fail (disco->domain_name, NULL); if (!disco->kerberos_realm) disco->kerberos_realm = g_ascii_strup (disco->domain_name, -1); return disco; } realmd-0.17.1/service/realm-samba-config.h0000644003225100322510000000237414046520517020623 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SAMBA_CONFIG_H__ #define __REALM_SAMBA_CONFIG_H__ #include #include "realm-ini-config.h" #define REALM_SAMBA_CONFIG_GLOBAL "global" RealmIniConfig * realm_samba_config_new (GError **error); RealmIniConfig * realm_samba_config_new_with_flags (RealmIniFlags flags, GError **error); gboolean realm_samba_config_get_boolean (RealmIniConfig *config, const gchar *section, const gchar *key, gboolean defalt); G_END_DECLS #endif /* __REALM_SAMBA_CONFIG_H__ */ realmd-0.17.1/service/realm-sssd.h0000644003225100322510000000556314046520517017254 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SSSD_H__ #define __REALM_SSSD_H__ #include #include "realm-kerberos.h" #include "realm-ini-config.h" G_BEGIN_DECLS #define REALM_TYPE_SSSD (realm_sssd_get_type ()) #define REALM_SSSD(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_SSSD, RealmSssd)) #define REALM_IS_SSSD(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_SSSD)) #define REALM_SSSD_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), REALM_TYPE_SSSD, RealmSssdClass)) #define REALM_IS_SSSD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), REALM_TYPE_SSSD)) #define REALM_SSSD_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), REALM_TYPE_SSSD, RealmSssdClass)) typedef struct _RealmSssd RealmSssd; typedef struct _RealmSssdClass RealmSssdClass; typedef struct _RealmSssdPrivate RealmSssdPrivate; struct _RealmSssd { RealmKerberos parent; RealmSssdPrivate *pv; }; struct _RealmSssdClass { RealmKerberosClass parent_class; /* * This is set by derived classes and is a value for the sssd.conf * provider relevant to this realm, surch as "ipa" or "ad" */ const char *sssd_conf_provider_name; }; typedef struct _RealmSssd RealmSssd; GType realm_sssd_get_type (void) G_GNUC_CONST; RealmIniConfig * realm_sssd_get_config (RealmSssd *self); const gchar * realm_sssd_get_config_section (RealmSssd *self); const gchar * realm_sssd_get_config_domain (RealmSssd *self); gchar * realm_sssd_build_default_home (const gchar *value); void realm_sssd_deconfigure_domain_tail (RealmSssd *self, GTask *task, GDBusMethodInvocation *invocation); gboolean realm_sssd_set_login_policy (RealmIniConfig *config, const gchar *section, const gchar *access_provider, const gchar **add_names, const gchar **remove_names, gboolean names_are_groups, GError **error); void realm_sssd_update_properties (RealmSssd *self); G_END_DECLS #endif /* __REALM_SSSD_H__ */ realmd-0.17.1/service/realm-packages.c0000644003225100322510000004672014046520517020051 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-diagnostics.h" #include "realm-daemon.h" #include "realm-errors.h" #include "realm-invocation.h" #include "realm-options.h" #include "realm-packages.h" #include "realm-settings.h" #include #define CALL_TIMEOUT (24 * 60 * 60 * 1000) static gboolean packages_check_paths (const gchar **paths, GDBusMethodInvocation *invocation) { gint i; g_return_val_if_fail (paths != NULL, FALSE); g_return_val_if_fail (invocation == NULL || G_IS_DBUS_METHOD_INVOCATION (invocation), FALSE); for (i = 0; paths[i] != NULL; i++) { if (!g_file_test (paths[i], G_FILE_TEST_EXISTS)) { realm_diagnostics_info (invocation, "Couldn't find file: %s", paths[i]); return FALSE; } } return TRUE; } static gchar * packages_to_list (gchar **package_ids) { GString *string; gchar **parts; gint i; string = g_string_new (""); for (i = 0; package_ids != NULL && package_ids[i] != NULL; i++) { parts = g_strsplit (package_ids[i], ";", 2); if (string->len) g_string_append (string, " "); g_string_append (string, parts[0]); g_strfreev (parts); } return g_string_free (string, FALSE); } typedef struct { GDBusConnection *connection; guint subscription; gchar *path; /* The method call */ const gchar *method; GVariant *parameters; /* Package IDs seen when resolving */ GHashTable *packages; GVariant *error_code; } PackageTransaction; static void package_transaction_free (gpointer data) { PackageTransaction *transaction = data; g_debug ("packages: freeing transtaction"); if (transaction->subscription) { g_dbus_connection_signal_unsubscribe (transaction->connection, transaction->subscription); } g_object_unref (transaction->connection); g_free (transaction->path); if (transaction->packages) g_hash_table_unref (transaction->packages); if (transaction->parameters) g_variant_unref (transaction->parameters); if (transaction->error_code) g_variant_unref (transaction->error_code); g_free (transaction); } static void on_transaction_signal (GDBusConnection *connection, const gchar *sender_name, const gchar *object_path, const gchar *interface_name, const gchar *signal_name, GVariant *parameters, gpointer user_data) { GTask *task = G_TASK (user_data); PackageTransaction *transaction = g_task_get_task_data (task); const gchar *message; const gchar *id; const gchar *pos; guint code, percent; gboolean installed; gchar *package; gchar *string; g_debug ("packages: signal: %s %s", signal_name, string = g_variant_print (parameters, FALSE)); g_free (string); if (g_str_equal (signal_name, "ErrorCode")) { if (transaction->error_code) g_variant_unref (transaction->error_code); transaction->error_code = g_variant_ref (parameters); } else if (g_str_equal (signal_name, "Finished")) { g_dbus_connection_signal_unsubscribe (connection, transaction->subscription); transaction->subscription = 0; if (!g_task_had_error (task)) { if (transaction->error_code) { g_variant_get (transaction->error_code, "(u&s)", &code, &message); g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_FAILED, "%s", message); } else { g_task_return_boolean (task, TRUE); } } g_object_unref (task); } else if (g_str_equal (signal_name, "Package")) { g_variant_get (parameters, "(u&s&s)", &code, &id, &message); if (!transaction->packages) { transaction->packages = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); } pos = strchr (id, ';'); if (pos == NULL) pos = id + strlen (id); installed = (code == 1 /* PK_INFO_ENUM_INSTALLED */); package = g_strndup (id, pos - id); if (installed) id = ""; if (installed || !g_hash_table_lookup (transaction->packages, package)) { g_hash_table_replace (transaction->packages, package, g_strdup (id)); package = NULL; } g_free (package); } else if (g_str_equal (signal_name, "ItemProgress")) { g_variant_get (parameters, "(&suu)", &id, &code, &percent); g_debug ("packages: progress: %s %u %u", id, code, code); } } static void on_method_done (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); PackageTransaction *transaction = g_task_get_task_data (task); GError *error = NULL; GVariant *retval; retval = g_dbus_connection_call_finish (G_DBUS_CONNECTION (source), result, &error); if (error != NULL) { g_debug ("packages: call %s failed: %s", transaction->method, error->message); g_task_return_error (task, error); } else { g_debug ("packages: call %s completed", transaction->method); g_variant_unref (retval); } /* Not done until Finished signal */ g_object_unref (task); } static void on_set_hints (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); PackageTransaction *transaction; GError *error = NULL; GVariant *retval; gchar *string; transaction = g_task_get_task_data (task); retval = g_dbus_connection_call_finish (transaction->connection, result, &error); if (error != NULL) { g_debug ("packages: call SetHints failed: %s", error->message); g_task_return_error (task, error); } else { g_variant_unref (retval); g_debug ("packages: call %s %s", transaction->method, string = g_variant_print (transaction->parameters, FALSE)); g_dbus_connection_call (transaction->connection, "org.freedesktop.PackageKit", transaction->path, "org.freedesktop.PackageKit.Transaction", transaction->method, transaction->parameters, G_VARIANT_TYPE ("()"), G_DBUS_CALL_FLAGS_NO_AUTO_START, CALL_TIMEOUT, g_task_get_cancellable (task), on_method_done, g_object_ref (task)); } g_object_unref (task); } static void on_create_transaction (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); PackageTransaction *transaction; GError *error = NULL; GVariant *retval; const gchar *hints[] = { "interactive=false", "background=false", NULL }; transaction = g_task_get_task_data (task); retval = g_dbus_connection_call_finish (transaction->connection, result, &error); if (error != NULL) { g_debug ("packages: CreateTransaction failed: %s", error->message); g_task_return_error (task, error); } else { g_variant_get (retval, "(o)", &transaction->path); g_variant_unref (retval); transaction->subscription = g_dbus_connection_signal_subscribe (transaction->connection, "org.freedesktop.PackageKit", "org.freedesktop.PackageKit.Transaction", NULL, transaction->path, NULL, G_DBUS_SIGNAL_FLAGS_NONE, on_transaction_signal, task, NULL); g_debug ("packages: SetHints call"); g_dbus_connection_call (transaction->connection, "org.freedesktop.PackageKit", transaction->path, "org.freedesktop.PackageKit.Transaction", "SetHints", g_variant_new ("(^as)", hints), G_VARIANT_TYPE ("()"), G_DBUS_CALL_FLAGS_NO_AUTO_START, CALL_TIMEOUT, g_task_get_cancellable (task), on_set_hints, g_object_ref (task)); } g_object_unref (task); } static void package_transaction_create (const gchar *method, GVariant *parameters, GDBusConnection *connection, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { PackageTransaction *transaction; GTask *task; task = g_task_new (NULL, cancellable, callback, user_data); transaction = g_new0 (PackageTransaction, 1); transaction->method = method; transaction->parameters = g_variant_ref_sink (parameters); transaction->connection = g_object_ref (connection); g_task_set_task_data (task, transaction, package_transaction_free); g_debug ("packages: CreateTransaction call"); g_dbus_connection_call (connection, "org.freedesktop.PackageKit", "/org/freedesktop/PackageKit", "org.freedesktop.PackageKit", "CreateTransaction", g_variant_new ("()"), G_VARIANT_TYPE ("(o)"), G_DBUS_CALL_FLAGS_NONE, CALL_TIMEOUT, cancellable, on_create_transaction, g_object_ref (task)); } static void packages_install_async (GDBusConnection *connection, const gchar **package_ids, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { guint64 transaction_flags = 1 /* PK_TRANSACTION_FLAG_ENUM_ONLY_TRUSTED */; package_transaction_create ("InstallPackages", g_variant_new ("(t^as)", transaction_flags, package_ids), connection, cancellable, callback, user_data); } static gboolean packages_install_finish (GAsyncResult *result, GError **error) { return g_task_propagate_boolean (G_TASK (result), error); } static void packages_resolve_async (GDBusConnection *connection, const gchar **package_names, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { guint64 flags = 1 << 18 /* PK_FILTER_ENUM_ARCH */; flags |= 1 << 16 /* PK_FILTER_ENUM_NEWEST */; package_transaction_create ("Resolve", g_variant_new ("(t^as)", flags, package_names), connection, cancellable, callback, user_data); } static gchar ** packages_resolve_finish (GAsyncResult *result, GError **error) { GTask *task = G_TASK (result); PackageTransaction *transaction; gchar **requested; GPtrArray *packages; GHashTableIter iter; guint64 flags; gchar *missing; gchar *id; gint i; if (!g_task_propagate_boolean (task, error)) return NULL; transaction = g_task_get_task_data (task); g_variant_get (transaction->parameters, "(t^a&s)", &flags, &requested); /* * In an unexpected move, Resolve() does not fail or provide * any feedback when a requested package does not exist. * * So we make a note of the ones we requested here, to compare against * what we get back. */ packages = g_ptr_array_new (); for (i = 0; requested[i] != NULL; i++) { if (!g_hash_table_lookup (transaction->packages, requested[i])) g_ptr_array_add (packages, requested[i]); } missing = NULL; if (packages->len) { g_ptr_array_add (packages, NULL); missing = packages_to_list ((gchar **)packages->pdata); g_set_error (error, REALM_ERROR, REALM_ERROR_INTERNAL, _("The following packages are not available for installation: %s"), missing); g_free (missing); } g_ptr_array_free (packages, TRUE); if (missing) { return NULL; } packages = g_ptr_array_new (); g_hash_table_iter_init (&iter, transaction->packages); while (g_hash_table_iter_next (&iter, NULL, (gpointer *)&id)) { if (!g_str_equal (id, "")) { g_hash_table_iter_steal (&iter); g_ptr_array_add (packages, id); } } g_ptr_array_add (packages, NULL); return (gchar **)g_ptr_array_free (packages, FALSE); } typedef struct { GDBusConnection *connection; GDBusMethodInvocation *invocation; gchar **packages; gboolean automatic; } InstallClosure; static void install_closure_free (gpointer data) { InstallClosure *install = data; g_clear_object (&install->invocation); g_clear_object (&install->connection); g_strfreev (install->packages); g_free (install); } static void on_install_installed (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; packages_install_finish (result, &error); if (error == NULL) { g_task_return_boolean (task, TRUE); } else { g_task_return_error (task, error); } g_object_unref (task); } static void on_install_resolved (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); InstallClosure *install = g_task_get_task_data (task); gchar **package_ids = NULL; GHashTable *names; GCancellable *cancellable; GError *error = NULL; gchar *remote; gchar *missing; names = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); package_ids = packages_resolve_finish (result, &error); if (error == NULL) { missing = packages_to_list (package_ids); if (package_ids == NULL || *package_ids == NULL) { g_task_return_boolean (task, TRUE); } else if (!install->automatic) { g_set_error (&error, REALM_ERROR, REALM_ERROR_FAILED, _("Necessary packages are not installed: %s"), missing); } else { /* String should match that in realm-client.c */ realm_diagnostics_info (install->invocation, "%s: %s", _("Installing necessary packages"), missing); cancellable = realm_invocation_get_cancellable (install->invocation); packages_install_async (install->connection, (const gchar **)package_ids, cancellable, on_install_installed, g_object_ref (task)); } g_free (missing); } if (error != NULL) { /* * This is after our first interaction with package-kit. If it's * not installed then we'll get a standard DBus error that it * couldn't activate the service. * * So translate that into something useful for the caller. If * PackageKit is not installed, then it is assumed that the * distro or administrator wants to take full control over the * installation of packages. */ if (error->domain == G_DBUS_ERROR) { remote = g_dbus_error_get_remote_error (error); if (remote && g_str_equal (remote, "org.freedesktop.DBus.Error.ServiceUnknown")) { g_dbus_error_strip_remote_error (error); realm_diagnostics_error (install->invocation, error, "PackageKit not available"); g_clear_error (&error); missing = packages_to_list (install->packages); g_set_error (&error, REALM_ERROR, REALM_ERROR_FAILED, _("Necessary packages are not installed: %s"), missing); g_free (missing); } g_free (remote); } g_task_return_error (task, error); } g_hash_table_unref (names); g_strfreev (package_ids); g_object_unref (task); } static void lookup_required_files_and_packages (const gchar **package_sets, gchar ***result_packages, gchar ***result_files, gboolean *result_unconditional) { GHashTable *settings; GHashTableIter iter; GPtrArray *packages; GPtrArray *files; gboolean unconditional; gchar *section; gchar *package; gchar *file; gint i; unconditional = FALSE; packages = g_ptr_array_new_with_free_func (g_free); files = g_ptr_array_new_with_free_func (g_free); for (i = 0; package_sets[i] != NULL; i++) { section = g_strdup_printf ("%s-packages", package_sets[i]); settings = realm_settings_section (section); if (settings == NULL) { g_critical ("No section found in settings: %s", section); return; } g_free (section); g_hash_table_iter_init (&iter, settings); while (g_hash_table_iter_next (&iter, (gpointer *)&package, (gpointer *)&file)) { file = g_strstrip (g_strdup (file)); if (g_str_equal (file, "")) { g_free (file); unconditional = TRUE; } else { g_ptr_array_add (files, file); } package = g_strstrip (g_strdup (package)); if (g_str_equal (package, "")) g_free (package); else g_ptr_array_add (packages, package); } } if (result_packages) { g_ptr_array_add (packages, NULL); *result_packages = (gchar **)g_ptr_array_free (packages, FALSE); } else { g_ptr_array_free (packages, TRUE); } if (result_files) { g_ptr_array_add (files, NULL); *result_files = (gchar **)g_ptr_array_free (files, FALSE); } else { g_ptr_array_free (files, TRUE); } if (result_unconditional) *result_unconditional = unconditional; } gchar ** realm_packages_expand_sets (const gchar **package_sets) { gchar **packages = NULL; g_return_val_if_fail (package_sets != NULL, NULL); lookup_required_files_and_packages (package_sets, &packages, NULL, NULL); return packages; } void realm_packages_install_async (const gchar **package_sets, GDBusMethodInvocation *invocation, GDBusConnection *connection, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; InstallClosure *install; gboolean unconditional; gchar **required_files; GCancellable *cancellable; gchar *string; gboolean have; g_return_if_fail (package_sets != NULL); g_return_if_fail (G_IS_DBUS_CONNECTION (connection)); task = g_task_new (NULL, NULL, callback, user_data); install = g_new0 (InstallClosure, 1); install->automatic = realm_options_automatic_install (); install->invocation = invocation ? g_object_ref (invocation) : NULL; install->connection = g_object_ref (connection); g_task_set_task_data (task, install, install_closure_free); lookup_required_files_and_packages (package_sets, &install->packages, &required_files, &unconditional); if (realm_daemon_is_install_mode ()) { have = TRUE; realm_diagnostics_info (invocation, "Assuming packages are installed"); } else if (unconditional) { have = FALSE; realm_diagnostics_info (invocation, "Unconditionally checking packages"); } else { have = packages_check_paths ((const gchar **)required_files, invocation); if (required_files[0] != NULL) { string = g_strjoinv (", ", required_files); realm_diagnostics_info (invocation, "Required files: %s", string); g_free (string); } } g_strfreev (required_files); if (have) { g_task_return_boolean (task, TRUE); } else { realm_diagnostics_info (invocation, "Resolving required packages"); cancellable = realm_invocation_get_cancellable (install->invocation); packages_resolve_async (connection, (const gchar **)install->packages, cancellable, on_install_resolved, g_object_ref (task)); } g_object_unref (task); } gboolean realm_packages_install_finish (GAsyncResult *result, GError **error) { if (g_task_propagate_boolean (G_TASK (result), error)) return FALSE; return TRUE; } realmd-0.17.1/service/realm-ini-config.h0000644003225100322510000001761614046520517020324 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_INI_CONFIG_H__ #define __REALM_INI_CONFIG_H__ #include typedef enum { REALM_INI_NONE = 0, REALM_INI_LINE_CONTINUATIONS = 1 << 1, REALM_INI_NO_WATCH = 1 << 2, REALM_INI_PRIVATE = 1 << 3, REALM_INI_STRICT_BOOLEAN = 1 << 4, } RealmIniFlags; #define REALM_TYPE_INI_CONFIG (realm_ini_config_get_type ()) #define REALM_INI_CONFIG(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_INI_CONFIG, RealmIniConfig)) #define REALM_IS_INI_CONFIG(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_INI_CONFIG)) typedef struct _RealmIniConfig RealmIniConfig; GType realm_ini_config_get_type (void) G_GNUC_CONST; RealmIniConfig * realm_ini_config_new (RealmIniFlags flags); void realm_ini_config_reset (RealmIniConfig *self); gboolean realm_ini_config_begin_change (RealmIniConfig *self, GError **error); void realm_ini_config_abort_change (RealmIniConfig *self); gboolean realm_ini_config_finish_change (RealmIniConfig *self, GError **error); const gchar * realm_ini_config_get_filename (RealmIniConfig *self); void realm_ini_config_set_filename (RealmIniConfig *self, const gchar *filename); void realm_ini_config_reload (RealmIniConfig *self); void realm_ini_config_read_string (RealmIniConfig *self, const gchar *data); gchar * realm_ini_config_write_string (RealmIniConfig *self); void realm_ini_config_read_bytes (RealmIniConfig *self, GBytes *data); GBytes * realm_ini_config_write_bytes (RealmIniConfig *self); gboolean realm_ini_config_read_file (RealmIniConfig *self, const gchar *filename, GError **error); gboolean realm_ini_config_write_file (RealmIniConfig *self, const gchar *filename, GError **error); gboolean realm_ini_config_write_fd (RealmIniConfig *self, gint fd, GError **error); void realm_ini_config_set (RealmIniConfig *self, const gchar *section, const gchar *name, const gchar *value, ...) G_GNUC_NULL_TERMINATED; gchar * realm_ini_config_get (RealmIniConfig *self, const gchar *section, const gchar *name); gboolean realm_ini_config_have (RealmIniConfig *self, const gchar *section, const gchar *name); gchar ** realm_ini_config_get_list (RealmIniConfig *self, const gchar *section, const gchar *name, const gchar *delimiters); void realm_ini_config_set_list (RealmIniConfig *self, const gchar *section, const gchar *name, const gchar *delimiter, const gchar **values); void realm_ini_config_set_list_diff (RealmIniConfig *self, const gchar *section, const gchar *name, const gchar *delimiter, const gchar **add, const gchar **remove); GHashTable * realm_ini_config_get_all (RealmIniConfig *self, const gchar *section); void realm_ini_config_set_all (RealmIniConfig *self, const gchar *section, GHashTable *parameters); gboolean realm_ini_config_get_boolean (RealmIniConfig *config, const gchar *section, const gchar *name, gboolean defahlt); gchar ** realm_ini_config_get_sections (RealmIniConfig *self); gboolean realm_ini_config_have_section (RealmIniConfig *self, const gchar *section); void realm_ini_config_remove_section (RealmIniConfig *self, const gchar *section); gboolean realm_ini_config_change (RealmIniConfig *self, const gchar *section, GError **error, ...) G_GNUC_NULL_TERMINATED; gboolean realm_ini_config_changev (RealmIniConfig *self, const gchar *section, GHashTable *parameters, GError **error); gboolean realm_ini_config_change_list (RealmIniConfig *self, const gchar *section, const gchar *name, const gchar *delimiters, const gchar **add, const gchar **remove, GError **error); G_END_DECLS #endif /* __REALM_INI_CONFIG_H__ */ realmd-0.17.1/service/realmd-defaults.conf0000644003225100322510000000125414046520517020742 0ustar00sbosesbose00000000000000# Default values for realmd [service] debug = no automatic-install = yes [paths] net = /usr/bin/net winbindd = /usr/sbin/winbindd smb.conf = /etc/smb.conf sssd.conf = /etc/sssd/sssd.conf adcli = /usr/sbin/adcli ipa-client-install = /usr/sbin/ipa-client-install pam_winbind.conf = /etc/security/pam_winbind.conf krb5.conf = /etc/krb5.conf [active-directory] default-client = sssd os-name = os-version = [providers] sssd = yes samba = yes example = no [samba-packages] [winbind-packages] [sssd-packages] [adcli-packages] [commands] [users] default-shell = /bin/bash default-home = /home/%U@%D [example.com] example-administrator = Administrator example-password = bureaucracy realmd-0.17.1/service/realm-daemon.h0000644003225100322510000000271114046520517017533 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_DAEMON_H__ #define __REALM_DAEMON_H__ #include G_BEGIN_DECLS void realm_daemon_hold (const gchar *identifier); gboolean realm_daemon_release (const gchar *identifier); gboolean realm_daemon_is_dbus_peer (void); gboolean realm_daemon_is_install_mode (void); gboolean realm_daemon_has_debug_flag (void); void realm_daemon_poke (void); void realm_daemon_export_object (GDBusObjectSkeleton *object); void realm_daemon_syslog (const gchar *operation, int prio, const gchar *format, ...) G_GNUC_PRINTF(3, 4); G_END_DECLS #endif /* __REALM_DAEMON_H__ */ realmd-0.17.1/service/realm-example.h0000644003225100322510000000225214046520517017723 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_EXAMPLE_H__ #define __REALM_EXAMPLE_H__ #include #include "realm-kerberos.h" #include "realm-provider.h" G_BEGIN_DECLS #define REALM_TYPE_EXAMPLE (realm_example_get_type ()) #define REALM_EXAMPLE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_EXAMPLE, RealmExample)) #define REALM_IS_EXAMPLE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_EXAMPLE)) typedef struct _RealmExample RealmExample; GType realm_example_get_type (void) G_GNUC_CONST; RealmKerberos * realm_example_new (const gchar *name, RealmProvider *provider); G_END_DECLS #endif /* __REALM_EXAMPLE_H__ */ realmd-0.17.1/service/realm-samba-enroll.c0000644003225100322510000004217414307603762020652 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-command.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-diagnostics.h" #include "realm-dn-util.h" #include "realm-errors.h" #include "realm-options.h" #include "realm-samba-config.h" #include "realm-samba-enroll.h" #include "realm-samba-provider.h" #include "realm-settings.h" #include #include #include #include #include #include #include #include #ifdef WITH_NEW_SAMBA_CLI_OPTS #define SMBCLI_KERBEROS "--use-kerberos=required" #define SMBCLI_CONF "--configfile" #else #define SMBCLI_KERBEROS "-k" #define SMBCLI_CONF "-s" #endif typedef struct { GDBusMethodInvocation *invocation; gchar *join_args[8]; RealmDisco *disco; gchar *user_name; GBytes *password_input; RealmIniConfig *config; gchar *custom_smb_conf; gchar *envvar; } JoinClosure; static void join_closure_free (gpointer data) { JoinClosure *join = data; int i; g_bytes_unref (join->password_input); g_free (join->user_name); for (i = 0; i < G_N_ELEMENTS (join->join_args); i++) g_free (join->join_args[i]); realm_disco_unref (join->disco); g_free (join->envvar); g_clear_object (&join->invocation); g_clear_object (&join->config); if (join->custom_smb_conf) { if (!realm_daemon_has_debug_flag ()) g_unlink (join->custom_smb_conf); g_free (join->custom_smb_conf); } g_free (join); } gchar * fallback_workgroup (const gchar *realm) { const gchar *pos; pos = strchr (realm, '.'); if (pos == NULL) return g_utf8_strup (realm, -1); else return g_utf8_strup (realm, pos - realm); } static char * try_to_get_fqdn (void) { char hostname[HOST_NAME_MAX + 1]; gchar *fqdn = NULL; int ret; struct addrinfo *res; struct addrinfo hints; ret = gethostname (hostname, sizeof (hostname)); if (ret < 0) { return NULL; } if (strchr (hostname, '.') == NULL) { memset (&hints, 0, sizeof (struct addrinfo)); hints.ai_socktype = SOCK_DGRAM; hints.ai_flags = AI_CANONNAME; ret = getaddrinfo (hostname, NULL, &hints, &res); if (ret != 0) { return NULL; } /* Only use a fully-qualified name */ if (strchr (res->ai_canonname, '.') != NULL) { fqdn = g_strdup (res->ai_canonname); } freeaddrinfo (res); } else { fqdn = g_strdup (hostname); } return fqdn; } static JoinClosure * join_closure_init (GTask *task, RealmDisco *disco, GVariant *options, GDBusMethodInvocation *invocation, gboolean do_join) { JoinClosure *join; gchar *workgroup; GError *error = NULL; int temp_fd; const gchar *explicit_computer_name = NULL; const gchar *authid = NULL; gchar *name_from_keytab = NULL; gchar *fqdn = NULL; gchar *fqdn_dom = NULL; join = g_new0 (JoinClosure, 1); join->disco = realm_disco_ref (disco); join->invocation = invocation ? g_object_ref (invocation) : NULL; g_task_set_task_data (task, join, join_closure_free); explicit_computer_name = realm_options_computer_name (options, disco->domain_name); /* Set netbios name to explicit or truncated name if available */ if (explicit_computer_name != NULL) authid = explicit_computer_name; else if (disco->explicit_netbios) authid = disco->explicit_netbios; /* try to get the NetBIOS name from the keytab while leaving the domain */ if (explicit_computer_name == NULL && !do_join) { name_from_keytab = realm_kerberos_get_netbios_name_from_keytab(disco->kerberos_realm); if (name_from_keytab != NULL) { authid = name_from_keytab; } } join->config = realm_ini_config_new (REALM_INI_NO_WATCH | REALM_INI_PRIVATE); realm_ini_config_set (join->config, REALM_SAMBA_CONFIG_GLOBAL, "security", "ads", "kerberos method", "system keytab", "realm", disco->kerberos_realm, "netbios name", authid, NULL); /* * Samba complains if we don't set a 'workgroup' setting for the realm we're * going to join. If we didn't yet manage to lookup the workgroup, then go ahead * and assume that the first domain component is the workgroup name. */ if (disco && disco->workgroup) { realm_ini_config_set (join->config, REALM_SAMBA_CONFIG_GLOBAL, "workgroup", disco->workgroup, NULL); } else { workgroup = fallback_workgroup (disco->domain_name); realm_ini_config_set (join->config, REALM_SAMBA_CONFIG_GLOBAL, "workgroup", workgroup, NULL); if (disco) disco->workgroup = workgroup; else g_free (workgroup); } /* Add the fully-qualified DNS hostname as additional name if it is from * a different domain. */ fqdn = try_to_get_fqdn (); if (fqdn != NULL && join->disco->domain_name != NULL && (fqdn_dom = strchr (fqdn, '.')) != NULL && g_ascii_strcasecmp (fqdn_dom + 1, join->disco->domain_name) != 0 ) { disco->dns_fqdn = g_strdup (fqdn); realm_ini_config_set (join->config, REALM_SAMBA_CONFIG_GLOBAL, "additional dns hostnames", disco->dns_fqdn, NULL); } g_free (fqdn); /* Write out the config file for use by various net commands */ join->custom_smb_conf = g_build_filename (g_get_tmp_dir (), "realmd-smb-conf.XXXXXX", NULL); temp_fd = g_mkstemp_full (join->custom_smb_conf, O_WRONLY, S_IRUSR | S_IWUSR); if (temp_fd != -1) { if (realm_ini_config_write_fd (join->config, temp_fd, &error)) { realm_ini_config_set_filename (join->config, join->custom_smb_conf); } else { g_warning ("couldn't write to a temp file: %s: %s", join->custom_smb_conf, error->message); g_error_free (error); } close (temp_fd); } else { g_warning ("Couldn't create temp file in: %s", g_get_tmp_dir ()); } g_free (name_from_keytab); return join; } static void begin_net_process (JoinClosure *join, GBytes *input, GAsyncReadyCallback callback, gpointer user_data, ...) G_GNUC_NULL_TERMINATED; static void begin_net_process (JoinClosure *join, GBytes *input, GAsyncReadyCallback callback, gpointer user_data, ...) { char *env[8]; GPtrArray *args; gchar *logenv = NULL; gchar *arg; va_list va; int at = 0; env[at++] = "LANG=C"; /* * HACK: Samba's 'net ads -k join' requires that LOGNAME is set or * otherwise it fails to authenticate. */ if (!g_getenv ("LOGNAME")) env[at++] = logenv = g_strdup_printf ("LOGNAME=%s", g_get_user_name ()); if (join->envvar) env[at++] = join->envvar; env[at++] = NULL; g_assert (at < G_N_ELEMENTS (env)); args = g_ptr_array_new (); /* Use our custom smb.conf */ g_ptr_array_add (args, (gpointer)realm_settings_path ("net")); if (join->custom_smb_conf) { g_ptr_array_add (args, SMBCLI_CONF); g_ptr_array_add (args, join->custom_smb_conf); } if (join->disco->explicit_server) { g_ptr_array_add (args, "-S"); g_ptr_array_add (args, join->disco->explicit_server); } va_start (va, user_data); do { arg = va_arg (va, gchar *); g_ptr_array_add (args, arg); } while (arg != NULL); va_end (va); realm_command_runv_async ((gchar **)args->pdata, env, input, join->invocation, callback, user_data); g_free (logenv); g_ptr_array_free (args, TRUE); } static void on_keytab_do_finish (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; gint status; status = realm_command_run_finish (result, NULL, &error); if (error == NULL && status != 0) g_set_error (&error, REALM_ERROR, REALM_ERROR_INTERNAL, "Extracting host keytab failed"); if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void on_join_do_keytab (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); JoinClosure *join = g_task_get_task_data (task); GError *error = NULL; GString *output = NULL; gint status; status = realm_command_run_finish (result, &output, &error); if (error == NULL && status != 0) { /* * This is bad and ugly. We run the process with LC_ALL=C so * at least we know these messages will be in english. * * At first I thought this was a deficiency in samba's 'net' * command. It's true that 'net' could be better at returning * different error codes for different types of failures. * * But in the end this is a deficiency in Windows. When you use * LDAP to do enrollment, and the permissions aren't correct * it often returns stupid errors such as 'Constraint violation' * or 'Object class invalid' instead of 'Insufficient access'. */ if (g_pattern_match_simple ("*NT_STATUS_ACCESS_DENIED*", output->str) || g_pattern_match_simple ("*failed*: Constraint violation*", output->str) || g_pattern_match_simple ("*failed*: Object class violation*", output->str) || g_pattern_match_simple ("*failed*: Insufficient access*", output->str) || g_pattern_match_simple ("*: Access denied*", output->str) || g_pattern_match_simple ("*not have administrator privileges*", output->str) || g_pattern_match_simple ("*failure*: *not been granted the requested logon type*", output->str) || g_pattern_match_simple ("*failure*: User not allowed to log on to this computer*", output->str) || g_pattern_match_simple ("*failure*: *specified account is not allowed to authenticate to the machine*", output->str)) { g_set_error (&error, REALM_ERROR, REALM_ERROR_AUTH_FAILED, "Insufficient permissions to join the domain %s", join->disco->domain_name); } else if (g_pattern_match_simple ("*: Logon failure*", output->str) || g_pattern_match_simple ("*: Password expired*", output->str)) { g_set_error (&error, REALM_ERROR, REALM_ERROR_AUTH_FAILED, "The %s account, password, or credentials are invalid", join->user_name); } else { g_set_error (&error, REALM_ERROR, REALM_ERROR_INTERNAL, "Joining the domain %s failed", join->disco->domain_name); } } if (output) g_string_free (output, TRUE); if (error != NULL) { g_task_return_error (task, error); /* Do keytab with a user name */ } else if (join->user_name != NULL) { begin_net_process (join, join->password_input, on_keytab_do_finish, g_object_ref (task), "-U", join->user_name, "ads", "keytab", "create", NULL); /* Do keytab with a ccache file */ } else { begin_net_process (join, NULL, on_keytab_do_finish, g_object_ref (task), SMBCLI_KERBEROS, "ads", "keytab", "create", NULL); } g_object_unref (task); } static void begin_join (GTask *task, JoinClosure *join, GVariant *options) { const gchar *computer_ou; gchar *strange_ou; GError *error = NULL; const gchar *upn; const gchar *os; int at = 0; computer_ou = realm_options_computer_ou (options, join->disco->domain_name); if (computer_ou != NULL) { strange_ou = realm_dn_util_build_samba_ou (computer_ou, join->disco->domain_name); if (strange_ou) { if (!g_str_equal (strange_ou, "")) join->join_args[at++] = g_strdup_printf ("createcomputer=%s", strange_ou); g_free (strange_ou); } else { g_set_error (&error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "The computer-ou argument must be a valid LDAP DN and contain only OU=xxx RDN values."); } } os = realm_options_ad_specific(options, "os-name"); if (os != NULL && !g_str_equal (os, "")) join->join_args[at++] = g_strdup_printf ("osName=%s", os); os = realm_options_ad_specific(options, "os-version"); if (os != NULL && !g_str_equal (os, "")) join->join_args[at++] = g_strdup_printf ("osVer=%s", os); upn = realm_options_user_principal (options, join->disco->domain_name); if (upn) { if (g_str_equal (upn, "")) upn = NULL; join->join_args[at++] = g_strdup_printf ("createupn%s%s", upn ? "=" : "", upn ? upn : ""); } g_assert (at < G_N_ELEMENTS (join->join_args)); if (error != NULL) { g_task_return_error (task, error); /* Do join with a user name */ } else if (join->user_name) { begin_net_process (join, join->password_input, on_join_do_keytab, g_object_ref (task), "-U", join->user_name, SMBCLI_KERBEROS, "ads", "join", join->disco->domain_name, join->join_args[0], join->join_args[1], join->join_args[2], join->join_args[3], join->join_args[4], NULL); /* Do join with a ccache */ } else { begin_net_process (join, NULL, on_join_do_keytab, g_object_ref (task), SMBCLI_KERBEROS, "ads", "join", join->disco->domain_name, join->join_args[0], join->join_args[1], join->join_args[2], join->join_args[3], join->join_args[4], NULL); } } void realm_samba_enroll_join_async (RealmDisco *disco, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; JoinClosure *join; const gchar *explicit_computer_name; g_return_if_fail (disco != NULL); g_return_if_fail (cred != NULL); task = g_task_new (NULL, NULL, callback, user_data); join = join_closure_init (task, disco, options, invocation, TRUE); explicit_computer_name = realm_options_computer_name (options, disco->domain_name); if (explicit_computer_name != NULL) { realm_diagnostics_info (invocation, "Joining using a manual netbios name: %s", explicit_computer_name); } else if (disco->explicit_netbios) { realm_diagnostics_info (invocation, "Joining using a truncated netbios name: %s", disco->explicit_netbios); } switch (cred->type) { case REALM_CREDENTIAL_PASSWORD: join->password_input = realm_command_build_password_line (cred->x.password.value); join->user_name = g_strdup (cred->x.password.name); break; case REALM_CREDENTIAL_CCACHE: join->envvar = g_strdup_printf ("KRB5CCNAME=%s", cred->x.ccache.file); break; default: g_return_if_reached (); } begin_join (task, join, options); g_object_unref (task); } gboolean realm_samba_enroll_join_finish (GAsyncResult *result, GError **error) { g_return_val_if_fail (g_task_is_valid (result, NULL), FALSE); return g_task_propagate_boolean (G_TASK (result), error); } static void on_leave_complete (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); JoinClosure *join = g_task_get_task_data (task); GError *error = NULL; gint status; status = realm_command_run_finish (result, NULL, &error); if (error == NULL && status != 0) g_set_error (&error, REALM_ERROR, REALM_ERROR_INTERNAL, "Leaving the domain %s failed", join->disco->domain_name); if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } void realm_samba_enroll_leave_async (RealmDisco *disco, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; JoinClosure *join; task = g_task_new (NULL, NULL, callback, user_data); join = join_closure_init (task, disco, options, invocation, FALSE); switch (cred->type) { case REALM_CREDENTIAL_PASSWORD: join->password_input = realm_command_build_password_line (cred->x.password.value); join->user_name = g_strdup (cred->x.password.name); begin_net_process (join, join->password_input, on_leave_complete, g_object_ref (task), "-U", join->user_name, "ads", "leave", NULL); break; case REALM_CREDENTIAL_CCACHE: join->envvar = g_strdup_printf ("KRB5CCNAME=%s", cred->x.ccache.file); begin_net_process (join, NULL, on_leave_complete, g_object_ref (task), SMBCLI_KERBEROS, "ads", "leave", NULL); break; default: g_return_if_reached (); } g_object_unref (task); } gboolean realm_samba_enroll_leave_finish (GAsyncResult *result, GError **error) { g_return_val_if_fail (g_task_is_valid (result, NULL), FALSE); return g_task_propagate_boolean (G_TASK (result), error); } realmd-0.17.1/service/realmd-suse.conf0000644003225100322510000000370614046520517020116 0ustar00sbosesbose00000000000000# Distro specific overrides for SuSE [paths] smb.conf = /etc/samba/smb.conf krb5.conf = /etc/krb5.conf [samba-packages] samba-client = /usr/bin/net [winbind-packages] samba-winbind = /usr/sbin/winbindd [sssd-packages] sssd = /usr/sbin/sssd sssd-tools = /usr/sbin/sss_cache [adcli-packages] adcli = /usr/sbin/adcli [ipa-packages] freeipa-client = /usr/sbin/ipa-client-install [commands] # TODO: How do we enable winbind in /etc/nsswitch.conf? winbind-enable-logins = /usr/sbin/pam-config --add --winbind --mkhomedir winbind-disable-logins = /usr/sbin/pam-config --delete --winbind winbind-enable-service = /usr/bin/systemctl enable winbind.service winbind-disable-service = /usr/bin/systemctl disable winbind.service winbind-restart-service = /usr/bin/systemctl restart winbind.service winbind-stop-service = /usr/bin/systemctl stop winbind.service # add pam via pam-config and nssswitch.conf via sed, since there is no cli handling nsswitch (sed add idempotently word sss to nsswitch.conf) sssd-enable-logins = /bin/sh -c "/usr/sbin/pam-config --add --sss --mkhomedir && sed -E 's/(passwd:.*) sss/\1/; s/(passwd:.*)/\1 sss/; s/(group:.*) sss/\1/; s/(group:.*)/\1 sss/; s/(shadow:.*) sss/\1/; s/(shadow:.*)/\1 sss/;' -i /etc/nsswitch.conf" # remove pam via pam-config and nssswitch.conf via sed, since there is no cli handling nsswitch (sed remove sss word from passwd/group/shadow lines) sssd-disable-logins = /usr/bin/sh -c "/usr/sbin/pam-config --delete --sss && sed -E 's/(passwd:.*) sss/\1/; s/(group:.*) sss/\1/; s/(shadow:.*) sss/\1/;' -i /etc/nsswitch.conf" sssd-enable-service = /usr/bin/systemctl enable sssd.service sssd-disable-service = /usr/bin/systemctl disable sssd.service sssd-restart-service = /usr/bin/systemctl restart sssd.service sssd-stop-service = /usr/bin/systemctl stop sssd.service sssd-caches-flush = /usr/sbin/sss_cache --users --groups --netgroups --services --autofs-maps # TODO: Is flushing a nsswitch.conf name cache necessary? name-caches-flush = realmd-0.17.1/service/realm-disco-rootdse.h0000644003225100322510000000232114046520517021043 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #ifndef __REALM_DISCO_ROOTDSE_H__ #define __REALM_DISCO_ROOTDSE_H__ #include #include "realm-disco.h" void realm_disco_rootdse_async (GSocketAddress *address, const gchar *explicit_server, gboolean use_ldaps, GDBusMethodInvocation *invocation, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); RealmDisco * realm_disco_rootdse_finish (GAsyncResult *result, GError **error); #endif /* __REALM_DISCO_ROOTDSE_H__ */ realmd-0.17.1/service/realm-kerberos.c0000644003225100322510000011057014311053251020071 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-command.h" #include "realm-credential.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-dbus-generated.h" #include "realm-diagnostics.h" #include "realm-disco.h" #include "realm-errors.h" #include "realm-invocation.h" #include "realm-kerberos.h" #include "realm-kerberos-membership.h" #include "realm-login-name.h" #include "realm-options.h" #include "realm-packages.h" #include "realm-provider.h" #include "realm-settings.h" #include #include #include #include #include #include #include #include struct _RealmKerberosPrivate { RealmDisco *disco; RealmDbusRealm *realm_iface; RealmDbusKerberos *kerberos_iface; RealmDbusKerberosMembership *membership_iface; }; enum { PROP_0, PROP_NAME, PROP_DISCO, PROP_PROVIDER, PROP_MANAGES_SYSTEM, }; /* A global weak pointer which tracks the manage-system domain */ static RealmKerberos *realm_which_manages_system = NULL; G_DEFINE_TYPE (RealmKerberos, realm_kerberos, G_TYPE_DBUS_OBJECT_SKELETON); #define return_if_krb5_failed(ctx, code) G_STMT_START \ if G_LIKELY ((code) == 0) { } else { \ g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ krb5_get_error_message ((ctx), (code))); \ return; \ } G_STMT_END #define return_val_if_krb5_failed(ctx, code, val) G_STMT_START \ if G_LIKELY ((code) == 0) { } else { \ g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ krb5_get_error_message ((ctx), (code))); \ return (val); \ } G_STMT_END #define warn_if_krb5_failed(ctx, code) G_STMT_START \ if G_LIKELY ((code) == 0) { } else { \ g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ krb5_get_error_message ((ctx), (code))); \ } G_STMT_END typedef struct { RealmKerberos *self; GDBusMethodInvocation *invocation; RealmCredential *cred; } MethodClosure; #ifndef HOST_NAME_MAX #define HOST_NAME_MAX 255 #endif static MethodClosure * method_closure_new (RealmKerberos *self, GDBusMethodInvocation *invocation) { MethodClosure *method = g_new0 (MethodClosure, 1); method->self = g_object_ref (self); method->invocation = g_object_ref (invocation); return method; } static void method_closure_free (MethodClosure *closure) { g_object_unref (closure->self); g_object_unref (closure->invocation); if (closure->cred) realm_credential_unref (closure->cred); g_free (closure); } static void enroll_method_reply (GDBusMethodInvocation *invocation, GError *error) { if (error == NULL) { realm_diagnostics_info (invocation, "Successfully enrolled machine in realm"); g_dbus_method_invocation_return_value (invocation, g_variant_new ("()")); } else if (error->domain == REALM_ERROR || error->domain == G_DBUS_ERROR) { realm_diagnostics_error (invocation, error, NULL); g_dbus_method_invocation_return_gerror (invocation, error); } else if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) { realm_diagnostics_error (invocation, error, "Cancelled"); g_dbus_method_invocation_return_error (invocation, REALM_ERROR, REALM_ERROR_CANCELLED, _("Operation was cancelled.")); } else { realm_diagnostics_error (invocation, error, "Failed to enroll machine in realm"); g_dbus_method_invocation_return_error (invocation, REALM_ERROR, REALM_ERROR_FAILED, _("Failed to enroll machine in realm. See diagnostics.")); } realm_invocation_unlock_daemon (invocation); } static void on_name_caches_flush (GObject *source, GAsyncResult *result, gpointer user_data) { MethodClosure *closure = user_data; GError *error = NULL; gint status; status = realm_command_run_finish (result, NULL, &error); if (status != 0) { realm_diagnostics_error (closure->invocation, error, "Flushing name caches failed"); } g_clear_error (&error); enroll_method_reply (closure->invocation, NULL); method_closure_free (closure); } static void on_enroll_complete (GObject *source, GAsyncResult *result, gpointer user_data) { MethodClosure *closure = user_data; RealmKerberosMembershipIface *iface; GCancellable *cancellable; GError *error = NULL; iface = REALM_KERBEROS_MEMBERSHIP_GET_IFACE (closure->self); g_return_if_fail (iface->join_finish != NULL); cancellable = realm_invocation_get_cancellable (closure->invocation); if (!g_cancellable_set_error_if_cancelled (cancellable, &error)) (iface->join_finish) (REALM_KERBEROS_MEMBERSHIP (closure->self), result, &error); if (error != NULL) { enroll_method_reply (closure->invocation, error); method_closure_free (closure); g_clear_error (&error); /* Only flush the name caches if not in install mode */ } else if (!realm_daemon_is_install_mode ()) { realm_command_run_known_async ("name-caches-flush", NULL, closure->invocation, on_name_caches_flush, closure); } else { enroll_method_reply (closure->invocation, NULL); } } static void unenroll_method_reply (GDBusMethodInvocation *invocation, GError *error) { if (error == NULL) { realm_diagnostics_info (invocation, "Successfully unenrolled machine from realm"); g_dbus_method_invocation_return_value (invocation, g_variant_new ("()")); } else if (error->domain == REALM_ERROR || error->domain == G_DBUS_ERROR) { realm_diagnostics_error (invocation, error, NULL); g_dbus_method_invocation_return_gerror (invocation, error); } else if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) { realm_diagnostics_error (invocation, error, "Cancelled"); g_dbus_method_invocation_return_error (invocation, REALM_ERROR, REALM_ERROR_CANCELLED, _("Operation was cancelled.")); } else { realm_diagnostics_error (invocation, error, "Failed to unenroll machine from realm"); g_dbus_method_invocation_return_error (invocation, REALM_ERROR, REALM_ERROR_FAILED, _("Failed to unenroll machine from domain. See diagnostics.")); } realm_invocation_unlock_daemon (invocation); } static void on_unenroll_complete (GObject *source, GAsyncResult *result, gpointer user_data) { MethodClosure *closure = user_data; RealmKerberosMembershipIface *iface; GCancellable *cancellable; GError *error = NULL; iface = REALM_KERBEROS_MEMBERSHIP_GET_IFACE (closure->self); g_return_if_fail (iface->leave_finish != NULL); cancellable = realm_invocation_get_cancellable (closure->invocation); if (!g_cancellable_set_error_if_cancelled (cancellable, &error)) (iface->leave_finish) (REALM_KERBEROS_MEMBERSHIP (closure->self), result, &error); unenroll_method_reply (closure->invocation, error); g_clear_error (&error); method_closure_free (closure); } static gboolean is_credential_supported (RealmKerberosMembershipIface *iface, RealmKerberosMembership *membership, RealmCredential *cred, gboolean join, GError **error) { const RealmCredential *supported; const char *message = NULL; gboolean found = FALSE; gint i; g_assert (iface != NULL); g_assert (iface->join_creds != NULL); g_assert (iface->leave_creds != NULL); supported = (join ? iface->join_creds (membership) : iface->leave_creds (membership)); if (supported) { for (i = 0; supported[i].type != 0; i++) { if (cred->type == supported[i].type) { found = TRUE; break; } } } if (found) return TRUE; switch (cred->type) { case REALM_CREDENTIAL_AUTOMATIC: message = join ? _("Joining this realm without credentials is not supported") : _("Leaving this realm without credentials is not supported"); break; case REALM_CREDENTIAL_CCACHE: message = join ? _("Joining this realm using a credential cache is not supported") : _("Leaving this realm using a credential cache is not supported"); break; case REALM_CREDENTIAL_SECRET: message = join ? _("Joining this realm using a secret is not supported") : _("Unenrolling this realm using a secret is not supported"); break; case REALM_CREDENTIAL_PASSWORD: message = join ? _("Enrolling this realm using a password is not supported") : _("Unenrolling this realm using a password is not supported"); break; } g_set_error_literal (error, G_DBUS_ERROR, G_DBUS_ERROR_NOT_SUPPORTED, message); return FALSE; } static void join_or_leave (RealmKerberos *self, GVariant *credential, GVariant *options, GDBusMethodInvocation *invocation, gboolean join) { RealmKerberosMembershipIface *iface = REALM_KERBEROS_MEMBERSHIP_GET_IFACE (self); RealmKerberosMembership *membership = REALM_KERBEROS_MEMBERSHIP (self); RealmCredential *cred; MethodClosure *method; GError *error = NULL; g_return_if_fail (iface != NULL); if ((join && iface && iface->join_async == NULL) || (!join && iface && iface->leave_async == NULL)) { g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_NOT_SUPPORTED, join ? _("Joining this realm is not supported") : _("Leaving this realm is not supported")); return; } cred = realm_credential_parse (credential, &error); if (error != NULL) { g_dbus_method_invocation_return_gerror (invocation, error); g_error_free (error); return; } if (!is_credential_supported (iface, membership, cred, join, &error)) { g_dbus_method_invocation_return_gerror (invocation, error); realm_credential_unref (cred); g_error_free (error); return; } if (!realm_invocation_lock_daemon (invocation)) { g_dbus_method_invocation_return_error (invocation, REALM_ERROR, REALM_ERROR_BUSY, _("Already running another action")); return; } method = method_closure_new (self, invocation); method->cred = cred; if (join) { g_return_if_fail (iface->join_finish != NULL); (iface->join_async) (membership, cred, options, invocation, on_enroll_complete, method); } else { g_return_if_fail (iface->leave_finish != NULL); (iface->leave_async) (membership, cred, options, invocation, on_unenroll_complete, method); } } static gboolean handle_join (RealmDbusKerberosMembership *membership, GDBusMethodInvocation *invocation, GVariant *credentials, GVariant *options, gpointer user_data) { RealmKerberos *self = REALM_KERBEROS (user_data); gchar hostname[HOST_NAME_MAX + 1]; RealmKerberos *manages; gint ret; /* Check the host name */ ret = gethostname (hostname, sizeof (hostname)); if (ret < 0 || g_ascii_strcasecmp (hostname, "localhost") == 0 || g_ascii_strncasecmp (hostname, "localhost.", 10) == 0 || hostname[0] == '.') { g_dbus_method_invocation_return_error (invocation, REALM_ERROR, REALM_ERROR_BAD_HOSTNAME, "This computer's host name is not set correctly."); return TRUE; } if (!realm_option_do_not_touch_config (options) && realm_options_manage_system (options, realm_kerberos_get_name (self))) { manages = realm_kerberos_which_manages_system (); if (manages != NULL && manages != self) { g_dbus_method_invocation_return_error (invocation, REALM_ERROR, REALM_ERROR_ALREADY_CONFIGURED, _("Already joined to another domain: %s"), realm_kerberos_get_name (manages)); return TRUE; } } join_or_leave (self, credentials, options, invocation, TRUE); return TRUE; } static gboolean handle_leave (RealmDbusKerberosMembership *membership, GDBusMethodInvocation *invocation, GVariant *credentials, GVariant *options, gpointer user_data) { RealmKerberos *self = REALM_KERBEROS (user_data); if (realm_options_computer_ou (options, NULL)) { g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "The computer-ou argument is not supported when leaving a domain."); return TRUE; } join_or_leave (self, credentials, options, invocation, FALSE); return TRUE; } static gboolean handle_deconfigure (RealmDbusRealm *realm, GDBusMethodInvocation *invocation, GVariant *options, gpointer user_data) { GVariant *credential; credential = g_variant_new ("(ss@v)", "automatic", "none", g_variant_new_variant (g_variant_new_string (""))); join_or_leave (REALM_KERBEROS (user_data), credential, options, invocation, FALSE); g_variant_unref (credential); return TRUE; } static void on_logins_complete (GObject *source, GAsyncResult *result, gpointer user_data) { MethodClosure *closure = user_data; RealmKerberosClass *klass; GError *error = NULL; klass = REALM_KERBEROS_GET_CLASS (closure->self); g_return_if_fail (klass->logins_finish != NULL); if ((klass->logins_finish) (closure->self, result, &error)) { realm_diagnostics_info (closure->invocation, "Successfully changed permitted logins for realm"); g_dbus_method_invocation_return_value (closure->invocation, g_variant_new ("()")); } else if (error != NULL && (error->domain == REALM_ERROR || error->domain == G_DBUS_ERROR)) { realm_diagnostics_error (closure->invocation, error, NULL); g_dbus_method_invocation_return_gerror (closure->invocation, error); g_error_free (error); } else { realm_diagnostics_error (closure->invocation, error, "Failed to change permitted logins"); g_dbus_method_invocation_return_error (closure->invocation, REALM_ERROR, REALM_ERROR_INTERNAL, _("Failed to change permitted logins. See diagnostics.")); g_error_free (error); } realm_invocation_unlock_daemon (closure->invocation); method_closure_free (closure); } static gboolean handle_change_login_policy (RealmDbusRealm *realm, GDBusMethodInvocation *invocation, const gchar *login_policy, const gchar *const *add, const gchar *const *remove, GVariant *options, gpointer user_data) { RealmKerberosLoginPolicy policy = REALM_KERBEROS_POLICY_NOT_SET; RealmKerberos *self = REALM_KERBEROS (user_data); RealmKerberosClass *klass; gchar **policies; gint policies_set = 0; gint i; policies = g_strsplit_set (login_policy, ", \t", -1); for (i = 0; policies[i] != NULL; i++) { if (g_str_equal (policies[i], REALM_DBUS_LOGIN_POLICY_ANY)) { policy = REALM_KERBEROS_ALLOW_ANY_LOGIN; policies_set++; } else if (g_str_equal (policies[i], REALM_DBUS_LOGIN_POLICY_REALM)) { policy = REALM_KERBEROS_ALLOW_REALM_LOGINS; policies_set++; } else if (g_str_equal (policies[i], REALM_DBUS_LOGIN_POLICY_PERMITTED)) { policy = REALM_KERBEROS_ALLOW_PERMITTED_LOGINS; policies_set++; } else if (g_str_equal (policies[i], REALM_DBUS_LOGIN_POLICY_DENY)) { policy = REALM_KERBEROS_DENY_ANY_LOGIN; policies_set++; } else { g_strfreev (policies); g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Invalid or unknown login_policy argument"); return TRUE; } } g_strfreev (policies); if (policies_set > 1) { g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Conflicting flags in login_policy argument"); return TRUE; } if (!realm_invocation_lock_daemon (invocation)) { g_dbus_method_invocation_return_error (invocation, REALM_ERROR, REALM_ERROR_BUSY, _("Already running another action")); return TRUE; } klass = REALM_KERBEROS_GET_CLASS (self); g_return_val_if_fail (klass->logins_async != NULL, FALSE); (klass->logins_async) (self, invocation, policy, (const gchar **)add, (const gchar **)remove, options, on_logins_complete, method_closure_new (self, invocation)); return TRUE; } static gboolean realm_kerberos_authorize_method (GDBusObjectSkeleton *object, GDBusInterfaceSkeleton *iface, GDBusMethodInvocation *invocation) { return realm_invocation_authorize (invocation); } static void realm_kerberos_init (RealmKerberos *self) { GDBusObjectSkeleton *skeleton = G_DBUS_OBJECT_SKELETON (self); self->pv = G_TYPE_INSTANCE_GET_PRIVATE (self, REALM_TYPE_KERBEROS, RealmKerberosPrivate); self->pv->realm_iface = realm_dbus_realm_skeleton_new (); g_signal_connect (self->pv->realm_iface, "handle-deconfigure", G_CALLBACK (handle_deconfigure), self); g_signal_connect (self->pv->realm_iface, "handle-change-login-policy", G_CALLBACK (handle_change_login_policy), self); g_dbus_object_skeleton_add_interface (skeleton, G_DBUS_INTERFACE_SKELETON (self->pv->realm_iface)); self->pv->kerberos_iface = realm_dbus_kerberos_skeleton_new (); g_dbus_object_skeleton_add_interface (skeleton, G_DBUS_INTERFACE_SKELETON (self->pv->kerberos_iface)); } static void realm_kerberos_constructed (GObject *obj) { RealmKerberosMembershipIface *iface; RealmKerberosMembership *membership; RealmKerberos *self = REALM_KERBEROS (obj); const gchar *supported_interfaces[3]; GVariant *supported; g_return_if_fail (self != NULL); G_OBJECT_CLASS (realm_kerberos_parent_class)->constructed (obj); if (REALM_IS_KERBEROS_MEMBERSHIP (self)) { self->pv->membership_iface = realm_dbus_kerberos_membership_skeleton_new (); g_signal_connect (self->pv->membership_iface, "handle-join", G_CALLBACK (handle_join), self); g_signal_connect (self->pv->membership_iface, "handle-leave", G_CALLBACK (handle_leave), self); g_dbus_object_skeleton_add_interface (G_DBUS_OBJECT_SKELETON (self), G_DBUS_INTERFACE_SKELETON (self->pv->membership_iface)); iface = REALM_KERBEROS_MEMBERSHIP_GET_IFACE (self); membership = REALM_KERBEROS_MEMBERSHIP (self); supported = realm_credential_build_supported (iface->join_creds (membership)); realm_dbus_kerberos_membership_set_supported_join_credentials (self->pv->membership_iface, supported); supported = realm_credential_build_supported (iface->leave_creds (membership)); realm_dbus_kerberos_membership_set_supported_leave_credentials (self->pv->membership_iface, supported); } supported_interfaces[0] = REALM_DBUS_KERBEROS_INTERFACE; if (self->pv->membership_iface) supported_interfaces[1] = REALM_DBUS_KERBEROS_MEMBERSHIP_INTERFACE; else supported_interfaces[1] = NULL; supported_interfaces[2] = NULL; realm_dbus_realm_set_supported_interfaces (self->pv->realm_iface, supported_interfaces); if (self->pv->disco) { if (self->pv->disco->domain_name) realm_kerberos_set_domain_name (self, self->pv->disco->domain_name); if (self->pv->disco->kerberos_realm) realm_kerberos_set_realm_name (self, self->pv->disco->kerberos_realm); } } static void realm_kerberos_get_property (GObject *obj, guint prop_id, GValue *value, GParamSpec *pspec) { RealmKerberos *self = REALM_KERBEROS (obj); switch (prop_id) { case PROP_NAME: g_value_set_string (value, realm_kerberos_get_name (self)); break; case PROP_DISCO: g_value_set_boxed (value, realm_kerberos_get_disco (self)); break; case PROP_MANAGES_SYSTEM: g_value_set_boolean (value, realm_kerberos_get_manages_system (self)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec); break; } } static void realm_kerberos_set_property (GObject *obj, guint prop_id, const GValue *value, GParamSpec *pspec) { RealmKerberos *self = REALM_KERBEROS (obj); switch (prop_id) { case PROP_NAME: realm_dbus_realm_set_name (self->pv->realm_iface, g_value_get_string (value)); break; case PROP_DISCO: realm_kerberos_set_disco (self, g_value_get_boxed (value)); break; case PROP_PROVIDER: /* ignore */ break; case PROP_MANAGES_SYSTEM: realm_kerberos_set_manages_system (self, g_value_get_boolean (value)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec); break; } } static void realm_kerberos_finalize (GObject *obj) { RealmKerberos *self = REALM_KERBEROS (obj); g_object_unref (self->pv->realm_iface); g_object_unref (self->pv->kerberos_iface); if (self->pv->membership_iface) g_object_unref (self->pv->membership_iface); if (self->pv->disco) realm_disco_unref (self->pv->disco); G_OBJECT_CLASS (realm_kerberos_parent_class)->finalize (obj); } static void realm_kerberos_class_init (RealmKerberosClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); GDBusObjectSkeletonClass *skeleton_class = G_DBUS_OBJECT_SKELETON_CLASS (klass); object_class->constructed = realm_kerberos_constructed; object_class->get_property = realm_kerberos_get_property; object_class->set_property = realm_kerberos_set_property; object_class->finalize = realm_kerberos_finalize; skeleton_class->authorize_method = realm_kerberos_authorize_method; g_type_class_add_private (klass, sizeof (RealmKerberosPrivate)); g_object_class_install_property (object_class, PROP_NAME, g_param_spec_string ("name", "Name", "Name", NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (object_class, PROP_DISCO, g_param_spec_boxed ("disco", "Discovery", "Discovery Data", REALM_TYPE_DISCO, G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (object_class, PROP_PROVIDER, g_param_spec_object ("provider", "Provider", "Realm Provider", REALM_TYPE_PROVIDER, G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (object_class, PROP_MANAGES_SYSTEM, g_param_spec_boolean ("manages-system", "Manages System", "Whether domain configured to manage system", FALSE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); } void realm_kerberos_set_disco (RealmKerberos *self, RealmDisco *disco) { g_return_if_fail (REALM_IS_KERBEROS (self)); if (disco) realm_disco_ref (disco); realm_disco_unref (self->pv->disco); self->pv->disco = disco; g_object_notify (G_OBJECT (self), "disco"); } RealmDisco * realm_kerberos_get_disco (RealmKerberos *self) { RealmKerberosClass *klass; RealmDisco *disco; g_return_val_if_fail (REALM_IS_KERBEROS (self), NULL); if (!self->pv->disco) { disco = realm_disco_new (NULL); if (!disco->domain_name) disco->domain_name = g_strdup (realm_kerberos_get_domain_name (self)); if (!disco->kerberos_realm) disco->kerberos_realm = g_strdup (realm_kerberos_get_realm_name (self)); klass = REALM_KERBEROS_GET_CLASS (self); if (klass && klass->discover_myself) (klass->discover_myself) (self, disco); self->pv->disco = disco; } return self->pv->disco; } gchar ** realm_kerberos_parse_logins (RealmKerberos *self, gboolean lower, const gchar **logins, GError **error) { const gchar *failed = NULL; const gchar *const *formats; gchar **result; g_return_val_if_fail (REALM_IS_KERBEROS (self), NULL); formats = realm_dbus_realm_get_login_formats (self->pv->realm_iface); if (formats == NULL) { g_set_error (error, REALM_ERROR, REALM_ERROR_NOT_CONFIGURED, _("The realm does not allow specifying logins")); return NULL; } result = realm_login_name_parse_all (formats, lower, logins, &failed); if (result == NULL) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, _("Invalid login argument%s%s%s does not match the login format."), failed ? " '" : "", failed, failed ? "'" : ""); } return result; } gchar * realm_kerberos_format_login (RealmKerberos *self, const gchar *user) { const gchar *const *formats; g_return_val_if_fail (REALM_IS_KERBEROS (self), NULL); g_return_val_if_fail (user != NULL, NULL); formats = realm_dbus_realm_get_login_formats (self->pv->realm_iface); if (formats == NULL || formats[0] == NULL) return NULL; return realm_login_name_format (formats[0], user); } static void set_krb5_error (GError **error, krb5_error_code code, krb5_context context, const gchar *message, ...) G_GNUC_PRINTF (4, 5); static void set_krb5_error (GError **error, krb5_error_code code, krb5_context context, const gchar *message, ...) { gchar *string; va_list va; va_start (va, message); string = g_strdup_vprintf (message, va); va_end (va); g_set_error (error, REALM_KRB5_ERROR, code, "%s: %s", string, krb5_get_error_message (context, code)); g_free (string); } const gchar * realm_kerberos_get_name (RealmKerberos *self) { g_return_val_if_fail (REALM_IS_KERBEROS (self), NULL); return realm_dbus_realm_get_name (self->pv->realm_iface); } const gchar * realm_kerberos_get_realm_name (RealmKerberos *self) { g_return_val_if_fail (REALM_IS_KERBEROS (self), NULL); return realm_dbus_kerberos_get_realm_name (self->pv->kerberos_iface); } void realm_kerberos_set_realm_name (RealmKerberos *self, const gchar *value) { g_return_if_fail (REALM_IS_KERBEROS (self)); realm_dbus_kerberos_set_realm_name (self->pv->kerberos_iface, value); } const gchar * realm_kerberos_get_domain_name (RealmKerberos *self) { g_return_val_if_fail (REALM_IS_KERBEROS (self), NULL); return realm_dbus_kerberos_get_domain_name (self->pv->kerberos_iface); } void realm_kerberos_set_domain_name (RealmKerberos *self, const gchar *value) { g_return_if_fail (REALM_IS_KERBEROS (self)); realm_dbus_kerberos_set_domain_name (self->pv->kerberos_iface, value); } gboolean realm_kerberos_get_manages_system (RealmKerberos *self) { g_return_val_if_fail (REALM_IS_KERBEROS (self), FALSE); return (self == realm_which_manages_system); } void realm_kerberos_set_manages_system (RealmKerberos *self, gboolean manages) { GObject *obj; g_return_if_fail (REALM_IS_KERBEROS (self)); if (manages == realm_kerberos_get_manages_system (self)) return; if (realm_which_manages_system) { obj = G_OBJECT (realm_which_manages_system); g_object_remove_weak_pointer (G_OBJECT (obj), (gpointer *)&realm_which_manages_system); realm_which_manages_system = NULL; g_object_notify (obj, "manages-system"); } if (manages) { obj = G_OBJECT (self); realm_which_manages_system = self; g_object_add_weak_pointer (G_OBJECT (obj), (gpointer *)&realm_which_manages_system); g_object_notify (obj, "manages-system"); } } RealmKerberos * realm_kerberos_which_manages_system (void) { return realm_which_manages_system; } gboolean realm_kerberos_matches (RealmKerberos *self, const gchar *string) { const gchar *value; g_return_val_if_fail (REALM_IS_KERBEROS (self), FALSE); value = realm_dbus_realm_get_name (self->pv->realm_iface); if (value != NULL && g_utf8_collate (value, string) == 0) return TRUE; value = realm_dbus_kerberos_get_domain_name (self->pv->kerberos_iface); if (value != NULL && g_utf8_collate (value, string) == 0) return TRUE; value = realm_dbus_kerberos_get_realm_name (self->pv->kerberos_iface); if (value != NULL && g_utf8_collate (value, string) == 0) return TRUE; return FALSE; } void realm_kerberos_set_suggested_admin (RealmKerberos *self, const gchar *value) { g_return_if_fail (REALM_IS_KERBEROS (self)); g_return_if_fail (self->pv->membership_iface != NULL); realm_dbus_kerberos_membership_set_suggested_administrator (self->pv->membership_iface, value); } void realm_kerberos_set_permitted_logins (RealmKerberos *self, const gchar **value) { g_return_if_fail (REALM_IS_KERBEROS (self)); realm_dbus_realm_set_permitted_logins (self->pv->realm_iface, (const gchar * const*)value); } void realm_kerberos_set_permitted_groups (RealmKerberos *self, const gchar **value) { g_return_if_fail (REALM_IS_KERBEROS (self)); realm_dbus_realm_set_permitted_groups (self->pv->realm_iface, (const gchar * const*)value); } const gchar * realm_kerberos_login_policy_to_string (RealmKerberosLoginPolicy value) { switch (value) { case REALM_KERBEROS_ALLOW_ANY_LOGIN: return REALM_DBUS_LOGIN_POLICY_ANY; case REALM_KERBEROS_ALLOW_REALM_LOGINS: return REALM_DBUS_LOGIN_POLICY_REALM; case REALM_KERBEROS_ALLOW_PERMITTED_LOGINS: return REALM_DBUS_LOGIN_POLICY_PERMITTED; case REALM_KERBEROS_DENY_ANY_LOGIN: return REALM_DBUS_LOGIN_POLICY_DENY; case REALM_KERBEROS_POLICY_NOT_SET: return ""; default: g_return_val_if_reached (""); } } void realm_kerberos_set_login_policy (RealmKerberos *self, RealmKerberosLoginPolicy value) { realm_dbus_realm_set_login_policy (self->pv->realm_iface, realm_kerberos_login_policy_to_string (value)); } void realm_kerberos_set_login_formats (RealmKerberos *self, const gchar **value) { g_return_if_fail (REALM_IS_KERBEROS (self)); realm_dbus_realm_set_login_formats (self->pv->realm_iface, (const gchar * const*)value); } void realm_kerberos_set_details (RealmKerberos *self, ...) { GPtrArray *tuples; GVariant *tuple; GVariant *details; const gchar *name; const gchar *value; GVariant *values[2]; va_list va; g_return_if_fail (REALM_IS_KERBEROS (self)); va_start (va, self); tuples = g_ptr_array_new (); for (;;) { name = va_arg (va, const gchar *); if (name == NULL) break; value = va_arg (va, const gchar *); if (value == NULL) { va_end (va); g_return_if_reached (); } values[0] = g_variant_new_string (name); values[1] = g_variant_new_string (value); tuple = g_variant_new_tuple (values, 2); g_ptr_array_add (tuples, tuple); } va_end (va); details = g_variant_new_array (G_VARIANT_TYPE ("(ss)"), (GVariant * const *)tuples->pdata, tuples->len); realm_dbus_realm_set_details (self->pv->realm_iface, details); g_ptr_array_free (tuples, TRUE); } gboolean realm_kerberos_is_configured (RealmKerberos *self) { const gchar *configured; g_return_val_if_fail (REALM_IS_KERBEROS (self), FALSE); configured = realm_dbus_realm_get_configured (self->pv->realm_iface); return configured && !g_str_equal (configured, ""); } void realm_kerberos_set_configured (RealmKerberos *self, gboolean configured) { g_return_if_fail (REALM_IS_KERBEROS (self)); realm_dbus_realm_set_configured (self->pv->realm_iface, configured ? REALM_DBUS_KERBEROS_MEMBERSHIP_INTERFACE : ""); } void realm_kerberos_set_required_package_sets (RealmKerberos *self, const gchar **package_sets) { gchar **packages; g_return_if_fail (REALM_IS_KERBEROS (self)); packages = realm_packages_expand_sets (package_sets); realm_dbus_realm_set_required_packages (self->pv->realm_iface, (const gchar **)packages); g_strfreev (packages); } static gboolean flush_keytab_entries (krb5_context ctx, krb5_keytab keytab, krb5_principal realm_princ, int *remaining, GError **error) { krb5_error_code code; krb5_kt_cursor cursor; krb5_keytab_entry entry; int count = 0; code = krb5_kt_start_seq_get (ctx, keytab, &cursor); if (code == KRB5_KT_END || code == ENOENT ) { *remaining = 0; return TRUE; } while (!krb5_kt_next_entry (ctx, keytab, &entry, &cursor)) { count++; if (krb5_realm_compare (ctx, realm_princ, entry.principal)) { code = krb5_kt_end_seq_get (ctx, keytab, &cursor); return_val_if_krb5_failed (ctx, code, FALSE); code = krb5_kt_remove_entry (ctx, keytab, &entry); return_val_if_krb5_failed (ctx, code, FALSE); code = krb5_kt_start_seq_get (ctx, keytab, &cursor); return_val_if_krb5_failed (ctx, code, FALSE); count = 0; } code = krb5_kt_free_entry (ctx, &entry); return_val_if_krb5_failed (ctx, code, FALSE); } code = krb5_kt_end_seq_get (ctx, keytab, &cursor); return_val_if_krb5_failed (ctx, code, FALSE); *remaining = count; return TRUE; } gboolean realm_kerberos_flush_keytab (const gchar *realm_name, GError **error) { char kt_name[MAX_KEYTAB_NAME_LEN]; krb5_error_code code; krb5_keytab keytab; krb5_context ctx; krb5_principal princ; int remaining; gchar *name; gboolean ret; code = krb5_init_context (&ctx); if (code != 0) { set_krb5_error (error, code, NULL, "Couldn't initialize kerberos"); return FALSE; } code = krb5_kt_default (ctx, &keytab); if (code != 0) { set_krb5_error (error, code, NULL, "Couldn't open default host keytab"); krb5_free_context (ctx); return FALSE; } name = g_strdup_printf ("user@%s", realm_name); code = krb5_parse_name (ctx, name, &princ); return_val_if_krb5_failed (ctx, code, FALSE); g_free (name); ret = flush_keytab_entries (ctx, keytab, princ, &remaining, error); krb5_free_principal (ctx, princ); if (ret && remaining == 0) { code = krb5_kt_get_name (ctx, keytab, kt_name, sizeof (kt_name)); return_val_if_krb5_failed (ctx, code, FALSE); } code = krb5_kt_close (ctx, keytab); warn_if_krb5_failed (ctx, code); krb5_free_context (ctx); if (ret && remaining == 0) { if (strncmp (kt_name, "FILE:", 5) == 0) { if (g_unlink (kt_name + 5) < 0 && errno != ENOENT) { g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno), "Couldn't remove empty host keytab"); ret = FALSE; } } } return ret; } gchar * realm_kerberos_get_netbios_name_from_keytab (const gchar *realm_name) { krb5_error_code code; krb5_keytab keytab = NULL; krb5_context ctx; krb5_kt_cursor cursor = NULL; krb5_keytab_entry entry; krb5_principal realm_princ = NULL; gchar *princ_name = NULL; gchar *netbios_name = NULL; krb5_data *name_data; code = krb5_init_context (&ctx); if (code != 0) { return NULL; } princ_name = g_strdup_printf ("user@%s", realm_name); code = krb5_parse_name (ctx, princ_name, &realm_princ); g_free (princ_name); if (code == 0) { code = krb5_kt_default (ctx, &keytab); } if (code == 0) { code = krb5_kt_start_seq_get (ctx, keytab, &cursor); } if (code == 0) { while (!krb5_kt_next_entry (ctx, keytab, &entry, &cursor) && netbios_name == NULL) { if (krb5_realm_compare (ctx, realm_princ, entry.principal)) { name_data = krb5_princ_component (ctx, entry.principal, 0); if (name_data != NULL && name_data->length > 0 && name_data->data[name_data->length - 1] == '$') { netbios_name = g_strndup (name_data->data, name_data->length - 1); if (netbios_name == NULL) { code = krb5_kt_free_entry (ctx, &entry); warn_if_krb5_failed (ctx, code); break; } } } code = krb5_kt_free_entry (ctx, &entry); warn_if_krb5_failed (ctx, code); } } code = krb5_kt_end_seq_get (ctx, keytab, &cursor); warn_if_krb5_failed (ctx, code); code = krb5_kt_close (ctx, keytab); warn_if_krb5_failed (ctx, code); krb5_free_principal (ctx, realm_princ); krb5_free_context (ctx); return netbios_name; } realmd-0.17.1/service/realm-diagnostics.h0000644003225100322510000000320714046520517020600 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_DIAGNOSTICS_H__ #define __REALM_DIAGNOSTICS_H__ #include G_BEGIN_DECLS void realm_diagnostics_initialize (GDBusConnection *connection); void realm_diagnostics_info (GDBusMethodInvocation *invocation, const gchar *format, ...) G_GNUC_PRINTF (2, 3); void realm_diagnostics_info_data (GDBusMethodInvocation *invocation, const gchar *data, gssize n_data); void realm_diagnostics_error (GDBusMethodInvocation *invocation, GError *error, const gchar *format, ...) G_GNUC_PRINTF (3, 4); void realm_diagnostics_signal (GDBusMethodInvocation *invocation, const gchar *data); G_END_DECLS #endif /* __REALM_DIAGNOSTICS_H__ */ realmd-0.17.1/service/realm-provider.c0000644003225100322510000003646414046520517020131 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-dbus-generated.h" #include "realm-diagnostics.h" #include "realm-errors.h" #include "realm-invocation.h" #include "realm-kerberos.h" #include "realm-network.h" #include "realm-provider.h" #include "realm-settings.h" #include #include #include #define TIMEOUT_SECONDS 15 G_DEFINE_TYPE (RealmProvider, realm_provider, G_TYPE_DBUS_OBJECT_SKELETON); struct _RealmProviderPrivate { GHashTable *realms; RealmDbusProvider *provider_iface; }; typedef struct { RealmProvider *self; GDBusMethodInvocation *invocation; GVariant *options; gchar *string; guint timeout_id; } MethodClosure; static MethodClosure * method_closure_new (RealmProvider *self, GDBusMethodInvocation *invocation, GVariant *options) { MethodClosure *closure = g_new0 (MethodClosure, 1); closure->self = g_object_ref (self); closure->invocation = g_object_ref (invocation); closure->options = g_variant_ref (options); return closure; } static void method_closure_free (MethodClosure *closure) { g_object_unref (closure->self); g_object_unref (closure->invocation); g_variant_unref (closure->options); g_free (closure->string); g_assert (closure->timeout_id == 0); g_free (closure); } static gint sort_configured_first (gconstpointer a, gconstpointer b) { gint a_val = realm_kerberos_is_configured (REALM_KERBEROS (a)) ? 0 : 1; gint b_val = realm_kerberos_is_configured (REALM_KERBEROS (b)) ? 0 : 1; return a_val - b_val; } static GList * discover_configured (RealmProvider *self, const gchar *string) { GList *matched = NULL; GList *realms; GList *l; realms = realm_provider_get_realms (self); for (l = realms; l != NULL; l = g_list_next (l)) { if (realm_kerberos_is_configured (l->data) && realm_kerberos_matches (l->data, string)) matched = g_list_prepend (matched, g_object_ref (l->data)); } g_list_free (realms); return matched; } static void return_discover_result (MethodClosure *closure, GList *realms, gint relevance, GError *error) { GCancellable *cancellable; GVariant *retval; GPtrArray *results; const gchar *path; GList *l; /* Timeout was fired, cancel means timed out */ if (closure->timeout_id == 0) { if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) g_clear_error (&error); } else { g_source_remove (closure->timeout_id); closure->timeout_id = 0; if (error == NULL) { cancellable = realm_invocation_get_cancellable (closure->invocation); g_cancellable_set_error_if_cancelled (cancellable, &error); } } /* If no realms were discovered, try matching configured realms */ if (error == NULL && realms == NULL && closure->string) { realms = discover_configured (closure->self, closure->string); relevance = 20; } if (error == NULL) { realms = g_list_sort (realms, sort_configured_first); results = g_ptr_array_new (); for (l = realms; l != NULL; l = g_list_next (l)) { path = g_dbus_object_get_object_path (l->data); g_ptr_array_add (results, g_variant_new_object_path (path)); } retval = g_variant_new ("(i@ao)", relevance, g_variant_new_array (G_VARIANT_TYPE ("o"), (GVariant *const *)results->pdata, results->len)); g_ptr_array_free (results, TRUE); g_dbus_method_invocation_return_value (closure->invocation, retval); } else { if (error->domain == REALM_ERROR || error->domain == G_DBUS_ERROR) { g_dbus_error_strip_remote_error (error); realm_diagnostics_error (closure->invocation, error, NULL); g_dbus_method_invocation_return_gerror (closure->invocation, error); } else if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) { realm_diagnostics_error (closure->invocation, error, "Cancelled"); g_dbus_method_invocation_return_error (closure->invocation, REALM_ERROR, REALM_ERROR_CANCELLED, _("Operation was cancelled.")); } else { realm_diagnostics_error (closure->invocation, error, "Failed to discover realm"); g_dbus_method_invocation_return_error (closure->invocation, REALM_ERROR, REALM_ERROR_FAILED, _("Failed to discover realm. See diagnostics.")); } g_error_free (error); } g_list_free_full (realms, g_object_unref); method_closure_free (closure); } static void on_discover_complete (GObject *source, GAsyncResult *result, gpointer user_data) { MethodClosure *method = user_data; GError *error = NULL; gint relevance; GList *realms; realms = realm_provider_discover_finish (method->self, result, &relevance, &error); return_discover_result (method, realms, relevance, error); } static gchar * get_domain_from_hostname (void) { gchar hostname[HOST_NAME_MAX + 1]; gchar *dot; if (gethostname (hostname, sizeof (hostname)) < 0) { g_warning ("Couldn't get the computer host name: %s", g_strerror (errno)); return NULL; } dot = strchr (hostname, '.'); if (dot != NULL) { return g_strdup (dot + 1); } return NULL; } static void on_discover_default (GObject *source, GAsyncResult *result, gpointer user_data) { MethodClosure *method = user_data; GError *error = NULL; method->string = realm_network_get_dhcp_domain_finish (result, &error); if (error != NULL) { realm_diagnostics_error (method->invocation, error, "Couldn't get default domain from DHCP"); g_clear_error (&error); } if (method->string == NULL) { method->string = get_domain_from_hostname (); } if (method->string) { g_strstrip (method->string); if (g_str_equal (method->string, "")) { g_free (method->string); method->string = NULL; } } /* Yay we have a default domain from DHCP, use it */ if (method->string) { realm_provider_discover (method->self, method->string, method->options, method->invocation, on_discover_complete, method); } else { realm_diagnostics_info (method->invocation, "No default domain received via DHCP or given by hostname"); return_discover_result (method, NULL, 0, NULL); } } static gboolean on_discover_timeout (gpointer user_data) { MethodClosure *method = user_data; method->timeout_id = 0; realm_diagnostics_error (method->invocation, NULL, "Discovery timed out after %d seconds", TIMEOUT_SECONDS); g_cancellable_cancel (realm_invocation_get_cancellable (method->invocation)); return FALSE; } static gboolean realm_provider_handle_discover (RealmDbusProvider *provider, GDBusMethodInvocation *invocation, const gchar *string, GVariant *options, gpointer user_data) { RealmProvider *self = REALM_PROVIDER (user_data); GDBusConnection *connection; MethodClosure *method; method = method_closure_new (self, invocation, options); method->timeout_id = g_timeout_add_seconds (TIMEOUT_SECONDS, on_discover_timeout, method); method->string = g_strdup (string); g_strstrip (method->string); if (g_str_equal (string, "")) { connection = g_dbus_method_invocation_get_connection (invocation); realm_network_get_dhcp_domain_async (connection, on_discover_default, method); } else { realm_provider_discover (self, method->string, options, invocation, on_discover_complete, method); } return TRUE; } static gboolean realm_provider_authorize_method (GDBusObjectSkeleton *skeleton, GDBusInterfaceSkeleton *iface, GDBusMethodInvocation *invocation) { return realm_invocation_authorize (invocation); } static GList * realm_provider_real_get_realms (RealmProvider *self) { GHashTableIter iter; GList *realms = NULL; RealmKerberos *realm; g_hash_table_iter_init (&iter, self->pv->realms); while (g_hash_table_iter_next (&iter, NULL, (gpointer *)&realm)) realms = g_list_prepend (realms, realm); return realms; } static void realm_provider_init (RealmProvider *self) { self->pv = G_TYPE_INSTANCE_GET_PRIVATE (self, REALM_TYPE_PROVIDER, RealmProviderPrivate); self->pv->realms = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref); self->pv->provider_iface = realm_dbus_provider_skeleton_new (); g_signal_connect (self->pv->provider_iface, "handle-discover", G_CALLBACK (realm_provider_handle_discover), self); g_dbus_object_skeleton_add_interface (G_DBUS_OBJECT_SKELETON (self), G_DBUS_INTERFACE_SKELETON (self->pv->provider_iface)); } static void realm_provider_constructed (GObject *obj) { RealmProvider *self = REALM_PROVIDER (obj); G_OBJECT_CLASS (realm_provider_parent_class)->constructed (obj); /* The dbus version property of the provider */ realm_dbus_provider_set_version (self->pv->provider_iface, VERSION); } static void update_realms_property (RealmProvider *self) { GHashTableIter iter; GDBusObject *realm; GVariantBuilder builder; GPtrArray *realms; g_variant_builder_init (&builder, G_VARIANT_TYPE ("ao")); realms = g_ptr_array_new (); g_hash_table_iter_init (&iter, self->pv->realms); while (g_hash_table_iter_next (&iter, NULL, (gpointer)&realm)) g_ptr_array_add (realms, (gpointer)g_dbus_object_get_object_path (realm)); g_ptr_array_add (realms, NULL); realm_provider_set_realm_paths (self, (const gchar **)realms->pdata); g_ptr_array_free (realms, TRUE); } static void realm_provider_finalize (GObject *obj) { RealmProvider *self = REALM_PROVIDER (obj); g_hash_table_unref (self->pv->realms); G_OBJECT_CLASS (realm_provider_parent_class)->finalize (obj); } static void realm_provider_class_init (RealmProviderClass *klass) { GDBusObjectSkeletonClass *skeleton_class = G_DBUS_OBJECT_SKELETON_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->constructed = realm_provider_constructed; object_class->finalize = realm_provider_finalize; skeleton_class->authorize_method = realm_provider_authorize_method; klass->get_realms = realm_provider_real_get_realms; g_type_class_add_private (klass, sizeof (RealmProviderPrivate)); } RealmKerberos * realm_provider_lookup_or_register_realm (RealmProvider *self, GType realm_type, const gchar *realm_name, RealmDisco *disco) { RealmKerberos *realm; static gint unique_number = 0; const gchar *provider_path; gchar *escaped; gchar *path; realm = g_hash_table_lookup (self->pv->realms, realm_name); if (realm != NULL) { if (disco != NULL) realm_kerberos_set_disco (realm, disco); return realm; } escaped = g_strdup (realm_name); g_strcanon (escaped, REALM_DBUS_NAME_CHARS, '_'); provider_path = g_dbus_object_get_object_path (G_DBUS_OBJECT (self)); path = g_strdup_printf ("%s/%s_%d", provider_path, escaped, ++unique_number); g_free (escaped); realm = g_object_new (realm_type, "name", realm_name, "disco", disco, "provider", self, "g-object-path", path, NULL); realm_daemon_export_object (G_DBUS_OBJECT_SKELETON (realm)); g_hash_table_insert (self->pv->realms, g_strdup (realm_name), realm); g_free (path); update_realms_property (self); g_signal_emit_by_name (self, "notify", NULL); return realm; } gboolean realm_provider_is_default (const gchar *type, const gchar *name) { gboolean result; gchar *client; client = g_ascii_strdown (realm_settings_string (type, "default-client"), -1); result = client != NULL && strstr (client, name); g_free (client); return result; } void realm_provider_set_name (RealmProvider *self, const gchar *value) { g_return_if_fail (REALM_IS_PROVIDER (self)); g_return_if_fail (value != NULL); realm_dbus_provider_set_name (self->pv->provider_iface, value); } GList * realm_provider_get_realms (RealmProvider *self) { RealmProviderClass *klass; g_return_val_if_fail (REALM_IS_PROVIDER (self), NULL); klass = REALM_PROVIDER_GET_CLASS (self); g_return_val_if_fail (klass != NULL && klass->get_realms != NULL, NULL); return (klass->get_realms) (self); } void realm_provider_set_realm_paths (RealmProvider *self, const gchar **value) { g_return_if_fail (REALM_IS_PROVIDER (self)); g_return_if_fail (value != NULL); realm_dbus_provider_set_realms (self->pv->provider_iface, value); } void realm_provider_discover (RealmProvider *self, const gchar *string, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmProviderClass *klass; klass = REALM_PROVIDER_GET_CLASS (self); g_return_if_fail (klass->discover_async != NULL); (klass->discover_async) (self, string, options, invocation, callback, user_data); } GList * realm_provider_discover_finish (RealmProvider *self, GAsyncResult *result, gint *relevance, GError **error) { RealmProviderClass *klass; GError *sub_error = NULL; GList *realms; klass = REALM_PROVIDER_GET_CLASS (self); g_return_val_if_fail (klass->discover_finish != NULL, NULL); realms = (klass->discover_finish) (self, result, relevance, &sub_error); if (sub_error == NULL) { if (realms == NULL) *relevance = 0; } else { g_propagate_error (error, sub_error); } return realms; } gboolean realm_provider_match_software (GVariant *options, const gchar *server_software, const gchar *client_software, const gchar *membership_software) { const gchar *string; g_return_val_if_fail (server_software != NULL, FALSE); g_return_val_if_fail (client_software != NULL, FALSE); if (g_variant_lookup (options, REALM_DBUS_OPTION_SERVER_SOFTWARE, "&s", &string)) { if (g_str_equal (string, REALM_DBUS_IDENTIFIER_FREEIPA)) string = REALM_DBUS_IDENTIFIER_IPA; if (!g_str_equal (server_software, string)) return FALSE; } if (g_variant_lookup (options, REALM_DBUS_OPTION_CLIENT_SOFTWARE, "&s", &string)) { if (!g_str_equal (client_software, string)) return FALSE; } if (membership_software && g_variant_lookup (options, REALM_DBUS_OPTION_MEMBERSHIP_SOFTWARE, "&s", &string)) { if (!g_str_equal (membership_software, string)) return FALSE; } return TRUE; } realmd-0.17.1/service/realm-sssd-config.c0000644003225100322510000001652014046520517020505 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-errors.h" #include "realm-ini-config.h" #include "realm-sssd-config.h" #include "realm-settings.h" #include #include RealmIniConfig * realm_sssd_config_new_with_flags (RealmIniFlags flags, GError **error) { RealmIniConfig *config; const gchar *filename; GError *err = NULL; config = realm_ini_config_new (flags | REALM_INI_PRIVATE | REALM_INI_STRICT_BOOLEAN); filename = realm_settings_path ("sssd.conf"); realm_ini_config_read_file (config, filename, &err); if (err != NULL) { /* If the caller wants errors, then don't return an invalid samba config */ if (error) { g_propagate_error (error, err); g_object_unref (config); config = NULL; /* If the caller doesn't care, then warn but continue */ } else { g_warning ("Couldn't load config file: %s: %s", filename, err->message); g_error_free (err); } } return config; } RealmIniConfig * realm_sssd_config_new (GError **error) { return realm_sssd_config_new_with_flags (REALM_INI_NONE, error); } gchar ** realm_sssd_config_get_domains (RealmIniConfig *config) { g_return_val_if_fail (REALM_IS_INI_CONFIG (config), NULL); return realm_ini_config_get_list (config, "sssd", "domains", ","); } gchar * realm_sssd_config_domain_to_section (const gchar *domain) { g_return_val_if_fail (domain != NULL, NULL); return g_strdup_printf ("domain/%s", domain); } gboolean realm_sssd_config_have_domain (RealmIniConfig *config, const gchar *domain) { gchar **domains; gboolean have = FALSE; gint i; g_return_val_if_fail (REALM_IS_INI_CONFIG (config), FALSE); g_return_val_if_fail (domain != NULL, FALSE); domains = realm_sssd_config_get_domains (config); for (i = 0; domains && domains[i] != NULL; i++) { if (g_str_equal (domain, domains[i])) { have = TRUE; break; } } g_strfreev (domains); return have; } static gboolean update_domain (RealmIniConfig *config, const char *section, va_list va, GError **error) { GHashTable *parameters; const gchar *name; const gchar *value; parameters = g_hash_table_new (g_str_hash, g_str_equal); while ((name = va_arg (va, const gchar *)) != NULL) { value = va_arg (va, const gchar *); g_hash_table_insert (parameters, (gpointer)name, (gpointer)value); } realm_ini_config_set_all (config, section, parameters); g_hash_table_unref (parameters); return realm_ini_config_finish_change (config, error); } gboolean realm_sssd_config_add_domain (RealmIniConfig *config, const gchar *domain, GError **error, ...) { const gchar *domains[2]; gchar **already; gboolean ret; gchar *section; const gchar *services[] = { "nss", "pam", NULL }; va_list va; gint i; g_return_val_if_fail (REALM_IS_INI_CONFIG (config), FALSE); g_return_val_if_fail (domain != NULL, FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); if (!realm_ini_config_begin_change (config, error)) return FALSE; already = realm_sssd_config_get_domains (config); for (i = 0; already && already[i] != NULL; i++) { if (g_str_equal (domain, already[i])) { realm_ini_config_abort_change (config); g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_EXIST, _("Already have domain %s in sssd.conf config file"), domain); g_strfreev (already); return FALSE; } } g_strfreev (already); /* Setup a default sssd section */ realm_ini_config_set_list_diff (config, "sssd", "services", ", ", services, NULL); if (!realm_ini_config_have (config, "sssd", "config_file_version")) realm_ini_config_set (config, "sssd", "config_file_version", "2", NULL); domains[0] = domain; domains[1] = NULL; realm_ini_config_set_list_diff (config, "sssd", "domains", ", ", domains, NULL); section = realm_sssd_config_domain_to_section (domain); va_start (va, error); ret = update_domain (config, section, va, error); va_end (va); g_free (section); return ret; } gboolean realm_sssd_config_update_domain (RealmIniConfig *config, const gchar *domain, GError **error, ...) { gchar *section; gboolean ret; va_list va; g_return_val_if_fail (REALM_IS_INI_CONFIG (config), FALSE); g_return_val_if_fail (domain != NULL, FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); if (!realm_ini_config_begin_change (config, error)) return FALSE; section = realm_sssd_config_domain_to_section (domain); if (!realm_ini_config_have_section (config, section)) { realm_ini_config_abort_change (config); g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_NOENT, _("Don't have domain %s in sssd.conf config file"), domain); g_free (section); return FALSE; } va_start (va, error); ret = update_domain (config, section, va, error); va_end (va); g_free (section); return ret; } gboolean realm_sssd_config_remove_domain (RealmIniConfig *config, const gchar *domain, GError **error) { const gchar *domains[2]; gchar *section; g_return_val_if_fail (REALM_IS_INI_CONFIG (config), FALSE); g_return_val_if_fail (domain != NULL, FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); if (!realm_ini_config_begin_change (config, error)) return FALSE; section = realm_sssd_config_domain_to_section (domain); domains[0] = domain; domains[1] = NULL; realm_ini_config_set_list_diff (config, "sssd", "domains", ", ", NULL, domains); realm_ini_config_remove_section (config, section); g_free (section); return realm_ini_config_finish_change (config, error); } gboolean realm_sssd_config_load_domain (RealmIniConfig *config, const gchar *domain, gchar **out_section, gchar **id_provider, gchar **realm_name) { const gchar *field_name; gchar *section; gchar *type; gchar *name; g_return_val_if_fail (REALM_IS_INI_CONFIG (config), FALSE); g_return_val_if_fail (domain != NULL, FALSE); section = realm_sssd_config_domain_to_section (domain); type = realm_ini_config_get (config, section, "id_provider"); if (g_strcmp0 (type, "ad") == 0) { field_name = "ad_domain"; } else if (g_strcmp0 (type, "ipa") == 0) { field_name = "ipa_domain"; } else { g_free (section); g_free (type); return FALSE; } name = realm_ini_config_get (config, section, field_name); if (name == NULL) name = realm_ini_config_get (config, section, "krb5_realm"); if (name == NULL) name = g_strdup (domain); if (realm_name) { *realm_name = name; name = NULL; } if (id_provider) { *id_provider = type; type = NULL; } if (out_section) { *out_section = section; section = NULL; } g_free (type); g_free (section); g_free (name); return TRUE; } realmd-0.17.1/service/realm-kerberos.h0000644003225100322510000001446714046520517020117 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_KERBEROS_H__ #define __REALM_KERBEROS_H__ #include #include #include "realm-dbus-generated.h" #include "realm-disco.h" G_BEGIN_DECLS typedef enum { REALM_KERBEROS_POLICY_NOT_SET = 0, REALM_KERBEROS_ALLOW_ANY_LOGIN = 1, REALM_KERBEROS_ALLOW_REALM_LOGINS, REALM_KERBEROS_ALLOW_PERMITTED_LOGINS, REALM_KERBEROS_DENY_ANY_LOGIN, } RealmKerberosLoginPolicy; #define REALM_TYPE_KERBEROS (realm_kerberos_get_type ()) #define REALM_KERBEROS(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_KERBEROS, RealmKerberos)) #define REALM_IS_KERBEROS(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_KERBEROS)) #define REALM_KERBEROS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), REALM_TYPE_KERBEROS, RealmKerberosClass)) #define REALM_IS_KERBEROS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), REALM_TYPE_KERBEROS)) #define REALM_KERBEROS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), REALM_TYPE_KERBEROS, RealmKerberosClass)) typedef struct _RealmKerberos RealmKerberos; typedef struct _RealmKerberosClass RealmKerberosClass; typedef struct _RealmKerberosPrivate RealmKerberosPrivate; struct _RealmKerberos { GDBusObjectSkeleton parent; RealmKerberosPrivate *pv; }; struct _RealmKerberosClass { GDBusObjectSkeletonClass parent_class; void (* logins_async) (RealmKerberos *realm, GDBusMethodInvocation *invocation, RealmKerberosLoginPolicy login_policy, const gchar **permitted_add, const gchar **permitted_remove, GVariant *options, GAsyncReadyCallback callback, gpointer user_data); gboolean (* logins_finish) (RealmKerberos *realm, GAsyncResult *result, GError **error); void (* discover_myself) (RealmKerberos *realm, RealmDisco *disco); }; GType realm_kerberos_get_type (void) G_GNUC_CONST; void realm_kerberos_set_disco (RealmKerberos *self, RealmDisco *disco); RealmDisco * realm_kerberos_get_disco (RealmKerberos *self); gchar ** realm_kerberos_parse_logins (RealmKerberos *self, gboolean lower, const gchar **logins, GError **error); gchar * realm_kerberos_format_login (RealmKerberos *self, const gchar *user); gboolean realm_kerberos_flush_keytab (const gchar *realm_name, GError **error); gchar * realm_kerberos_get_netbios_name_from_keytab (const gchar *realm_name); const gchar * realm_kerberos_get_name (RealmKerberos *self); const gchar * realm_kerberos_get_realm_name (RealmKerberos *self); void realm_kerberos_set_realm_name (RealmKerberos *self, const gchar *value); const gchar * realm_kerberos_get_domain_name (RealmKerberos *self); void realm_kerberos_set_domain_name (RealmKerberos *self, const gchar *value); gboolean realm_kerberos_get_manages_system (RealmKerberos *self); void realm_kerberos_set_manages_system (RealmKerberos *self, gboolean manages); RealmKerberos * realm_kerberos_which_manages_system (void); void realm_kerberos_set_suggested_admin (RealmKerberos *self, const gchar *value); void realm_kerberos_set_permitted_logins (RealmKerberos *self, const gchar **value); void realm_kerberos_set_permitted_groups (RealmKerberos *self, const gchar **value); void realm_kerberos_set_login_policy (RealmKerberos *self, RealmKerberosLoginPolicy value); const gchar * realm_kerberos_login_policy_to_string (RealmKerberosLoginPolicy value); void realm_kerberos_set_login_formats (RealmKerberos *self, const gchar **value); void realm_kerberos_set_details (RealmKerberos *self, ...) G_GNUC_NULL_TERMINATED; gboolean realm_kerberos_is_configured (RealmKerberos *self); void realm_kerberos_set_configured (RealmKerberos *self, gboolean configured); void realm_kerberos_set_required_package_sets (RealmKerberos *self, const gchar **package_sets); gboolean realm_kerberos_matches (RealmKerberos *self, const gchar *string); G_END_DECLS #endif /* __REALM_KERBEROS_H__ */ realmd-0.17.1/service/realm-service.c0000644003225100322510000001734714046520517017736 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-command.h" #include "realm-daemon.h" #include "realm-service.h" #include "realm-settings.h" #include static void begin_service_command (const gchar *command, gboolean skip_in_install_mode, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; /* If install mode, don't do certain service stuff */ if (skip_in_install_mode && realm_daemon_is_install_mode ()) { g_debug ("skipping %s command in install mode", command); task = g_task_new (NULL, NULL, callback, user_data); g_task_set_source_tag (task, begin_service_command); g_task_return_boolean (task, TRUE); g_object_unref (task); } else { realm_command_run_known_async (command, NULL, invocation, callback, user_data); } } static gboolean finish_service_command (GAsyncResult *result, GError **error) { if (g_task_is_valid (result, NULL) && g_task_get_source_tag (G_TASK (result)) == begin_service_command) { return g_task_propagate_boolean (G_TASK (result), error); } return realm_command_run_finish (result, NULL, error) != -1; } void realm_service_enable (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { gchar *command; command = g_strdup_printf ("%s-enable-service", service_name); begin_service_command (command, FALSE, invocation, callback, user_data); g_free (command); } gboolean realm_service_enable_finish (GAsyncResult *result, GError **error) { return finish_service_command (result, error); } void realm_service_disable (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { gchar *command; command = g_strdup_printf ("%s-disable-service", service_name); begin_service_command (command, FALSE, invocation, callback, user_data); g_free (command); } gboolean realm_service_disable_finish (GAsyncResult *result, GError **error) { return finish_service_command (result, error); } void realm_service_restart (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { gchar *command; command = g_strdup_printf ("%s-restart-service", service_name); begin_service_command (command, TRUE, invocation, callback, user_data); g_free (command); } gboolean realm_service_restart_finish (GAsyncResult *result, GError **error) { return finish_service_command (result, error); } void realm_service_stop (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { gchar *command; command = g_strdup_printf ("%s-stop-service", service_name); begin_service_command (command, TRUE, invocation, callback, user_data); g_free (command); } gboolean realm_service_stop_finish (GAsyncResult *result, GError **error) { return finish_service_command (result, error); } typedef struct { gchar *service_name; GDBusMethodInvocation *invocation; } CallClosure; static void call_closure_free (gpointer data) { CallClosure *call = data; g_free (call->service_name); g_clear_object (&call->invocation); g_free (call); } static void on_enable_restarted (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; realm_service_restart_finish (result, &error); if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void on_enable_enabled (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); CallClosure *call = g_task_get_task_data (task); GError *error = NULL; realm_service_enable_finish (result, &error); if (error == NULL) { realm_service_restart (call->service_name, call->invocation, on_enable_restarted, g_object_ref (task)); } else { g_task_return_error (task, error); } g_object_unref (task); } void realm_service_enable_and_restart (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; CallClosure *call; task = g_task_new (NULL, NULL, callback, user_data); call = g_new0 (CallClosure, 1); call->service_name = g_strdup (service_name); call->invocation = invocation ? g_object_ref (invocation) : invocation; g_task_set_task_data (task, call, call_closure_free); realm_service_enable (call->service_name, call->invocation, on_enable_enabled, g_object_ref (task)); g_object_unref (task); } gboolean realm_service_enable_and_restart_finish (GAsyncResult *result, GError **error) { g_return_val_if_fail (g_task_is_valid (result, NULL), FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); return g_task_propagate_boolean (G_TASK (result), error); } static void on_disable_stopped (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; realm_service_stop_finish (result, &error); if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void on_disable_disabled (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); CallClosure *call = g_task_get_task_data (task); GError *error = NULL; realm_service_disable_finish (result, &error); if (error == NULL) { realm_service_stop (call->service_name, call->invocation, on_disable_stopped, g_object_ref (task)); } else { g_task_return_error (task, error); } g_object_unref (task); } void realm_service_disable_and_stop (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; CallClosure *call; task = g_task_new (NULL, NULL, callback, user_data); call = g_new0 (CallClosure, 1); call->service_name = g_strdup (service_name); call->invocation = invocation ? g_object_ref (invocation) : invocation; g_task_set_task_data (task, call, call_closure_free); realm_service_disable (call->service_name, call->invocation, on_disable_disabled, g_object_ref (task)); g_object_unref (task); } gboolean realm_service_disable_and_stop_finish (GAsyncResult *result, GError **error) { g_return_val_if_fail (g_task_is_valid (result, NULL), FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); return g_task_propagate_boolean (G_TASK (result), error); } realmd-0.17.1/service/realm-samba.c0000644003225100322510000005525614311053251017351 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-command.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-diagnostics.h" #include "realm-disco.h" #include "realm-errors.h" #include "realm-kerberos.h" #include "realm-kerberos-config.h" #include "realm-kerberos-membership.h" #include "realm-options.h" #include "realm-packages.h" #include "realm-provider.h" #include "realm-samba.h" #include "realm-samba-config.h" #include "realm-samba-enroll.h" #include "realm-samba-winbind.h" #include "realm-settings.h" #include "realm-service.h" #include #include #include #include struct _RealmSamba { RealmKerberos parent; RealmIniConfig *config; gulong config_sig; }; typedef struct { RealmKerberosClass parent_class; } RealmSambaClass; enum { PROP_0, PROP_PROVIDER, }; static const gchar *SAMBA_PACKAGES[] = { REALM_DBUS_IDENTIFIER_WINBIND, REALM_DBUS_IDENTIFIER_SAMBA, NULL }; static void realm_samba_kerberos_membership_iface (RealmKerberosMembershipIface *iface); G_DEFINE_TYPE_WITH_CODE (RealmSamba, realm_samba, REALM_TYPE_KERBEROS, G_IMPLEMENT_INTERFACE (REALM_TYPE_KERBEROS_MEMBERSHIP, realm_samba_kerberos_membership_iface); ); static void realm_samba_init (RealmSamba *self) { } static void realm_samba_constructed (GObject *obj) { RealmKerberos *kerberos = REALM_KERBEROS (obj); G_OBJECT_CLASS (realm_samba_parent_class)->constructed (obj); realm_kerberos_set_details (kerberos, REALM_DBUS_OPTION_SERVER_SOFTWARE, REALM_DBUS_IDENTIFIER_ACTIVE_DIRECTORY, REALM_DBUS_OPTION_CLIENT_SOFTWARE, REALM_DBUS_IDENTIFIER_WINBIND, NULL); realm_kerberos_set_suggested_admin (kerberos, "Administrator"); realm_kerberos_set_login_policy (kerberos, REALM_KERBEROS_ALLOW_ANY_LOGIN); realm_kerberos_set_required_package_sets (kerberos, SAMBA_PACKAGES); } static gchar * lookup_enrolled_realm (RealmSamba *self) { gchar *enrolled = NULL; gchar *security; security = realm_ini_config_get (self->config, REALM_SAMBA_CONFIG_GLOBAL, "security"); if (security != NULL && g_ascii_strcasecmp (security, "ADS") == 0) enrolled = realm_ini_config_get (self->config, REALM_SAMBA_CONFIG_GLOBAL, "realm"); return enrolled; } static gboolean lookup_is_enrolled (RealmSamba *self) { const gchar *name; gchar *enrolled; gboolean ret = FALSE; enrolled = lookup_enrolled_realm (self); if (enrolled != NULL) { name = realm_kerberos_get_realm_name (REALM_KERBEROS (self)); ret = g_strcmp0 (name, enrolled) == 0; g_free (enrolled); } return ret; } static gchar * lookup_login_prefix (RealmSamba *self) { gchar *workgroup; gchar *separator; /* When using default, just have a direct login format */ if (realm_samba_config_get_boolean (self->config, REALM_SAMBA_CONFIG_GLOBAL, "winbind use default domain", FALSE)) return g_strdup (""); workgroup = realm_ini_config_get (self->config, REALM_SAMBA_CONFIG_GLOBAL, "workgroup"); if (workgroup == NULL) return NULL; separator = realm_ini_config_get (self->config, REALM_SAMBA_CONFIG_GLOBAL, "winbind separator"); if (separator == NULL) separator = g_strdup ("\\"); return g_strdup_printf ("%s%s", workgroup, separator); } typedef struct { GDBusMethodInvocation *invocation; GVariant *options; RealmDisco *disco; RealmCredential *cred; } EnrollClosure; static void enroll_closure_free (gpointer data) { EnrollClosure *enroll = data; realm_disco_unref (enroll->disco); g_variant_unref (enroll->options); realm_credential_unref (enroll->cred); g_object_unref (enroll->invocation); g_free (enroll); } static void on_winbind_restarted (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; realm_service_restart_finish (result, &error); if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void on_winbind_done (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; realm_samba_winbind_configure_finish (result, &error); if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void on_join_do_winbind (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); EnrollClosure *enroll = g_task_get_task_data (task); RealmSamba *self = g_task_get_source_object (task); GError *error = NULL; const gchar *name; const gchar *computer_name; computer_name = realm_options_computer_name (enroll->options, enroll->disco->domain_name); /* Use truncated name if set and explicit name is not available */ if (enroll->disco->explicit_netbios && computer_name == NULL) computer_name = enroll->disco->explicit_netbios; realm_samba_enroll_join_finish (result, &error); if (error == NULL && !realm_option_do_not_touch_config (enroll->options)) { realm_ini_config_change (self->config, REALM_SAMBA_CONFIG_GLOBAL, &error, "security", "ads", "realm", enroll->disco->kerberos_realm, "workgroup", enroll->disco->workgroup, "template homedir", realm_settings_string ("users", "default-home"), "template shell", realm_settings_string ("users", "default-shell"), "netbios name", computer_name, "password server", enroll->disco->explicit_server, "kerberos method", "secrets and keytab", NULL); } if (error == NULL && enroll->disco->dns_fqdn != NULL && !realm_option_do_not_touch_config (enroll->options)) { realm_ini_config_change (self->config, REALM_SAMBA_CONFIG_GLOBAL, &error, "additional dns hostnames", enroll->disco->dns_fqdn, NULL); } if (error == NULL && !realm_option_do_not_touch_config (enroll->options)) { configure_krb5_conf_for_domain (enroll->disco->kerberos_realm, &error); if (error != NULL) { realm_diagnostics_error (enroll->invocation, error, "Failed to update Kerberos " "configuration, not fatal, " "please check manually"); g_clear_error (&error); } } if (error == NULL) { if (!realm_option_do_not_touch_config (enroll->options)) { name = realm_kerberos_get_name (REALM_KERBEROS (self)); realm_samba_winbind_configure_async (self->config, name, enroll->options, enroll->invocation, on_winbind_done, g_object_ref (task)); } else { realm_service_restart ("winbind", enroll->invocation, on_winbind_restarted, g_object_ref (task)); } } else { g_task_return_error (task, error); } g_object_unref (task); } static void on_install_do_join (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); EnrollClosure *enroll = g_task_get_task_data (task); GError *error = NULL; realm_packages_install_finish (result, &error); if (error == NULL) { realm_samba_enroll_join_async (enroll->disco, enroll->cred, enroll->options, enroll->invocation, on_join_do_winbind, g_object_ref (task)); } else { g_task_return_error (task, error); } g_object_unref (task); } static gboolean validate_membership_options (EnrollClosure *enroll, GVariant *options, GError **error) { const gchar *software; /* Figure out the method that we're going to use to enroll */ if (g_variant_lookup (options, REALM_DBUS_OPTION_MEMBERSHIP_SOFTWARE, "&s", &software)) { if (!g_str_equal (software, REALM_DBUS_IDENTIFIER_SAMBA)) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, _("Unsupported or unknown membership software '%s'"), software); return FALSE; } } if (realm_option_use_ldaps (options)) { realm_diagnostics_info (enroll->invocation, "Membership software %s does " "not support ldaps, trying without.", software); } return TRUE; } static void realm_samba_join_async (RealmKerberosMembership *membership, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmKerberos *realm = REALM_KERBEROS (membership); RealmSamba *self = REALM_SAMBA (realm); GTask *task; EnrollClosure *enroll; GError *error = NULL; gchar *enrolled; task = g_task_new (realm, NULL, callback, user_data); enroll = g_new0 (EnrollClosure, 1); enroll->disco = realm_disco_ref (realm_kerberos_get_disco (realm)); enroll->invocation = g_object_ref (invocation); enroll->options = g_variant_ref (options); enroll->cred = realm_credential_ref (cred); g_task_set_task_data (task, enroll, enroll_closure_free); /* Make sure not already enrolled in a realm */ enrolled = lookup_enrolled_realm (self); if (enrolled != NULL && !realm_option_do_not_touch_config (enroll->options)) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_ALREADY_CONFIGURED, _("Already joined to a domain")); } else if (!validate_membership_options (enroll, options, &error)) { g_task_return_error (task, error); } else { realm_packages_install_async (SAMBA_PACKAGES, enroll->invocation, g_dbus_method_invocation_get_connection (enroll->invocation), on_install_do_join, g_object_ref (task)); } g_free (enrolled); g_object_unref (task); } static const RealmCredential * realm_samba_join_creds (RealmKerberosMembership *self) { static const RealmCredential creds[] = { { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_ADMIN }, { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_USER }, { REALM_CREDENTIAL_CCACHE, REALM_CREDENTIAL_OWNER_ADMIN }, { 0, }, }; return creds; } typedef struct { GDBusMethodInvocation *invocation; RealmDisco *disco; } LeaveClosure; static void leave_closure_free (gpointer data) { LeaveClosure *leave = data; realm_disco_unref (leave->disco); g_object_unref (leave->invocation); g_free (leave); } static void on_deconfigure_done (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; realm_samba_winbind_deconfigure_finish (result, &error); if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void leave_deconfigure_begin (RealmSamba *self, GTask *task) { LeaveClosure *leave; GError *error = NULL; leave = g_task_get_task_data (task); /* Flush the keytab of all the entries for this realm */ realm_diagnostics_info (leave->invocation, "Removing entries from keytab for realm"); if (!realm_kerberos_flush_keytab (leave->disco->kerberos_realm, &error)) { g_task_return_error (task, error); return; } /* Deconfigure smb.conf */ realm_diagnostics_info (leave->invocation, "Updating smb.conf file"); if (!realm_ini_config_change (self->config, REALM_SAMBA_CONFIG_GLOBAL, &error, "workgroup", NULL, "realm", NULL, "additional dns hostnames", NULL, "security", "user", NULL)) { g_task_return_error (task, error); return; } /* And then deconfigure winbind */ realm_samba_winbind_deconfigure_async (self->config, leave->invocation, on_deconfigure_done, g_object_ref (task)); } static void on_leave_do_deconfigure (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); LeaveClosure *leave = g_task_get_task_data (task); RealmSamba *self = g_task_get_source_object (task); GError *error = NULL; /* We don't care if we can leave or not, just continue with other steps */ realm_samba_enroll_leave_finish (result, &error); if (error != NULL) { realm_diagnostics_error (leave->invocation, error, NULL); g_error_free (error); } leave_deconfigure_begin (self, task); g_object_unref (task); } static void realm_samba_leave_async (RealmKerberosMembership *membership, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmSamba *self = REALM_SAMBA (membership); RealmKerberos *kerberos = REALM_KERBEROS (self); GTask *task; LeaveClosure *leave; const gchar *realm_name; gchar *enrolled; realm_name = realm_kerberos_get_realm_name (kerberos); task = g_task_new (self, NULL, callback, user_data); leave = g_new0 (LeaveClosure, 1); leave->disco = realm_disco_ref (realm_kerberos_get_disco (kerberos)); leave->invocation = g_object_ref (invocation); g_task_set_task_data (task, leave, leave_closure_free); /* Check that enrolled in this realm */ enrolled = lookup_enrolled_realm (self); if (g_strcmp0 (enrolled, realm_name) != 0) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_NOT_CONFIGURED, _("Not currently joined to this domain")); g_object_unref (task); return; } switch (cred->type) { case REALM_CREDENTIAL_PASSWORD: realm_samba_enroll_leave_async (leave->disco, cred, options, leave->invocation, on_leave_do_deconfigure, g_object_ref (task)); break; case REALM_CREDENTIAL_AUTOMATIC: leave_deconfigure_begin (self, task); break; default: g_return_if_reached (); } g_object_unref (task); } static const RealmCredential * realm_samba_leave_creds (RealmKerberosMembership *self) { static const RealmCredential creds[] = { { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_ADMIN }, { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_USER }, { REALM_CREDENTIAL_AUTOMATIC, REALM_CREDENTIAL_OWNER_NONE }, { 0, }, }; return creds; } static gboolean realm_samba_change_logins (RealmKerberos *realm, GDBusMethodInvocation *invocation, const gchar **add, const gchar **remove, GError **error) { RealmSamba *self = REALM_SAMBA (realm); gchar **names; if (!lookup_is_enrolled (self)) { g_set_error (error, REALM_ERROR, REALM_ERROR_NOT_CONFIGURED, _("Not joined to this domain")); return FALSE; } /* We cannot handle removing logins */ names = realm_kerberos_parse_logins (realm, TRUE, remove, error); if (names == NULL) return FALSE; if (names[0] != NULL) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_NOT_SUPPORTED, _("The Samba provider cannot restrict permitted logins.")); g_strfreev (names); return FALSE; } g_strfreev (names); names = realm_kerberos_parse_logins (realm, TRUE, add, error); if (names == NULL) return FALSE; /* * Samba cannot restrict the set of logins. We allow specific logins to be * added, but not changing the mode to only allow the permitted logins. * In addition we don't keep track of the list of permitted logins. */ g_strfreev (names); return TRUE; } static void realm_samba_logins_async (RealmKerberos *realm, GDBusMethodInvocation *invocation, RealmKerberosLoginPolicy login_policy, const gchar **add, const gchar **remove, GVariant *options, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; GError *error = NULL; task = g_task_new (realm, NULL, callback, user_data); if (login_policy == REALM_KERBEROS_ALLOW_REALM_LOGINS) login_policy = REALM_KERBEROS_ALLOW_ANY_LOGIN; /* Sadly we don't support this option */ if (login_policy != REALM_KERBEROS_ALLOW_ANY_LOGIN && login_policy != REALM_KERBEROS_POLICY_NOT_SET) { g_task_return_new_error (task, G_DBUS_ERROR, G_DBUS_ERROR_NOT_SUPPORTED, _("The Samba provider cannot restrict permitted logins.")); /* Make note of the permitted logins, so we can return them in the property */ } else if (!realm_samba_change_logins (realm, invocation, add, remove, &error)) { g_task_return_error (task, error); } else { g_task_return_boolean (task, TRUE); } g_object_unref (task); } static void update_properties (RealmSamba *self) { RealmKerberos *kerberos = REALM_KERBEROS (self); GPtrArray *permitted; gchar *login_formats[2] = { NULL, NULL }; gboolean configured; const gchar *name; gchar *domain; gchar *realm; gchar *prefix; g_object_freeze_notify (G_OBJECT (self)); name = realm_kerberos_get_name (kerberos); domain = name ? g_ascii_strdown (name, -1) : NULL; realm_kerberos_set_domain_name (kerberos, domain); g_free (domain); realm = name ? g_ascii_strup (name, -1) : NULL; realm_kerberos_set_realm_name (kerberos, realm); g_free (realm); /* * Although samba domains do not do much management of the system or * pull that much policy, we cannot limit who can log in from the domain * and also cannot join more than one domain, so this we mark a * configured domain as one that manages the system. */ configured = lookup_is_enrolled (self); realm_kerberos_set_configured (kerberos, configured); realm_kerberos_set_manages_system (kerberos, configured); /* Setup the workgroup property */ prefix = lookup_login_prefix (self); if (prefix != NULL) { login_formats[0] = g_strdup_printf ("%s%%U", prefix); realm_kerberos_set_login_formats (kerberos, (const gchar **)login_formats); g_free (login_formats[0]); g_free (prefix); } else { login_formats[0] = "%U"; realm_kerberos_set_login_formats (kerberos, (const gchar **)login_formats); } permitted = g_ptr_array_new_full (0, g_free); g_ptr_array_add (permitted, NULL); realm_kerberos_set_permitted_logins (kerberos, (const gchar **)permitted->pdata); g_ptr_array_free (permitted, TRUE); g_object_thaw_notify (G_OBJECT (self)); } static void on_config_changed (RealmIniConfig *config, gpointer user_data) { update_properties (REALM_SAMBA (user_data)); } static gboolean realm_samba_membership_generic_finish (RealmKerberosMembership *realm, GAsyncResult *result, GError **error) { if (!g_task_propagate_boolean (G_TASK (result), error)) return FALSE; update_properties (REALM_SAMBA (realm)); return TRUE; } static gboolean realm_samba_generic_finish (RealmKerberos *realm, GAsyncResult *result, GError **error) { if (!g_task_propagate_boolean (G_TASK (result), error)) return FALSE; update_properties (REALM_SAMBA (realm)); return TRUE; } static void realm_samba_set_property (GObject *obj, guint prop_id, const GValue *value, GParamSpec *pspec) { RealmSamba *self = REALM_SAMBA (obj); RealmProvider *provider; switch (prop_id) { case PROP_PROVIDER: provider = g_value_get_object (value); g_object_get (provider, "samba-config", &self->config, NULL); self->config_sig = g_signal_connect (self->config, "changed", G_CALLBACK (on_config_changed), self); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec); break; } } static void realm_samba_notify (GObject *obj, GParamSpec *spec) { if (g_str_equal (spec->name, "name")) update_properties (REALM_SAMBA (obj)); if (G_OBJECT_CLASS (realm_samba_parent_class)->notify) G_OBJECT_CLASS (realm_samba_parent_class)->notify (obj, spec); } static void realm_samba_finalize (GObject *obj) { RealmSamba *self = REALM_SAMBA (obj); if (self->config) g_object_unref (self->config); G_OBJECT_CLASS (realm_samba_parent_class)->finalize (obj); } static void realm_samba_discover_myself (RealmKerberos *realm, RealmDisco *disco) { RealmSamba *self = REALM_SAMBA (realm); gchar *value; value = realm_ini_config_get (self->config, REALM_SAMBA_CONFIG_GLOBAL, "workgroup"); g_free (disco->workgroup); disco->workgroup = value; value = realm_ini_config_get (self->config, REALM_SAMBA_CONFIG_GLOBAL, "netbios name"); g_free (disco->explicit_netbios); disco->explicit_netbios = value; value = realm_ini_config_get (self->config, REALM_SAMBA_CONFIG_GLOBAL, "password server"); g_free (disco->explicit_server); disco->explicit_server = value; } void realm_samba_class_init (RealmSambaClass *klass) { RealmKerberosClass *kerberos_class = REALM_KERBEROS_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); kerberos_class->logins_async = realm_samba_logins_async; kerberos_class->logins_finish = realm_samba_generic_finish; kerberos_class->discover_myself = realm_samba_discover_myself; object_class->constructed = realm_samba_constructed; object_class->set_property = realm_samba_set_property; object_class->notify = realm_samba_notify; object_class->finalize = realm_samba_finalize; g_object_class_override_property (object_class, PROP_PROVIDER, "provider"); } static void realm_samba_kerberos_membership_iface (RealmKerberosMembershipIface *iface) { iface->join_async = realm_samba_join_async; iface->join_finish = realm_samba_membership_generic_finish; iface->join_creds = realm_samba_join_creds; iface->leave_async = realm_samba_leave_async; iface->leave_finish = realm_samba_membership_generic_finish; iface->leave_creds = realm_samba_leave_creds; } RealmKerberos * realm_samba_new (const gchar *name, RealmProvider *provider) { return g_object_new (REALM_TYPE_SAMBA, "name", name, "provider", provider, NULL); } realmd-0.17.1/service/realm-disco.c0000644003225100322510000000272214046520517017366 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-disco.h" GType realm_disco_get_type (void) { static GType type = 0; if (type == 0) type = g_boxed_type_register_static ("RealmDisco", (GBoxedCopyFunc)realm_disco_ref, realm_disco_unref); return type; } RealmDisco * realm_disco_new (const gchar *domain) { RealmDisco *disco; disco = g_new0 (RealmDisco, 1); disco->refs = 1; disco->domain_name = g_strdup (domain); return disco; } RealmDisco * realm_disco_ref (RealmDisco *disco) { g_return_val_if_fail (disco != NULL, NULL); disco->refs++; return disco; } void realm_disco_unref (gpointer data) { RealmDisco *disco = data; if (!data) return; if (disco->refs-- == 1) { g_free (disco->domain_name); g_free (disco->explicit_server); g_free (disco->explicit_netbios); g_free (disco->kerberos_realm); g_free (disco->workgroup); g_free (disco->dns_fqdn); if (disco->server_address) g_object_unref (disco->server_address); g_free (disco); } } realmd-0.17.1/service/realm-sssd-provider.h0000644003225100322510000000222514046520517021074 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SSSD_PROVIDER_H__ #define __REALM_SSSD_PROVIDER_H__ #include #include "realm-provider.h" G_BEGIN_DECLS #define REALM_TYPE_SSSD_PROVIDER (realm_sssd_provider_get_type ()) #define REALM_SSSD_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_SSSD_PROVIDER, RealmSssdProvider)) #define REALM_IS_SSSD_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_SSSD_PROVIDER)) typedef struct _RealmSssdProvider RealmSssdProvider; GType realm_sssd_provider_get_type (void) G_GNUC_CONST; RealmProvider * realm_sssd_provider_new (void); G_END_DECLS #endif /* __REALM_SSSD_PROVIDER_H__ */ realmd-0.17.1/service/realm-service.h0000644003225100322510000000711514046520517017733 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SERVICE_H__ #define __REALM_SERVICE_H__ #include G_BEGIN_DECLS void realm_service_enable (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_service_enable_finish (GAsyncResult *result, GError **error); void realm_service_disable (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_service_disable_finish (GAsyncResult *result, GError **error); void realm_service_stop (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_service_stop_finish (GAsyncResult *result, GError **error); void realm_service_restart (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_service_restart_finish (GAsyncResult *result, GError **error); void realm_service_enable_and_restart (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_service_enable_and_restart_finish (GAsyncResult *result, GError **error); void realm_service_disable_and_stop (const gchar *service_name, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_service_disable_and_stop_finish (GAsyncResult *result, GError **error); G_END_DECLS #endif /* __REALM_KERBEROS_SERVICE_H__ */ realmd-0.17.1/service/realm-network.h0000644003225100322510000000174214046520517017764 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_NETWORK_H__ #define __REALM_NETWORK_H__ #include G_BEGIN_DECLS void realm_network_get_dhcp_domain_async (GDBusConnection *connection, GAsyncReadyCallback callback, gpointer user_data); gchar * realm_network_get_dhcp_domain_finish (GAsyncResult *result, GError **error); G_END_DECLS #endif /* __REALM_NETWORK_H__ */ realmd-0.17.1/service/realm-login-name.c0000644003225100322510000000667314046520517020324 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-login-name.h" #include static gboolean split_login_format (const gchar *format, const gchar **prefix, gsize *prefix_len, const gchar **suffix, gsize *suffix_len) { const gchar *end; const gchar *pos; g_assert (format != NULL); g_assert (prefix != NULL); g_assert (prefix_len != NULL); g_assert (suffix != NULL); g_assert (suffix_len != NULL); pos = strstr (format, "%U"); if (pos == NULL) return FALSE; end = format + strlen (format); *prefix = format; *prefix_len = pos - format; *suffix = pos + 2; *suffix_len = end - (*suffix); return TRUE; } gchar * realm_login_name_parse (const gchar *const *formats, gboolean lower, const gchar *login) { const gchar *prefix = NULL; const gchar *suffix = NULL; gsize prefix_len = 0; gsize suffix_len = 0; gchar length; const gchar *user; gsize user_len; gint i; g_return_val_if_fail (formats != NULL, NULL); g_return_val_if_fail (login != NULL, NULL); for (i = 0; formats[i]; i++) { if (strstr (formats[i], "%D") != NULL) { g_warning ("Using a %%D as a domain in a login format is not yet implemented"); continue; } split_login_format (formats[i], &prefix, &prefix_len, &suffix, &suffix_len); length = strlen (login); if (prefix_len + suffix_len >= length) continue; if (g_ascii_strncasecmp (login, prefix, prefix_len) != 0) continue; if (g_ascii_strncasecmp (login + (length - suffix_len), suffix, suffix_len) != 0) continue; user = login + prefix_len; user_len = length - (suffix_len + prefix_len); if (lower) return g_utf8_strdown (user, user_len); else return g_strndup (user, user_len); } return NULL; } gchar ** realm_login_name_parse_all (const gchar *const *formats, gboolean lower, const gchar **logins, const gchar **failed) { GPtrArray *names; gchar *login; gint i; names = g_ptr_array_new_full (0, g_free); for (i = 0; logins != NULL && logins[i] != NULL; i++) { login = realm_login_name_parse (formats, lower, logins[i]); if (login == NULL) { if (failed) *failed = logins[i]; g_ptr_array_free (names, TRUE); return NULL; } g_ptr_array_add (names, login); } g_ptr_array_add (names, NULL); return (gchar **)g_ptr_array_free (names, FALSE); } gchar * realm_login_name_format (const gchar *format, const gchar *user) { const gchar *prefix = NULL; const gchar *suffix = NULL; gsize prefix_len = 0; gsize suffix_len = 0; GString *string; g_return_val_if_fail (format != NULL, NULL); g_return_val_if_fail (user != NULL, NULL); string = g_string_sized_new (64); split_login_format (format, &prefix, &prefix_len, &suffix, &suffix_len); g_string_append_len (string, prefix, prefix_len); g_string_append (string, user); g_string_append_len (string, suffix, suffix_len); return g_string_free (string, FALSE); } realmd-0.17.1/service/realm-sssd.c0000644003225100322510000005064514046520517017250 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-command.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-diagnostics.h" #include "realm-errors.h" #include "realm-packages.h" #include "realm-provider.h" #include "realm-service.h" #include "realm-sssd.h" #include "realm-sssd-config.h" #include "safe-format-string.h" #include #include #include struct _RealmSssdPrivate { gchar *domain; gchar *section; RealmIniConfig *config; gulong config_sig; }; enum { PROP_0, PROP_PROVIDER, }; G_DEFINE_TYPE (RealmSssd, realm_sssd, REALM_TYPE_KERBEROS); static void realm_sssd_init (RealmSssd *self) { self->pv = G_TYPE_INSTANCE_GET_PRIVATE (self, REALM_TYPE_SSSD, RealmSssdPrivate); } static void on_logins_restarted (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); RealmSssd *self = g_task_get_source_object (task); GError *error = NULL; realm_service_restart_finish (result, &error); if (error != NULL) { g_task_return_error (task, error); } else { realm_sssd_update_properties (self); g_task_return_boolean (task, TRUE); } g_object_unref (task); } gboolean realm_sssd_set_login_policy (RealmIniConfig *config, const gchar *section, const gchar *access_provider, const gchar **add_names, const gchar **remove_names, gboolean names_are_groups, GError **error) { const gchar *field = names_are_groups ? "simple_allow_groups" : "simple_allow_users"; gchar *allow = NULL; if (!realm_ini_config_begin_change (config, error)) return FALSE; if (access_provider) realm_ini_config_set (config, section, "access_provider", access_provider, NULL); if (!access_provider || g_str_equal (access_provider, "simple")) { realm_ini_config_set_list_diff (config, section, field, ",", add_names, remove_names); /* * HACK: Work around for sssd problem where it allows users if * simple_allow_users is empty. Set it to a dollar in this case. */ allow = realm_ini_config_get (config, section, field); if (allow != NULL) { g_strstrip (allow); if (g_str_equal (allow, "") || g_str_equal (allow, "$") || g_str_equal (allow, ",")) { g_free (allow); allow = NULL; } } if (allow == NULL) realm_ini_config_set (config, section, field, "$", NULL); } else { realm_ini_config_set (config, section, "simple_allow_users", NULL, NULL); realm_ini_config_set (config, section, "simple_allow_groups", NULL, NULL); } g_free (allow); return realm_ini_config_finish_change (config, error); } static gboolean sssd_config_check_login_list (const gchar **logins, GError **error) { #define INVALID_CHARS ",$" gint i; for (i = 0; logins != NULL && logins[i] != NULL; i++) { if (strcspn (logins[i], INVALID_CHARS) != strlen (logins[i])) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, _("Invalid login argument '%s' contains unsupported characters."), logins[i]); return FALSE; } } return TRUE; } static void realm_sssd_logins_async (RealmKerberos *realm, GDBusMethodInvocation *invocation, RealmKerberosLoginPolicy login_policy, const gchar **add, const gchar **remove, GVariant *options, GAsyncReadyCallback callback, gpointer user_data) { RealmSssdClass *sssd_class = REALM_SSSD_GET_CLASS (realm); RealmSssd *self = REALM_SSSD (realm); gboolean names_are_groups = FALSE; GTask *task; gchar **remove_names = NULL; gchar **add_names = NULL; GError *error = NULL; const gchar *access_provider; task = g_task_new (realm, NULL, callback, user_data); if (!self->pv->section) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_NOT_CONFIGURED, "Not joined to this domain"); g_object_unref (task); return; } switch (login_policy) { case REALM_KERBEROS_POLICY_NOT_SET: access_provider = NULL; break; case REALM_KERBEROS_ALLOW_ANY_LOGIN: access_provider = "permit"; break; case REALM_KERBEROS_ALLOW_REALM_LOGINS: access_provider = sssd_class->sssd_conf_provider_name; break; case REALM_KERBEROS_ALLOW_PERMITTED_LOGINS: access_provider = "simple"; break; case REALM_KERBEROS_DENY_ANY_LOGIN: access_provider = "deny"; break; default: g_return_if_reached (); } if (!g_variant_lookup (options, "groups", "b", &names_are_groups)) names_are_groups = FALSE; if (!names_are_groups) { add_names = realm_kerberos_parse_logins (realm, TRUE, add, &error); if (add_names != NULL) remove_names = realm_kerberos_parse_logins (realm, TRUE, remove, &error); add = (const gchar **)add_names; remove = (const gchar **)remove_names; } if (error == NULL) sssd_config_check_login_list (add, &error); if (error == NULL) sssd_config_check_login_list (remove, &error); if (error == NULL) { realm_sssd_set_login_policy (self->pv->config, self->pv->section, access_provider, add, remove, names_are_groups, &error); } if (error == NULL) { realm_service_restart ("sssd", invocation, on_logins_restarted, g_object_ref (task)); } else { g_task_return_error (task, error); } g_strfreev (remove_names); g_strfreev (add_names); g_object_unref (task); } static gboolean realm_sssd_generic_finish (RealmKerberos *realm, GAsyncResult *result, GError **error) { return g_task_propagate_boolean (G_TASK (result), error); } static void update_configured (RealmSssd *self) { gboolean manages_system; gchar *value; realm_kerberos_set_configured (REALM_KERBEROS (self), self->pv->section ? TRUE : FALSE); manages_system = FALSE; if (self->pv->section) { value = realm_ini_config_get (self->pv->config, self->pv->section, "realmd_tags"); if (value && strstr (value, "manages-system")) manages_system = TRUE; g_free (value); } realm_kerberos_set_manages_system (REALM_KERBEROS (self), manages_system); } static gchar * calc_realm_name (RealmSssd *self) { RealmKerberos *kerberos = REALM_KERBEROS (self); const char *name; RealmDisco *disco; gchar *realm = NULL; if (self->pv->section == NULL) { disco = realm_kerberos_get_disco (kerberos); if (disco != NULL) realm = g_strdup (disco->kerberos_realm); } else { realm = realm_ini_config_get (self->pv->config, self->pv->section, "krb5_realm"); } if (realm == NULL) { name = realm_kerberos_get_name (kerberos); realm = name ? g_ascii_strup (name, -1) : NULL; } return realm; } static void update_realm_name (RealmSssd *self) { gchar *realm = calc_realm_name (self); realm_kerberos_set_realm_name (REALM_KERBEROS (self), realm); g_free (realm); } static gchar * calc_domain (RealmSssd *self) { RealmKerberos *kerberos = REALM_KERBEROS (self); const char *name; RealmDisco *disco; gchar *domain = NULL; if (self->pv->section == NULL) { disco = realm_kerberos_get_disco (kerberos); if (disco != NULL) domain = g_strdup (disco->domain_name); } else { domain = realm_ini_config_get (self->pv->config, self->pv->section, "dns_discovery_domain"); } if (domain == NULL) { name = realm_kerberos_get_name (kerberos); domain = name ? g_ascii_strdown (name, -1) : NULL; } return domain; } static void update_domain (RealmSssd *self) { gchar *domain = calc_domain (self); realm_kerberos_set_domain_name (REALM_KERBEROS (self), domain); g_free (domain); } static void format_string_piece (void *data, const char *piece, size_t len) { g_string_append_len (data, piece, len); } static void update_login_formats (RealmSssd *self) { RealmKerberos *kerberos = REALM_KERBEROS (self); gchar *login_formats[2] = { NULL, NULL }; const gchar *args[3]; GString *formatted; gchar *format = NULL; gchar *domain_name; gboolean qualify; if (self->pv->section == NULL) { realm_kerberos_set_login_formats (kerberos, (const gchar **)login_formats); return; } qualify = realm_ini_config_get_boolean (self->pv->config, self->pv->section, "use_fully_qualified_names", FALSE); if (!qualify) { login_formats[0] = "%U"; realm_kerberos_set_login_formats (kerberos, (const gchar **)login_formats); return; } /* Setup the login formats */ format = realm_ini_config_get (self->pv->config, self->pv->section, "full_name_format"); if (format == NULL) format = realm_ini_config_get (self->pv->config, "sssd", "full_name_format"); if (format == NULL) format = g_strdup ("%1$s@%2$s"); /* The full domain name */ domain_name = calc_domain (self); /* * In theory we should be discovering the short name or flat name as sssd * calls it. We configured it as the sssd.conf 'domains' name, so we just * use that. Eventually we want to have a way to query sssd for that. */ /* * Here we place a '%U' in the place of the user in the format, and * fill in the domain appropriately. sssd uses snprintf for this, which * is risky and very compex to do right with positional arguments. * * We only replace the arguments documented in sssd.conf, as well as * other non-field printf replacements. */ formatted = g_string_new (""); args[0] = "%U"; args[1] = domain_name ? domain_name : ""; args[2] = self->pv->domain; if (safe_format_string_cb (format_string_piece, formatted, format, args, 3) >= 0) { login_formats[0] = formatted->str; realm_kerberos_set_login_formats (kerberos, (const gchar **)login_formats); } g_string_free (formatted, TRUE); g_free (domain_name); g_free (format); } #pragma GCC diagnostic pop static void update_login_policy (RealmSssd *self) { RealmSssdClass *sssd_class = REALM_SSSD_GET_CLASS (self); RealmKerberosLoginPolicy policy = REALM_KERBEROS_POLICY_NOT_SET; RealmKerberos *kerberos = REALM_KERBEROS (self); GPtrArray *permitted_logins; GPtrArray *permitted_groups; gchar *access = NULL; gchar **values; gint i; permitted_logins = g_ptr_array_new_full (0, g_free); permitted_groups = g_ptr_array_new_full (0, g_free); if (self->pv->section != NULL) access = realm_ini_config_get (self->pv->config, self->pv->section, "access_provider"); if (g_strcmp0 (access, "simple") == 0) { values = realm_ini_config_get_list (self->pv->config, self->pv->section, "simple_allow_users", ","); for (i = 0; values != NULL && values[i] != NULL; i++) { if (!g_str_equal (values[i], "") && !g_str_equal (values[i], "$")) g_ptr_array_add (permitted_logins, realm_kerberos_format_login (kerberos, values[i])); } g_strfreev (values); values = realm_ini_config_get_list (self->pv->config, self->pv->section, "simple_allow_groups", ","); for (i = 0; values != NULL && values[i] != NULL; i++) { if (!g_str_equal (values[i], "") && !g_str_equal (values[i], "$")) g_ptr_array_add (permitted_groups, g_strdup (values[i])); } g_strfreev (values); policy = REALM_KERBEROS_ALLOW_PERMITTED_LOGINS; } else if (g_strcmp0 (access, sssd_class->sssd_conf_provider_name) == 0) { policy = REALM_KERBEROS_ALLOW_REALM_LOGINS; } else if (g_strcmp0 (access, "permit") == 0) { policy = REALM_KERBEROS_ALLOW_ANY_LOGIN; } else if (g_strcmp0 (access, "deny") == 0) { policy = REALM_KERBEROS_DENY_ANY_LOGIN; } else { policy = REALM_KERBEROS_POLICY_NOT_SET; } g_ptr_array_add (permitted_logins, NULL); g_ptr_array_add (permitted_groups, NULL); realm_kerberos_set_login_policy (kerberos, policy); realm_kerberos_set_permitted_logins (kerberos, (const gchar **)permitted_logins->pdata); realm_kerberos_set_permitted_groups (kerberos, (const gchar **)permitted_groups->pdata); g_ptr_array_free (permitted_logins, TRUE); g_ptr_array_free (permitted_groups, TRUE); g_free (access); } void realm_sssd_update_properties (RealmSssd *self) { GObject *obj = G_OBJECT (self); const gchar *my_name; gchar *name = NULL; gchar *section = NULL; gchar **domains; gint i; g_object_freeze_notify (obj); g_free (self->pv->section); self->pv->section = NULL; g_free (self->pv->domain); self->pv->domain = NULL; /* Find the config domain with our realm */ domains = realm_sssd_config_get_domains (self->pv->config); my_name = realm_kerberos_get_name (REALM_KERBEROS (self)); for (i = 0; self->pv->section == NULL && domains && domains[i]; i++) { if (realm_sssd_config_load_domain (self->pv->config, domains[i], §ion, NULL, &name)) { if (my_name && name && g_ascii_strcasecmp (my_name, name) == 0) { self->pv->domain = g_strdup (domains[i]); self->pv->section = section; section = NULL; } g_free (section); g_free (name); } } g_strfreev (domains); /* Update all the other properties */ update_configured (self); update_realm_name (self); update_domain (self); update_login_formats (self); update_login_policy (self); g_object_thaw_notify (obj); } static void on_config_changed (RealmIniConfig *config, gpointer user_data) { realm_sssd_update_properties (REALM_SSSD (user_data)); } static void realm_sssd_set_property (GObject *obj, guint prop_id, const GValue *value, GParamSpec *pspec) { RealmSssd *self = REALM_SSSD (obj); RealmProvider *provider; switch (prop_id) { case PROP_PROVIDER: provider = g_value_get_object (value); g_object_get (provider, "sssd-config", &self->pv->config, NULL); self->pv->config_sig = g_signal_connect (self->pv->config, "changed", G_CALLBACK (on_config_changed), self); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec); break; } } static void realm_sssd_notify (GObject *obj, GParamSpec *spec) { if (g_str_equal (spec->name, "name")) realm_sssd_update_properties (REALM_SSSD (obj)); if (G_OBJECT_CLASS (realm_sssd_parent_class)->notify) G_OBJECT_CLASS (realm_sssd_parent_class)->notify (obj, spec); } static void realm_sssd_finalize (GObject *obj) { RealmSssd *self = REALM_SSSD (obj); g_free (self->pv->section); if (self->pv->config) g_object_unref (self->pv->config); G_OBJECT_CLASS (realm_sssd_parent_class)->finalize (obj); } void realm_sssd_class_init (RealmSssdClass *klass) { RealmKerberosClass *kerberos_class = REALM_KERBEROS_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); kerberos_class->logins_async = realm_sssd_logins_async; kerberos_class->logins_finish = realm_sssd_generic_finish; object_class->set_property = realm_sssd_set_property; object_class->notify = realm_sssd_notify; object_class->finalize = realm_sssd_finalize; g_object_class_override_property (object_class, PROP_PROVIDER, "provider"); g_type_class_add_private (klass, sizeof (RealmSssdPrivate)); } RealmIniConfig * realm_sssd_get_config (RealmSssd *self) { g_return_val_if_fail (REALM_IS_SSSD (self), NULL); return self->pv->config; } const gchar * realm_sssd_get_config_section (RealmSssd *self) { g_return_val_if_fail (REALM_IS_SSSD (self), NULL); return self->pv->section; } const gchar * realm_sssd_get_config_domain (RealmSssd *self) { g_return_val_if_fail (REALM_IS_SSSD (self), NULL); return self->pv->domain; } gchar * realm_sssd_build_default_home (const gchar *value) { gchar *home; char *pos; /* Change from our format to the sssd format place-holders */ home = g_strdup (value); pos = strstr (home, "%U"); if (pos) pos[1] = 'u'; pos = strstr (home, "%D"); if (pos) pos[1] = 'd'; return home; } typedef struct { GTask *task; GDBusMethodInvocation *invocation; RealmIniConfig *config; gchar *domain; } DeconfClosure; static void deconfigure_closure_free (gpointer data) { DeconfClosure *deconf = data; g_object_unref (deconf->task); g_object_unref (deconf->invocation); g_object_unref (deconf->config); g_free (deconf->domain); g_free (deconf); } static void on_service_disable_done (GObject *source, GAsyncResult *result, gpointer user_data) { DeconfClosure *deconf = user_data; GError *error = NULL; realm_service_disable_and_stop_finish (result, &error); if (error != NULL) { realm_diagnostics_error (deconf->invocation, error, NULL); g_error_free (error); } g_task_return_boolean (deconf->task, TRUE); deconfigure_closure_free (deconf); } static void on_service_restart_done (GObject *source, GAsyncResult *result, gpointer user_data) { DeconfClosure *deconf = user_data; GError *error = NULL; realm_service_restart_finish (result, &error); if (error != NULL) { realm_diagnostics_error (deconf->invocation, error, NULL); g_error_free (error); } g_task_return_boolean (deconf->task, TRUE); deconfigure_closure_free (deconf); } static void on_disable_nss_service (GObject *source, GAsyncResult *result, gpointer user_data) { DeconfClosure *deconf = user_data; GError *error = NULL; gint status; status = realm_command_run_finish (result, NULL, &error); if (error == NULL && status != 0) { realm_diagnostics_error (deconf->invocation, error, "Disabling sssd in PAM failed."); g_clear_error (&error); } realm_service_disable_and_stop ("sssd", deconf->invocation, on_service_disable_done, deconf); } static void on_sssd_clear_cache (GObject *source, GAsyncResult *result, gpointer user_data) { DeconfClosure *deconf = user_data; GError *error = NULL; gchar **domains; gint status; status = realm_command_run_finish (result, NULL, &error); if (status != 0) { realm_diagnostics_error (deconf->invocation, error, "Flushing the sssd cache failed"); g_clear_error (&error); } /* Deconfigure sssd.conf, may have already been done, if so NULL */ if (deconf->domain) { realm_diagnostics_info (deconf->invocation, "Removing domain configuration from sssd.conf"); if (!realm_sssd_config_remove_domain (deconf->config, deconf->domain, &error)) { g_task_return_error (deconf->task, error); deconfigure_closure_free (deconf); return; } } /* If no domains, then disable sssd */ domains = realm_sssd_config_get_domains (deconf->config); if (domains == NULL || g_strv_length (domains) == 0) { realm_command_run_known_async ("sssd-disable-logins", NULL, deconf->invocation, on_disable_nss_service, deconf); /* If any domains left, then restart sssd */ } else { realm_service_restart ("sssd", deconf->invocation, on_service_restart_done, deconf); } g_strfreev (domains); } void realm_sssd_deconfigure_domain_tail (RealmSssd *self, GTask *task, GDBusMethodInvocation *invocation) { DeconfClosure *deconf; GError *error = NULL; const gchar *realm_name; realm_name = realm_kerberos_get_realm_name (REALM_KERBEROS (self)); /* Flush the keytab of all the entries for this realm */ realm_diagnostics_info (invocation, "Removing entries from keytab for realm"); if (!realm_kerberos_flush_keytab (realm_name, &error)) { g_task_return_error (task, error); return; } deconf = g_new0 (DeconfClosure, 1); deconf->task = g_object_ref (task); deconf->invocation = g_object_ref (invocation); deconf->config = g_object_ref (self->pv->config); deconf->domain = g_strdup (self->pv->domain); /* * TODO: We would really like to do this after removing the domain, to prevent races * but we can't because otherwise sss_cache doesn't clear that domain :S */ realm_command_run_known_async ("sssd-caches-flush", NULL, deconf->invocation, on_sssd_clear_cache, deconf); } realmd-0.17.1/service/realm-all-provider.h0000644003225100322510000000253614046520517020675 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) all later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_ALL_PROVIDER_H__ #define __REALM_ALL_PROVIDER_H__ #include #include "realm-provider.h" G_BEGIN_DECLS #define REALM_TYPE_ALL_PROVIDER (realm_all_provider_get_type ()) #define REALM_ALL_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_ALL_PROVIDER, RealmAllProvider)) #define REALM_IS_ALL_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_ALL_PROVIDER)) typedef struct _RealmAllProvider RealmAllProvider; GType realm_all_provider_get_type (void) G_GNUC_CONST; RealmProvider * realm_all_provider_new_and_export (GDBusConnection *connection); void realm_all_provider_register (RealmProvider *all_provider, RealmProvider *provider); G_END_DECLS #endif /* __REALM_ALL_PROVIDER_H__ */ realmd-0.17.1/service/realm-disco-mscldap.h0000644003225100322510000000314514046520517021014 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #ifndef __REALM_DISCO_MSCLDAP_H__ #define __REALM_DISCO_MSCLDAP_H__ #include "realm-disco.h" #include #include void realm_disco_mscldap_async (GSocketAddress *address, GSocketProtocol protocol, const gchar *explicit_server, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); RealmDisco * realm_disco_mscldap_finish (GAsyncResult *result, GError **error); gboolean realm_disco_mscldap_result (LDAP *ldap, LDAPMessage *message, RealmDisco *disco, GError **error); gboolean realm_disco_mscldap_request (LDAP *ldap, int *msgidp, GError **error); #endif /* __REALM_DISCO_MSCLDAP_H__ */ realmd-0.17.1/service/safe-format-string.c0000644003225100322510000001634114046520517020701 0ustar00sbosesbose00000000000000/* * This file originated in the realmd project * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ /* * Some snippets of code from gnulib, but have since been refactored * to within an inch of their life... * * vsprintf with automatic memory allocation. * Copyright (C) 1999, 2002-2003 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Library General Public License as published * by the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. */ #include "config.h" #include "safe-format-string.h" #include #include #include #ifndef MIN #define MIN(a, b) (((a) < (b)) ? (a) : (b)) #endif #ifndef MAX #define MAX(a, b) (((a) > (b)) ? (a) : (b)) #endif static void safe_padding (int count, int *total, void (* copy_fn) (void *, const char *, size_t), void *data) { char eight[] = " "; int num; while (count > 0) { num = MIN (count, 8); copy_fn (data, eight, num); count -= num; *total += num; } } static void dummy_copy_fn (void *data, const char *piece, size_t len) { } int safe_format_string_cb (void (* copy_fn) (void *, const char *, size_t), void *data, const char *format, const char * const args[], int num_args) { int at_arg = 0; const char *cp; int precision; int width; int len; const char *value; int total; int left; int i; if (!copy_fn) copy_fn = dummy_copy_fn; total = 0; cp = format; while (*cp) { /* Piece of raw string */ if (*cp != '%') { len = strcspn (cp, "%"); copy_fn (data, cp, len); total += len; cp += len; continue; } cp++; /* An literal percent sign? */ if (*cp == '%') { copy_fn (data, "%", 1); total++; cp++; continue; } value = NULL; left = 0; precision = -1; width = -1; /* Test for positional argument. */ if (*cp >= '0' && *cp <= '9') { /* Look-ahead parsing, otherwise skipped */ if (cp[strspn (cp, "0123456789")] == '$') { unsigned int n = 0; for (i = 0; i < 6 && *cp >= '0' && *cp <= '9'; i++, cp++) { n = 10 * n + (*cp - '0'); } /* Positional argument 0 is invalid. */ if (n == 0) { errno = EINVAL; return -1; } /* Positional argument N too high */ if (n > num_args) { errno = EINVAL; return -1; } value = args[n - 1]; cp++; /* $ */ } } /* Read the supported flags. */ for (; ; cp++) { if (*cp == '-') left = 1; /* Supported but ignored */ else if (*cp != ' ') break; } /* Parse the width. */ if (*cp >= '0' && *cp <= '9') { width = 0; for (i = 0; i < 6 && *cp >= '0' && *cp <= '9'; i++, cp++) { width = 10 * width + (*cp - '0'); } } /* Parse the precision. */ if (*cp == '.') { precision = 0; for (i = 0, cp++; i < 6 && *cp >= '0' && *cp <= '9'; cp++, i++) { precision = 10 * precision + (*cp - '0'); } } /* Read the conversion character. */ switch (*cp++) { case 's': /* Non-positional argument */ if (value == NULL) { /* Too many arguments used */ if (at_arg == num_args) { errno = EINVAL; return -1; } value = args[at_arg++]; } break; /* No other conversion characters are supported */ default: errno = EINVAL; return -1; } /* How many characters are we printing? */ len = strlen (value); if (precision >= 0) len = MIN (precision, len); /* Do we need padding? */ safe_padding (left ? 0 : width - len, &total, copy_fn, data); /* The actual data */; copy_fn (data, value, len); total += len; /* Do we need padding? */ safe_padding (left ? width - len : 0, &total, copy_fn, data); } return total; } static const char ** valist_to_args (va_list va, int *num_args) { int alo_args; const char **args; const char *arg; void *mem; *num_args = alo_args = 0; args = NULL; for (;;) { arg = va_arg (va, const char *); if (arg == NULL) break; if (*num_args == alo_args) { alo_args += 8; mem = realloc (args, sizeof (const char *) * alo_args); if (!mem) { free (args); return NULL; } args = mem; } args[(*num_args)++] = arg; } return args; } struct sprintf_ctx { char *data; size_t length; size_t alloc; }; static void snprintf_copy_fn (void *data, const char *piece, size_t length) { struct sprintf_ctx *cx = data; /* Don't copy if too much data */ if (cx->length > cx->alloc) length = 0; else if (cx->length + length > cx->alloc) length = cx->alloc - cx->length; if (length > 0) memcpy (cx->data + cx->length, piece, length); /* Null termination happens later */ cx->length += length; } int safe_format_string (char *str, size_t len, const char *format, ...) { struct sprintf_ctx cx; int num_args; va_list va; const char **args; int error = 0; int ret; cx.data = str; cx.length = 0; cx.alloc = len; va_start (va, format); args = valist_to_args (va, &num_args); va_end (va); if (args == NULL) { errno = ENOMEM; return -1; } if (len) cx.data[0] = '\0'; ret = safe_format_string_cb (snprintf_copy_fn, &cx, format, args, num_args); if (ret < 0) { error = errno; } else if (len > 0) { cx.data[MIN (cx.length, len - 1)] = '\0'; } free (args); if (error) errno = error; return ret; } realmd-0.17.1/service/realm-ini-config.c0000644003225100322510000007770614046520517020325 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-settings.h" #include "realm-ini-config.h" #include #include #include #include #include #define REALM_INI_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), REALM_TYPE_INI_CONFIG, RealmIniConfigClass)) #define REALM_IS_INI_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), REALM_TYPE_INI_CONFIG)) #define REALM_INI_CONFIG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), REALM_TYPE_INI_CONFIG, RealmIniConfigClass)) typedef struct _ConfigLine { gchar *name; GBytes *bytes; struct _ConfigLine *prev; struct _ConfigLine *next; } ConfigLine; typedef struct { GHashTable *parameters; ConfigLine *head; ConfigLine *tail; } ConfigSection; struct _RealmIniConfig { GObject parent; gint flags; GHashTable *sections; ConfigLine *head; ConfigLine *tail; gboolean changing; gchar *filename; GFileMonitor *monitor; gulong monitor_sig; guint reload_scheduled; }; typedef struct { GObjectClass parent_class; } RealmIniConfigClass; enum { PROP_0, PROP_FLAGS }; enum { CHANGED, NUM_SIGNALS }; static guint signals[NUM_SIGNALS] = { 0, }; G_DEFINE_TYPE (RealmIniConfig, realm_ini_config, G_TYPE_OBJECT); static guint conf_str_hash (gconstpointer v) { const signed char *p; guint32 h = 5381; /* Case insensitive for ascii */ for (p = v; *p != '\0'; p++) h = (h << 5) + h + g_ascii_tolower (*p); return h; } static gboolean conf_str_equal (gconstpointer v1, gconstpointer v2) { const gchar *string1 = v1; const gchar *string2 = v2; /* Case insensitive for ascii */ return g_ascii_strcasecmp (string1, string2) == 0; } static void config_section_free (gpointer data) { ConfigSection *sect = data; g_hash_table_destroy (sect->parameters); g_free (sect); } static void config_line_free (gpointer data) { ConfigLine *line = data; g_free (line->name); g_bytes_unref (line->bytes); g_free (line); } static void realm_ini_config_init (RealmIniConfig *self) { self->sections = g_hash_table_new_full (conf_str_hash, conf_str_equal, NULL, config_section_free); } static void realm_ini_config_set_property (GObject *obj, guint prop_id, const GValue *value, GParamSpec *pspec) { RealmIniConfig *self = REALM_INI_CONFIG (obj); switch (prop_id) { case PROP_FLAGS: self->flags = g_value_get_int (value); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec); break; } } static gboolean on_changes_reload_file (gpointer user_data) { RealmIniConfig *self = REALM_INI_CONFIG (user_data); realm_ini_config_reload (self); return FALSE; /* don't call this timeout again */ } static void on_directory_changed (GFileMonitor *monitor, GFile *file, GFile *other_file, GFileMonitorEvent event_type, gpointer user_data) { RealmIniConfig *self = REALM_INI_CONFIG (user_data); gchar *event_base; gchar *our_base; switch (event_type) { case G_FILE_MONITOR_EVENT_CHANGED: case G_FILE_MONITOR_EVENT_CREATED: case G_FILE_MONITOR_EVENT_DELETED: break; default: return; } if (!self->filename) return; event_base = g_file_get_basename (file); our_base = g_path_get_basename (self->filename); /* If it's our file, then schedule a reload */ if (g_strcmp0 (event_base, our_base) == 0) { if (self->reload_scheduled == 0) self->reload_scheduled = g_timeout_add (1, on_changes_reload_file, self); } g_free (event_base); g_free (our_base); } const gchar * realm_ini_config_get_filename (RealmIniConfig *self) { return self->filename; } void realm_ini_config_set_filename (RealmIniConfig *self, const gchar *filename) { GError *error = NULL; GFile *directory; GFile *file; /* Already connected to this filename */ if (g_strcmp0 (self->filename, filename) == 0) return; if (self->monitor) { g_signal_handler_disconnect (self->monitor, self->monitor_sig); g_object_unref (self->monitor); self->monitor = NULL; self->monitor_sig = 0; } if (self->reload_scheduled) g_source_remove (self->reload_scheduled); self->reload_scheduled = 0; g_free (self->filename); self->filename = NULL; if (!filename) return; self->filename = g_strdup (filename); /* * Setup a file monitor. Have to monitor directory, since the file * could theoretically not exist yet. */ if (!(self->flags & REALM_INI_NO_WATCH)) { file = g_file_new_for_path (self->filename); directory = g_file_get_parent (file); self->monitor = g_file_monitor_directory (directory, G_FILE_MONITOR_NONE, NULL, &error); if (error == NULL) { self->monitor_sig = g_signal_connect (self->monitor, "changed", G_CALLBACK (on_directory_changed), self); } else { g_warning ("Couldn't monitor directory: %s", error->message); g_error_free (error); } g_object_unref (directory); g_object_unref (file); } } static void reset_config_data (RealmIniConfig *self) { ConfigLine *line, *next; g_hash_table_remove_all (self->sections); for (line = self->head; line != NULL; line = next) { next = line->next; config_line_free (line); } self->head = NULL; self->tail = NULL; } static void realm_ini_config_finalize (GObject *obj) { RealmIniConfig *self = REALM_INI_CONFIG (obj); /* Should free filename and clear up monitors */ realm_ini_config_set_filename (self, NULL); reset_config_data (self); g_hash_table_destroy (self->sections); G_OBJECT_CLASS (realm_ini_config_parent_class)->finalize (obj); } static void realm_ini_config_class_init (RealmIniConfigClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->set_property = realm_ini_config_set_property; object_class->finalize = realm_ini_config_finalize; g_object_class_install_property (object_class, PROP_FLAGS, g_param_spec_int ("flags", "Flags", "Ini file flags", 0, G_MAXINT, 0, G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS)); signals[CHANGED] = g_signal_new ("changed", REALM_TYPE_INI_CONFIG, G_SIGNAL_RUN_FIRST, 0, NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 0); } enum { NONE, COMMENT, SECTION, PARAMETER, INVALID }; static gint parse_config_line_type_and_name (GBytes *bytes, gchar **name) { const gchar *from; const gchar *end; const gchar *at; gsize len; *name = NULL; at = g_bytes_get_data (bytes, &len); end = at + len; /* Skip initial spaces */ while (at < end && g_ascii_isspace (*at)) at++; if (at == end) return NONE; /* A comment? */ if (*at == '#' || *at == ';') return COMMENT; /* A section? */ if (*at == '[') { at++; from = at; while (at < end && *at != ']' && *at != '\n') at++; if (at < end && *at == ']' && at > from) { *name = g_strndup (from, at - from); return SECTION; } return NONE; } /* A parameter? */ from = at; at = memchr (from, '=', end - from); if (at != NULL && at > from) { while (at - 1 > from && g_ascii_isspace (*(at - 1))) at--; if (at > from) { *name = g_strndup (from, at - from); return PARAMETER; } } return INVALID; } static void remove_new_lines (RealmIniConfig *self, GString *value) { gsize offset = 0; /* Remove all \r charaters from DOS style endings */ for (;;) { gchar *at = strchr (value->str + offset, '\r'); if (at == NULL) break; g_string_erase (value, at - value->str, 1); } offset = 0; /* Remove all \n characters, including escaped newlines */ for (;;) { gchar *at = strchr (value->str + offset, '\n'); if (at == NULL) break; if ((self->flags & REALM_INI_LINE_CONTINUATIONS) && (at > value->str && *(at - 1) == '\\')) g_string_erase (value, (at - 1) - value->str, 2); else g_string_erase (value, at - value->str, 1); } } static gchar * parse_config_line_value (RealmIniConfig *self, GBytes *bytes) { GString *value; const gchar *end; const gchar *at; gsize len; at = g_bytes_get_data (bytes, &len); end = at + len; /* Should always have an = when parsed */ at = memchr (at, '=', end - at); g_return_val_if_fail (at != NULL, NULL); at++; /* Skip spaces after equal */ while (at < end && g_ascii_isspace (*at)) at++; value = g_string_new_len (at, end - at); /* Remove any continuations and line endings */ remove_new_lines (self, value); return g_strstrip (g_string_free (value, FALSE)); } static void append_config_line (RealmIniConfig *self, ConfigLine *line) { if (self->tail == NULL) { self->head = line; self->tail = line; } else { self->tail->next = line; line->prev = self->tail; self->tail = line; } } static void insert_config_line (RealmIniConfig *self, ConfigLine *after, ConfigLine *line) { g_assert (after != NULL); g_assert (line != NULL); line->next = after->next; line->prev = after; if (after->next) after->next->prev = line; after->next = line; if (after == self->tail) self->tail = line; } static void remove_config_line (RealmIniConfig *self, ConfigLine *line) { g_assert (line != NULL); /* We only get called for parameters in sections */ g_assert (line->prev != NULL); g_assert (self->head != line); if (line->next) line->next->prev = line->prev; line->prev->next = line->next; } static void parse_config_line (RealmIniConfig *self, GBytes *bytes, ConfigSection **current) { ConfigSection *sect; ConfigLine *line; gchar *name = NULL; gint type; line = g_new0 (ConfigLine, 1); line->bytes = g_bytes_ref (bytes); /* What kind of line is this? */ type = parse_config_line_type_and_name (bytes, &name); switch (type) { case SECTION: sect = g_hash_table_lookup (self->sections, name); if (sect == NULL) { sect = g_new0 (ConfigSection, 1); sect->parameters = g_hash_table_new (conf_str_hash, conf_str_equal); g_hash_table_replace (self->sections, name, sect); sect->head = line; sect->tail = line; } *current = sect; break; case PARAMETER: if (*current != NULL) g_hash_table_insert ((*current)->parameters, name, line); break; } line->name = name; append_config_line (self, line); /* Add this line as the end of the current section */ if (type != NONE && type != COMMENT && *current != NULL) (*current)->tail = line; } static void parse_config_bytes (RealmIniConfig *self, GBytes *bytes) { ConfigSection *current; GBytes *line; const gchar *beg; const gchar *end; const gchar *at; const gchar *from; gsize len; /* Clear the current data */ reset_config_data (self); current = NULL; beg = from = at = g_bytes_get_data (bytes, &len); end = at + len; for (;;) { const gchar *search = at; at = memchr (search, '\n', end - search); if (at == NULL) { line = g_bytes_new_from_bytes (bytes, from - beg, end - from); } else { const gchar *last = at > search ? at - 1 : NULL; at++; /* Line continuation */ if ((self->flags & REALM_INI_LINE_CONTINUATIONS) && (last != NULL && *last == '\\')) continue; line = g_bytes_new_from_bytes (bytes, from - beg, at - from); } parse_config_line (self, line, ¤t); g_bytes_unref (line); if (at == NULL) break; from = at; } if (!self->changing) g_signal_emit (self, signals[CHANGED], 0); } void realm_ini_config_read_string (RealmIniConfig *self, const gchar *data) { GBytes *bytes; g_return_if_fail (REALM_IS_INI_CONFIG (self)); g_return_if_fail (data != NULL); bytes = g_bytes_new (data, strlen (data)); realm_ini_config_read_bytes (self, bytes); g_bytes_unref (bytes); } void realm_ini_config_read_bytes (RealmIniConfig *self, GBytes *bytes) { g_return_if_fail (REALM_IS_INI_CONFIG (self)); g_return_if_fail (bytes != NULL); realm_ini_config_set_filename (self, NULL); parse_config_bytes (self, bytes); } static GString * write_to_string (RealmIniConfig *self) { ConfigLine *line; GString *result; const gchar *data; gsize len; result = g_string_sized_new (4096); for (line = self->head; line != NULL; line = line->next) { /* * Add \n between lines if not already present. This happens * if the file was parsed without a trailing \n, and then * stuff was added to the end. */ if (result->len > 0 && result->str[result->len - 1] != '\n') g_string_append_c (result, '\n'); data = g_bytes_get_data (line->bytes, &len); g_string_append_len (result, data, len); } return result; } gchar * realm_ini_config_write_string (RealmIniConfig *self) { GString *result; g_return_val_if_fail (REALM_IS_INI_CONFIG (self), NULL); result = write_to_string (self); return g_string_free (result, FALSE); } GBytes * realm_ini_config_write_bytes (RealmIniConfig *self) { GString *result; gsize len; g_return_val_if_fail (REALM_IS_INI_CONFIG (self), NULL); result = write_to_string (self); len = result->len; return g_bytes_new_take (g_string_free (result, FALSE), len); } gboolean realm_ini_config_read_file (RealmIniConfig *self, const gchar *filename, GError **error) { GError *err = NULL; GBytes *bytes; gchar *contents; gsize length; g_return_val_if_fail (REALM_IS_INI_CONFIG (self), FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); if (filename == NULL) { g_return_val_if_fail (self->filename != NULL, FALSE); filename = self->filename; } g_file_get_contents (filename, &contents, &length, &err); /* Ignore errors of the file not existing */ if (g_error_matches (err, G_FILE_ERROR, G_FILE_ERROR_NOENT)) g_clear_error (&err); if (err != NULL) { g_propagate_error (error, err); return FALSE; } bytes = g_bytes_new_take (contents, length); parse_config_bytes (self, bytes); g_bytes_unref (bytes); realm_ini_config_set_filename (self, filename); return TRUE; } gboolean realm_ini_config_write_file (RealmIniConfig *self, const gchar *filename, GError **error) { GBytes *bytes; gboolean ret = TRUE; const gchar *contents; mode_t mask = 0; gsize length; g_return_val_if_fail (REALM_IS_INI_CONFIG (self), FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); if (filename == NULL) { g_return_val_if_fail (self->filename != NULL, FALSE); filename = self->filename; } bytes = realm_ini_config_write_bytes (self); g_return_val_if_fail (bytes != NULL, FALSE); contents = g_bytes_get_data (bytes, &length); /* * If not writing any data, and no file is present, don't * write an empty file. */ if (length > 0 || g_file_test (filename, G_FILE_TEST_EXISTS)) { if (self->flags & REALM_INI_PRIVATE) mask = umask (S_IRWXG | S_IRWXO); ret = g_file_set_contents (filename, contents, length, error); if (self->flags & REALM_INI_PRIVATE) umask (mask); } g_bytes_unref (bytes); if (ret) realm_ini_config_set_filename (self, filename); return ret; } gboolean realm_ini_config_write_fd (RealmIniConfig *self, gint fd, GError **error) { GBytes *bytes; gboolean ret = TRUE; const gchar *contents; gint result; gsize length; gint errn; g_return_val_if_fail (REALM_IS_INI_CONFIG (self), FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); bytes = realm_ini_config_write_bytes (self); g_return_val_if_fail (bytes != NULL, FALSE); contents = g_bytes_get_data (bytes, &length); while (length > 0) { result = write (fd, contents, length); if (result < 0) { if (errno != EINTR && errno != EAGAIN) { errn = errno; g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errn), _("Couldn't write out config: %s"), g_strerror (errn)); ret = FALSE; break; } result = 0; } g_return_val_if_fail (result <= length, FALSE); contents += result; length -= result; } g_bytes_unref (bytes); if (ret) realm_ini_config_set_filename (self, NULL); return ret; } static void config_set_value (RealmIniConfig *self, const gchar *section, const gchar *name, const gchar *value) { ConfigSection *sect; ConfigLine *line; gchar *data; g_return_if_fail (strchr (section, ']') == NULL); g_return_if_fail (strchr (section, '[') == NULL); g_return_if_fail (name != NULL); g_return_if_fail (strchr (name, '=') == NULL); g_return_if_fail (strchr (name, '\n') == NULL); g_return_if_fail (value == NULL || strchr (value ? value : NULL, '\n') == NULL); sect = g_hash_table_lookup (self->sections, section); if (sect == NULL) { /* No such section, and removing */ if (value == NULL) return; /* A blank line */ line = g_new0 (ConfigLine, 1); line->bytes = g_bytes_new ("\n", 1); line->name = NULL; append_config_line (self, line); /* The actual section header */ data = g_strdup_printf ("[%s]\n", section); line = g_new0 (ConfigLine, 1); line->bytes = g_bytes_new_take (data, strlen (data)); line->name = g_strdup (section); append_config_line (self, line); /* Register it */ sect = g_new0 (ConfigSection, 1); sect->parameters = g_hash_table_new (conf_str_hash, conf_str_equal); sect->head = sect->tail = line; g_hash_table_replace (self->sections, line->name, sect); } line = g_hash_table_lookup (sect->parameters, name); /* Removing this parameter? */ if (value == NULL) { if (line != NULL) { if (sect->tail == line) sect->tail = line->prev; /* head points to [section] line, not parameter */ g_assert (sect->head != line); remove_config_line (self, line); if (!g_hash_table_remove (sect->parameters, line->name)) g_assert_not_reached (); config_line_free (line); } return; } data = g_strdup_printf ("%s = %s\n", name, value); /* Don't have this line, add to section */ if (line == NULL) { line = g_new0 (ConfigLine, 1); line->bytes = g_bytes_new_take (data, strlen (data)); line->name = g_strdup (name); insert_config_line (self, sect->tail, line); g_hash_table_insert (sect->parameters, line->name, line); /* Already have this line, replace the data */ } else { g_bytes_unref (line->bytes); line->bytes = g_bytes_new_take (data, strlen (data)); } } void realm_ini_config_set (RealmIniConfig *self, const gchar *section, const gchar *name, const gchar *value, ...) { va_list va; g_return_if_fail (REALM_IS_INI_CONFIG (self)); g_return_if_fail (section != NULL); va_start (va, value); while (name != NULL) { config_set_value (self, section, name, value); name = va_arg (va, const gchar *); if (name != NULL) value = va_arg (va, const gchar *); } va_end (va); if (!self->changing) g_signal_emit (self, signals[CHANGED], 0); } gchar * realm_ini_config_get (RealmIniConfig *self, const gchar *section, const gchar *name) { ConfigSection *sect; ConfigLine *line; g_return_val_if_fail (REALM_IS_INI_CONFIG (self), NULL); g_return_val_if_fail (section != NULL, NULL); g_return_val_if_fail (name != NULL, NULL); sect = g_hash_table_lookup (self->sections, section); if (sect == NULL) return NULL; line = g_hash_table_lookup (sect->parameters, name); if (line == NULL) return NULL; return parse_config_line_value (self, line->bytes); } gboolean realm_ini_config_have (RealmIniConfig *self, const gchar *section, const gchar *name) { ConfigSection *sect; ConfigLine *line; g_return_val_if_fail (REALM_IS_INI_CONFIG (self), FALSE); g_return_val_if_fail (section != NULL, FALSE); g_return_val_if_fail (name != NULL, FALSE); sect = g_hash_table_lookup (self->sections, section); if (sect == NULL) return FALSE; line = g_hash_table_lookup (sect->parameters, name); if (line == NULL) return FALSE; return TRUE; } GHashTable * realm_ini_config_get_all (RealmIniConfig *self, const gchar *section) { GHashTableIter iter; ConfigSection *sect; GHashTable *result; const gchar *name; ConfigLine *line; g_return_val_if_fail (REALM_IS_INI_CONFIG (self), NULL); g_return_val_if_fail (section != NULL, NULL); sect = g_hash_table_lookup (self->sections, section); if (sect == NULL) return NULL; result = g_hash_table_new_full (conf_str_hash, conf_str_equal, g_free, g_free); g_hash_table_iter_init (&iter, sect->parameters); while (g_hash_table_iter_next (&iter, (gpointer *)&name, (gpointer *)&line)) g_hash_table_replace (result, g_strdup (name), parse_config_line_value (self, line->bytes)); return result; } void realm_ini_config_set_all (RealmIniConfig *self, const gchar *section, GHashTable *parameters) { GHashTableIter iter; const gchar *name; const gchar *value; g_return_if_fail (REALM_IS_INI_CONFIG (self)); g_return_if_fail (section != NULL); g_return_if_fail (parameters != NULL); g_hash_table_iter_init (&iter, parameters); while (g_hash_table_iter_next (&iter, (gpointer *)&name, (gpointer *)&value)) config_set_value (self, section, name, value); if (!self->changing) g_signal_emit (self, signals[CHANGED], 0); } gchar ** realm_ini_config_get_list (RealmIniConfig *self, const gchar *section, const gchar *name, const gchar *delimiters) { gchar **values; gchar *value; gint i; g_return_val_if_fail (REALM_IS_INI_CONFIG (self), NULL); g_return_val_if_fail (section != NULL, NULL); g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (delimiters != NULL, NULL); value = realm_ini_config_get (self, section, name); if (value == NULL) return NULL; values = g_strsplit_set (value, delimiters, -1); for (i = 0; values[i] != NULL; i++) values[i] = g_strstrip (values[i]); g_free (value); return values; } void realm_ini_config_set_list (RealmIniConfig *self, const gchar *section, const gchar *name, const gchar *delimiter, const gchar **values) { gchar *value; g_return_if_fail (REALM_IS_INI_CONFIG (self)); g_return_if_fail (section != NULL); g_return_if_fail (name != NULL); g_return_if_fail (delimiter != NULL); value = g_strjoinv (delimiter, (gchar **)values); realm_ini_config_set (self, section, name, value, NULL); g_free (value); } void realm_ini_config_set_list_diff (RealmIniConfig *self, const gchar *section, const gchar *name, const gchar *delimiter, const gchar **add, const gchar **remove) { GPtrArray *changed; gchar *value; gint i, j; gchar **original; gchar *delim; g_return_if_fail (REALM_IS_INI_CONFIG (self)); g_return_if_fail (section != NULL); g_return_if_fail (name != NULL); original = realm_ini_config_get_list (self, section, name, delimiter); changed = g_ptr_array_new (); /* Filter the remove values */ for (i = 0; original != NULL && original[i] != NULL; i++) { value = g_strstrip (g_strdup (original[i])); for (j = 0; remove != NULL && remove[j] != NULL; j++) { if (g_ascii_strcasecmp (remove[j], value) == 0) break; } if ((remove == NULL || remove[j] == NULL) && !g_str_equal (value, "")) g_ptr_array_add (changed, value); else g_free (value); } /* Add new values */ for (j = 0; add != NULL && add[j] != NULL; j++) { for (i = 0; original != NULL && original[i] != NULL; i++) { if (g_ascii_strcasecmp (add[j], original[i]) == 0) break; } if (original == NULL || original[i] == NULL) g_ptr_array_add (changed, g_strdup (add[j])); } g_ptr_array_add (changed, NULL); g_strfreev (original); delim = g_strdup_printf ("%c ", delimiter[0]); realm_ini_config_set_list (self, section, name, delim, (const gchar **)changed->pdata); g_ptr_array_free (changed, TRUE); g_free (delim); } gchar ** realm_ini_config_get_sections (RealmIniConfig *self) { GHashTableIter iter; gpointer section; gchar **sections; gint i = 0; g_return_val_if_fail (REALM_IS_INI_CONFIG (self), NULL); sections = g_new0 (gchar *, g_hash_table_size (self->sections) + 1); g_hash_table_iter_init (&iter, self->sections); while (g_hash_table_iter_next (&iter, §ion, NULL)) sections[i++] = g_strdup (section); return sections; } gboolean realm_ini_config_get_boolean (RealmIniConfig *config, const gchar *section, const gchar *name, gboolean defahlt) { gboolean ret; gchar *value; g_return_val_if_fail (REALM_IS_INI_CONFIG (config), FALSE); g_return_val_if_fail (section != NULL, FALSE); g_return_val_if_fail (name != NULL, FALSE); value = realm_ini_config_get (config, section, name); if (value == NULL) { ret = defahlt; } else if (g_ascii_strcasecmp (value, "true") == 0) { ret = TRUE; } else if (g_ascii_strcasecmp (value, "false") == 0) { ret = FALSE; } else if (config->flags & REALM_INI_STRICT_BOOLEAN) { g_warning ("Invalid %s boolean value for %s field: %s", value, config->filename ? config->filename : "", name); ret = defahlt; } else if (g_ascii_strcasecmp (value, "1") == 0 || g_ascii_strcasecmp (value, "yes") == 0) { ret = TRUE; } else if (g_ascii_strcasecmp (value, "0") == 0 || g_ascii_strcasecmp (value, "no") == 0) { ret = FALSE; } else { g_warning ("Invalid %s boolean value for %s field: %s", value, config->filename ? config->filename : "", name); ret = defahlt; } g_free (value); return ret; } gboolean realm_ini_config_have_section (RealmIniConfig *self, const gchar *section) { g_return_val_if_fail (REALM_IS_INI_CONFIG (self), FALSE); g_return_val_if_fail (section != NULL, FALSE); return g_hash_table_lookup (self->sections, section) != NULL; } static gboolean is_blank_line (GBytes *bytes) { const gchar *data; gsize length; data = g_bytes_get_data (bytes, &length); return (length == 1 && data[0] == '\n'); } void realm_ini_config_remove_section (RealmIniConfig *self, const gchar *section) { ConfigSection *sect; ConfigLine *head, *tail, *line, *next; g_return_if_fail (REALM_IS_INI_CONFIG (self)); g_return_if_fail (section != NULL); sect = g_hash_table_lookup (self->sections, section); if (sect == NULL) return; g_assert (sect->head != NULL); g_assert (sect->tail != NULL); head = sect->head; tail = sect->tail; /* * If the prior line is a blank line, remove that too. * This matches the behavior of config_set_value() so that * when we add/remove sections we don't get a file full of * empty lines. */ if (head->prev != NULL) { if (is_blank_line (head->prev->bytes)) head = head->prev; } /* Remove this section from the config file */ if (head->prev) head->prev->next = tail->next; if (sect->tail->next) tail->next->prev = head->prev; if (self->head == head) self->head = tail->next; if (self->tail == tail) self->tail = head->prev; head->prev = NULL; tail->next = NULL; g_hash_table_remove (self->sections, section); for (line = head; line != NULL; line = next) { next = line->next; config_line_free (line); } if (!self->changing) g_signal_emit (self, signals[CHANGED], 0); } gboolean realm_ini_config_change (RealmIniConfig *self, const gchar *section, GError **error, ...) { GHashTable *parameters; const gchar *name; const gchar *value; gboolean ret; va_list va; g_return_val_if_fail (section != NULL, FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); parameters = g_hash_table_new (g_str_hash, g_str_equal); va_start (va, error); while ((name = va_arg (va, const gchar *)) != NULL) { value = va_arg (va, const gchar *); g_hash_table_insert (parameters, (gpointer)name, (gpointer)value); } va_end (va); ret = realm_ini_config_changev (self, section, parameters, error); g_hash_table_unref (parameters); return ret; } gboolean realm_ini_config_changev (RealmIniConfig *self, const gchar *section, GHashTable *parameters, GError **error) { g_return_val_if_fail (REALM_IS_INI_CONFIG (self), FALSE); g_return_val_if_fail (section != NULL, FALSE); g_return_val_if_fail (parameters != NULL, FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); if (!realm_ini_config_begin_change (self, error)) return FALSE; realm_ini_config_set_all (self, section, parameters); return realm_ini_config_finish_change (self, error); } gboolean realm_ini_config_change_list (RealmIniConfig *self, const gchar *section, const gchar *name, const gchar *delimiters, const gchar **add, const gchar **remove, GError **error) { g_return_val_if_fail (REALM_IS_INI_CONFIG (self), FALSE); g_return_val_if_fail (section != NULL, FALSE); g_return_val_if_fail (name != NULL, FALSE); g_return_val_if_fail (delimiters != NULL, FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); if (!realm_ini_config_begin_change (self, error)) return FALSE; realm_ini_config_set_list_diff (self, section, name, delimiters, add, remove); return realm_ini_config_finish_change (self, error); } void realm_ini_config_reset (RealmIniConfig *self) { g_return_if_fail (REALM_IS_INI_CONFIG (self)); reset_config_data (self); if (!self->changing) g_signal_emit (self, signals[CHANGED], 0); } void realm_ini_config_reload (RealmIniConfig *self) { GError *error = NULL; g_return_if_fail (self->filename != NULL); self->reload_scheduled = 0; realm_ini_config_read_file (self, NULL, &error); if (error != NULL) { g_warning ("Couldn't reload config file: %s: %s", self->filename, error->message); g_clear_error (&error); } } RealmIniConfig * realm_ini_config_new (RealmIniFlags flags) { return g_object_new (REALM_TYPE_INI_CONFIG, "flags", flags, NULL); } gboolean realm_ini_config_begin_change (RealmIniConfig *self, GError **error) { g_return_val_if_fail (REALM_IS_INI_CONFIG (self), FALSE); g_return_val_if_fail (self->changing == FALSE, FALSE); self->changing = TRUE; if (!realm_ini_config_read_file (self, NULL, error)) { self->changing = FALSE; return FALSE; } return TRUE; } void realm_ini_config_abort_change (RealmIniConfig *self) { if (!self->changing) { g_warning ("A realm_ini_config_begin_change() was not matched " "correctly with realm_ini_config_abort_change()"); return; } self->changing = FALSE; g_signal_emit (self, signals[CHANGED], 0); } gboolean realm_ini_config_finish_change (RealmIniConfig *self, GError **error) { gboolean ret; g_return_val_if_fail (REALM_IS_INI_CONFIG (self), FALSE); if (!self->changing) { g_warning ("A realm_ini_config_begin_change() was not matched " "correctly with realm_ini_config_finish_change()"); return FALSE; } self->changing = FALSE; ret = realm_ini_config_write_file (self, NULL, error); g_signal_emit (self, signals[CHANGED], 0); return ret; } realmd-0.17.1/service/realm-kerberos-config.c0000644003225100322510000000637414315003533021344 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2020 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Sumit Bose */ #include "config.h" #include "realm-ini-config.h" #include "realm-kerberos-config.h" #include "realm-settings.h" #include RealmIniConfig * realm_kerberos_config_new_with_flags (RealmIniFlags flags, GError **error) { RealmIniConfig *config; const gchar *filename; GError *err = NULL; config = realm_ini_config_new (REALM_INI_LINE_CONTINUATIONS | flags); filename = realm_settings_path ("krb5.conf"); realm_ini_config_read_file (config, filename, &err); if (err != NULL) { /* If the caller wants errors, then don't return an invalid samba config */ if (error) { g_propagate_error (error, err); g_object_unref (config); config = NULL; /* If the caller doesn't care, then warn but continue */ } else { g_warning ("Couldn't load config file: %s: %s", filename, err->message); g_error_free (err); } } return config; } RealmIniConfig * realm_kerberos_config_new (GError **error) { return realm_kerberos_config_new_with_flags (REALM_INI_NONE, error); } gboolean configure_krb5_conf_for_domain (const gchar *realm, GError **error ) { RealmIniConfig *config; gboolean res; GFile *gfile; GFileInfo *file_info = NULL; const char *file_attributes = "unix::mode,unix::uid,unix::gid,selinux::*,xattr-sys::*"; config = realm_kerberos_config_new (error); if (config == NULL) { return FALSE; } /* When writing to a file glib will replace the original file with a * new one. To make sure permissions and other attributes like e.g. * SELinux labels stay the same this information is saved before the * change and applied to the new file afterwards. */ gfile = g_file_new_for_path (realm_ini_config_get_filename (config)); file_info = g_file_query_info (gfile, file_attributes, 0, NULL, error); g_object_unref (gfile); if (*error != NULL) { g_warning ("Couldn't load file attributes, " "will continue without: %s: %s", realm_ini_config_get_filename (config), (*error)->message); g_clear_error (error); } if (!realm_ini_config_begin_change (config, error)) { g_object_unref (config); return FALSE; } realm_ini_config_set (config, "libdefaults", "default_realm", realm, "udp_preference_limit", "0", NULL); res = realm_ini_config_finish_change (config, error); if (file_info != NULL) { gfile = g_file_new_for_path (realm_ini_config_get_filename (config)); if (!g_file_set_attributes_from_info (gfile, file_info, 0, NULL, error)) { g_warning ("Couldn't set file attributes: %s: %s", realm_ini_config_get_filename (config), (*error)->message); } g_object_unref (file_info); g_object_unref (gfile); } g_object_unref (config); return res; } realmd-0.17.1/service/Makefile.am0000664003225100322510000001020114216036521017044 0ustar00sbosesbose00000000000000libexec_PROGRAMS += \ realmd REALMD_CONFIGS = \ service/realmd-defaults.conf \ service/realmd-redhat.conf \ service/realmd-debian.conf \ service/realmd-suse.conf \ $(NULL) private_DATA += \ service/realmd-defaults.conf polkit_policydir = $(POLKIT_ACTION_DIR) polkit_policy_in_files = service/org.freedesktop.realmd.policy.in polkit_policy_DATA = $(polkit_policy_in_files:.policy.in=.policy) service/%.policy: service/%.policy.in $(AM_V_GEN)$(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@ realmd_SOURCES = \ service/realm-adcli-enroll.c \ service/realm-adcli-enroll.h \ service/realm-all-provider.c \ service/realm-all-provider.h \ service/realm-command.c \ service/realm-command.h \ service/realm-credential.c \ service/realm-credential.h \ service/realm-daemon.c \ service/realm-daemon.h \ service/realm-diagnostics.c \ service/realm-diagnostics.h \ service/realm-disco.c \ service/realm-disco.h \ service/realm-disco-dns.c \ service/realm-disco-dns.h \ service/realm-disco-domain.c \ service/realm-disco-domain.h \ service/realm-disco-mscldap.c \ service/realm-disco-mscldap.h \ service/realm-disco-rootdse.c \ service/realm-disco-rootdse.h \ service/realm-dn-util.c \ service/realm-dn-util.h \ service/realm-errors.c \ service/realm-errors.h \ service/realm-example.c \ service/realm-example.h \ service/realm-example-provider.c \ service/realm-example-provider.h \ service/realm-ini-config.c \ service/realm-ini-config.h \ service/realm-invocation.c \ service/realm-invocation.h \ service/realm-kerberos.c \ service/realm-kerberos.h \ service/realm-kerberos-config.c \ service/realm-kerberos-config.h \ service/realm-kerberos-membership.c \ service/realm-kerberos-membership.h \ service/realm-kerberos-provider.c \ service/realm-kerberos-provider.h \ service/realm-ldap.c \ service/realm-ldap.h \ service/realm-login-name.c \ service/realm-login-name.h \ service/realm-network.c \ service/realm-network.h \ service/realm-options.c \ service/realm-options.h \ service/realm-packages.c \ service/realm-packages.h \ service/realm-provider.c \ service/realm-provider.h \ service/realm-samba.c \ service/realm-samba.h \ service/realm-samba-config.c \ service/realm-samba-config.h \ service/realm-samba-enroll.c \ service/realm-samba-enroll.h \ service/realm-samba-provider.c \ service/realm-samba-provider.h \ service/realm-samba-winbind.c \ service/realm-samba-winbind.h \ service/realm-service.c \ service/realm-service.h \ service/realm-settings.c \ service/realm-settings.h \ service/realm-sssd.c \ service/realm-sssd.h \ service/realm-sssd-ad.c \ service/realm-sssd-ad.h \ service/realm-sssd-provider.c \ service/realm-sssd-provider.h \ service/realm-sssd-config.c \ service/realm-sssd-config.h \ service/realm-sssd-ipa.c \ service/realm-sssd-ipa.h \ service/realm-usleep-async.c \ service/realm-usleep-async.h \ service/safe-format-string.c \ service/safe-format-string.h \ $(NULL) realmd_CFLAGS = \ -I$(top_srcdir)/dbus \ -I$(top_srcdir)/build \ -DPRIVATE_DIR="\"$(privatedir)\"" \ -DSYSCONF_DIR="\"$(sysconfdir)\"" \ -DPROVIDER_DIR="\"$(privatedir)/provider.d\"" \ -DLOCALEDIR=\""$(datadir)/locale"\" \ -DSTATE_DIR="\"$(localstatedir)/lib/realmd\"" \ -DCACHEDIR="\"$(cachedir)\"" \ $(PACKAGEKIT_CFLAGS) \ $(POLKIT_CFLAGS) \ $(SYSTEMD_JOURNAL_CFLAGS) \ $(GLIB_CFLAGS) \ $(KRB5_CFLAGS) \ $(LDAP_CFLAGS) \ $(NULL) realmd_LDADD = \ librealm-dbus.a \ $(PACKAGEKIT_LIBS) \ $(POLKIT_LIBS) \ $(SYSTEMD_JOURNAL_LIBS) \ $(GLIB_LIBS) \ $(KRB5_LIBS) \ $(LDAP_LIBS) \ $(NULL) # Install and uninstall the config for this distro install-service: $(INSTALL_PROGRAM) -d $(DESTDIR)$(privatedir) $(INSTALL_PROGRAM) -d $(DESTDIR)$(localstatedir)/lib/realmd $(INSTALL_PROGRAM) -d $(DESTDIR)$(cachedir) $(INSTALL_DATA) $(srcdir)/service/realmd-$(DISTRO).conf $(DESTDIR)$(privatedir)/realmd-distro.conf uninstall-service: rm -f $(DESTDIR)$(privatedir)/realmd-distro.conf # ------------------------------------------------------------------ EXTRA_DIST += \ $(polkit_policy_in_files) \ $(REALMD_CONFIGS) \ $(private_DATA) \ $(provider_DATA) \ $(NULL) CLEANFILES += \ $(polkit_policy_DATA) \ $(NULL) realmd-0.17.1/service/realm-adcli-enroll.h0000644003225100322510000000364314046520517020642 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_ADCLI_ENROLL_H__ #define __REALM_ADCLI_ENROLL_H__ #include "realm-credential.h" #include "realm-disco.h" #include #include G_BEGIN_DECLS void realm_adcli_enroll_join_async (RealmDisco *disco, RealmCredential *cred, GVariant *options, gboolean use_ldaps, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_adcli_enroll_join_finish (GAsyncResult *result, GError **error); void realm_adcli_enroll_delete_async (RealmDisco *disco, RealmCredential *cred, GVariant *options, gboolean use_ldaps, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_adcli_enroll_delete_finish (GAsyncResult *result, GError **error); G_END_DECLS #endif /* __REALM_ADCLI_ENROLL_H__ */ realmd-0.17.1/service/realm-example-provider.h0000644003225100322510000000230114046520517021546 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_EXAMPLE_PROVIDER_H__ #define __REALM_EXAMPLE_PROVIDER_H__ #include #include "realm-provider.h" G_BEGIN_DECLS #define REALM_TYPE_EXAMPLE_PROVIDER (realm_example_provider_get_type ()) #define REALM_EXAMPLE_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_EXAMPLE_PROVIDER, RealmExampleProvider)) #define REALM_IS_EXAMPLE_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_EXAMPLE_PROVIDER)) typedef struct _RealmExampleProvider RealmExampleProvider; GType realm_example_provider_get_type (void) G_GNUC_CONST; RealmProvider * realm_example_provider_new (void); G_END_DECLS #endif /* __REALM_EXAMPLE_PROVIDER_H__ */ realmd-0.17.1/service/realm-dn-util.c0000644003225100322510000001306214046520517017640 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-dn-util.h" #include #include static gboolean berval_is_string (const struct berval *bv, const gchar *string, gsize length) { return (bv->bv_len == length && g_ascii_strncasecmp (bv->bv_val, string, length) == 0); } static gboolean berval_case_equals (const struct berval *v1, const struct berval *v2) { return (v1->bv_len == v2->bv_len && g_ascii_strncasecmp (v1->bv_val, v2->bv_val, v1->bv_len) == 0); } static gboolean dn_equals_domain (LDAPDN dn, const gchar *domain_dn_str, const gchar *domain) { LDAPDN domain_dn; gboolean ret; int rc; gint i, j; rc = ldap_str2dn (domain_dn_str, &domain_dn, LDAP_DN_FORMAT_LDAPV3); g_return_val_if_fail (rc == LDAP_SUCCESS, FALSE); for (i = 0; dn[i] != NULL && domain_dn[i] != NULL; i++) { for (j = 0; dn[i][j] != NULL && domain_dn[i][j] != NULL; j++) { if (!berval_case_equals (&(dn[i][j]->la_attr), &(domain_dn[i][j]->la_attr)) || !berval_case_equals (&(dn[i][j]->la_value), &(domain_dn[i][j]->la_value))) break; } if (dn[i][j] != NULL && domain_dn[i][j] != NULL) break; } /* Did we reach end of both DNs? */ ret = (dn[i] == NULL && domain_dn[i] == NULL); ldap_dnfree (domain_dn); return ret; } gchar * realm_dn_util_build_samba_ou (const gchar *ldap_dn, const gchar *domain) { gchar *domain_dn_str = NULL; GArray *parts; GString *part; gchar **strv; gchar *str; LDAPAVA* ava; gboolean ret; LDAPDN dn; int rc; gint i, j; /* * Here we convert a standard LDAP DN to the strange samba net format, * as "documented" here: * * createcomputer=OU Precreate the computer account in a specific OU. * The OU string read from top to bottom without RDNs and delimited by a '/'. * E.g. "createcomputer=Computers/Servers/Unix" * NB: A backslash '\' is used as escape at multiple levels and may * need to be doubled or even quadrupled. It is not used as a separator. */ /* ldap_str2dn doesn't like empty strings */ while (g_ascii_isspace (ldap_dn[0])) ldap_dn++; if (g_str_equal (ldap_dn, "")) return NULL; rc = ldap_str2dn (ldap_dn, &dn, LDAP_DN_FORMAT_LDAPV3); if (rc != LDAP_SUCCESS) return NULL; ret = TRUE; parts = g_array_new (TRUE, TRUE, sizeof (gchar *)); for (i = 0; dn[i] != NULL; i++) { ava = dn[i][0]; /* * Make sure this is a valid DN, we only support one value per * RDN, string values, and must be an OU. DC values are allowed * but only at the end of the DN. */ if (ava == NULL || dn[i][1] != NULL || !(ava->la_flags & LDAP_AVA_STRING)) { ret = FALSE; break; /* A DC, remainder must match the domain */ } else if (berval_is_string (&ava->la_attr, "DC", 2)) { rc = ldap_domain2dn (domain, &domain_dn_str); if (rc != LDAP_SUCCESS) ret = FALSE; else ret = dn_equals_domain (dn + i, domain_dn_str, domain); break; /* An OU, include */ } else if (berval_is_string (&ava->la_attr, "OU", 2)) { part = g_string_sized_new (ava->la_value.bv_len); for (j = 0; j < ava->la_value.bv_len; j++) { switch (ava->la_value.bv_val[j]) { case '\\': g_string_append (part, "\\\\"); break; case '/': g_string_append (part, "\\/"); break; default: g_string_append_c (part, ava->la_value.bv_val[j]); break; } } str = g_string_free (part, FALSE); g_array_insert_val (parts, 0, str); /* Invalid, stop */ } else { ret = FALSE; break; } } ldap_dnfree (dn); if (domain_dn_str) ldap_memfree (domain_dn_str); strv = (gchar **)g_array_free (parts, FALSE); str = NULL; /* Loop completed successfully */ if (ret) str = g_strjoinv ("/", strv); g_strfreev (strv); return str; } gchar * realm_dn_util_build_qualified (const gchar *ldap_dn, const gchar *domain) { gchar *domain_dn_str = NULL; gboolean had_dc = FALSE; gchar *str; LDAPAVA* ava; gboolean ret; LDAPDN dn; int rc; gint i; /* ldap_str2dn doesn't like empty strings */ while (g_ascii_isspace (ldap_dn[0])) ldap_dn++; if (g_str_equal (ldap_dn, "")) return NULL; rc = ldap_str2dn (ldap_dn, &dn, LDAP_DN_FORMAT_LDAPV3); if (rc != LDAP_SUCCESS) return NULL; rc = ldap_domain2dn (domain, &domain_dn_str); if (rc != LDAP_SUCCESS) { ldap_dnfree (dn); return NULL; } ret = TRUE; for (i = 0; dn[i] != NULL; i++) { ava = dn[i][0]; /* * Make sure this is a valid DN, we only support one value per * RDN, string values. DC values are allowed but only at the end of the DN. */ if (ava == NULL || dn[i][1] != NULL || !(ava->la_flags & LDAP_AVA_STRING)) { ret = FALSE; break; /* A DC, remainder must match the domain */ } else if (berval_is_string (&ava->la_attr, "DC", 2)) { had_dc = TRUE; ret = dn_equals_domain (dn + i, domain_dn_str, domain); break; } } ldap_dnfree (dn); if (!ret) return NULL; if (had_dc) str = g_strdup (ldap_dn); else str = g_strdup_printf ("%s,%s", ldap_dn, domain_dn_str); ldap_memfree (domain_dn_str); return str; } realmd-0.17.1/service/realm-errors.h0000644003225100322510000000213114046520517017600 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_ERRORS_H__ #define __REALM_ERRORS_H__ #include G_BEGIN_DECLS #define REALM_ERROR (realm_error_quark ()) GQuark realm_error_quark (void) G_GNUC_CONST; typedef enum { REALM_ERROR_INTERNAL, REALM_ERROR_FAILED, REALM_ERROR_BUSY, REALM_ERROR_ALREADY_CONFIGURED, REALM_ERROR_NOT_CONFIGURED, REALM_ERROR_AUTH_FAILED, REALM_ERROR_BAD_HOSTNAME, REALM_ERROR_CANCELLED, _NUM_REALM_ERRORS } RealmErrorCodes; #define REALM_KRB5_ERROR (realm_krb5_error_quark ()) GQuark realm_krb5_error_quark (void) G_GNUC_CONST; G_END_DECLS #endif /* __REALM_ERRORS_H__ */ realmd-0.17.1/service/realm-disco-dns.h0000644003225100322510000000223214046520517020151 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_DISCO_DNS_H__ #define __REALM_DICSO_DNS_H__ #include typedef enum { REALM_DISCO_IS_SERVER = 1 << 3, } RealmDiscoDnsHint; G_BEGIN_DECLS GSocketAddressEnumerator * realm_disco_dns_enumerate_servers (const gchar *domain_or_server, gboolean use_ldaps, GDBusMethodInvocation *invocation); RealmDiscoDnsHint realm_disco_dns_get_hint (GSocketAddressEnumerator *enumerator); const gchar * realm_disco_dns_get_name (GSocketAddressEnumerator *enumerator); G_END_DECLS #endif /* __REALM_DISCO_DNS_H__ */ realmd-0.17.1/service/realm-disco-mscldap.c0000644003225100322510000002225514314774345021022 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-dbus-constants.h" #include "realm-disco-mscldap.h" #include "realm-ldap.h" #include "realm-options.h" #include #include #include #include typedef struct { gchar *explicit_server; GSocketAddress *address; GSource *source; gint count; gint fever_id; gint normal_id; } Closure; /* Number of rapid requets to do */ #define DISCO_FEVER 4 #ifndef HOST_NAME_MAX #define HOST_NAME_MAX 255 #endif static void closure_free (gpointer data) { Closure *clo = data; g_free (clo->explicit_server); g_object_unref (clo->address); if (clo->fever_id) g_source_remove (clo->fever_id); if (clo->normal_id) g_source_remove (clo->normal_id); g_source_destroy (clo->source); g_source_unref (clo->source); g_free (clo); } static gchar * explicit_netbios_name (void) { gchar hostname[HOST_NAME_MAX + 1]; gchar *dot; /* * Only return a explicit truncated host name if the * computer host name cannot be made seamlessly translated * to a netbios name due to it's length. * * We would love to leave this responsibility to our lower level * tools, but unfortunately samba doesn't know how to do this * properly, and expects us to set it properly in smb.conf * * In addition sssd falls over if truncation is done. So we have * to tell sssd about it. */ if (gethostname (hostname, sizeof (hostname)) < 0) { g_warning ("Couldn't get the computer host name: %s", g_strerror (errno)); return NULL; } dot = strchr (hostname, '.'); if (dot != NULL) dot[0] = '\0'; if (strlen (hostname) > 15) { hostname[15] = '\0'; return g_ascii_strup (hostname, -1); } return NULL; } static gchar * get_string (guchar *beg, guchar *end, guchar **at) { gchar buffer[HOST_NAME_MAX]; int n; n = dn_expand (beg, end, *at, buffer, sizeof (buffer)); if (n < 0) return NULL; if (!realm_options_check_domain_name (buffer)) { g_message ("received invalid NetLogon string characters"); return NULL; } (*at) += n; return g_strdup (buffer); } static gboolean parse_string (guchar *beg, guchar *end, guchar **at, gchar **result) { gchar *string; g_assert (result); string = get_string (beg, end, at); if (string == NULL) return FALSE; g_free (*result); *result = string; return TRUE; } static gboolean get_32_le (unsigned char **at, unsigned char *end, unsigned int *val) { unsigned char *p = *at; if (p + 4 > end) return FALSE; *val = p[0] | p[1] << 8 | p[2] << 16 | p[3] << 24; (*at) += 4; return TRUE; } static gboolean skip_n (unsigned char **at, unsigned char *end, int n) { if ((*at) + n > end) return FALSE; (*at) += n; return TRUE; } static gboolean parse_netlogon (struct berval **bvs, RealmDisco *disco, GError **error) { guchar *at, *end, *beg; gchar *unused = NULL; guint type, flags; gboolean success = FALSE; if (bvs != NULL && bvs[0] != NULL) { beg = (guchar *)bvs[0]->bv_val; end = beg + bvs[0]->bv_len; at = beg; success = TRUE; } /* domain forest */ if (!success || !get_32_le (&at, end, &type) || type != 23 || !get_32_le (&at, end, &flags) || !skip_n (&at, end, 16) || /* guid */ !parse_string (beg, end, &at, &unused) || /* forest */ !parse_string (beg, end, &at, &disco->domain_name) || !parse_string (beg, end, &at, &disco->netlogon_server_name) || !parse_string (beg, end, &at, &disco->workgroup) || !parse_string (beg, end, &at, &unused) || /* shorthost */ !parse_string (beg, end, &at, &unused) || /* user */ !parse_string (beg, end, &at, &unused) || /* server site */ !parse_string (beg, end, &at, &unused)) { /* client site */ success = FALSE; } g_free (unused); if (!success) { g_set_error (error, REALM_LDAP_ERROR, LDAP_PROTOCOL_ERROR, _("Received invalid or unsupported Netlogon data from server")); return FALSE; } disco->server_software = REALM_DBUS_IDENTIFIER_ACTIVE_DIRECTORY; disco->explicit_netbios = explicit_netbios_name (); disco->kerberos_realm = g_ascii_strup (disco->domain_name, -1); return TRUE; } gboolean realm_disco_mscldap_result (LDAP *ldap, LDAPMessage *message, RealmDisco *disco, GError **error) { struct berval **bvs = NULL; LDAPMessage *entry; gboolean ret; entry = ldap_first_entry (ldap, message); if (entry != NULL) bvs = ldap_get_values_len (ldap, entry, "NetLogon"); ret = parse_netlogon (bvs, disco, error); ldap_value_free_len (bvs); return ret; } gboolean realm_disco_mscldap_request (LDAP *ldap, int *msgidp, GError **error) { char *attrs[] = { "NetLogon", NULL }; int rc; rc = ldap_search_ext (ldap, "", LDAP_SCOPE_BASE, "(&(NtVer=\\06\\00\\00\\00)(AAC=\\00\\00\\00\\00))", attrs, 0, NULL, NULL, NULL, -1, msgidp); if (rc != LDAP_SUCCESS) { realm_ldap_set_error (error, ldap, rc); return FALSE; } return TRUE; } static gboolean on_resend (gpointer user_data) { realm_ldap_set_condition (user_data, G_IO_OUT | G_IO_IN); return TRUE; } static GIOCondition on_ldap_io (LDAP *ldap, GIOCondition cond, gpointer user_data) { GTask *task = G_TASK (user_data); Closure *clo = g_task_get_task_data (task); struct timeval tvpoll = { 0, 0 }; LDAPMessage *message; GError *error = NULL; RealmDisco *disco; int msgid; /* Cancelled */ if (cond & G_IO_ERR) { realm_ldap_set_error (&error, ldap, 0); g_task_return_error (task, error); return G_IO_NVAL; } /* Ready for input */ if (cond & G_IO_OUT) { g_debug ("Sending NetLogon ping"); if (!realm_disco_mscldap_request (ldap, &msgid, &error)) { g_task_return_error (task, error); return G_IO_NVAL; } /* Remove rapid fire after sending a feverish batch */ if (clo->count++ > DISCO_FEVER && clo->fever_id != 0) { g_source_remove (clo->fever_id); clo->fever_id = 0; } } /* Ready to get a result */ if (cond & G_IO_IN) { switch (ldap_result (ldap, LDAP_RES_ANY, 0, &tvpoll, &message)) { case LDAP_RES_SEARCH_ENTRY: case LDAP_RES_SEARCH_RESULT: g_debug ("Received response"); disco = realm_disco_new (NULL); disco->server_address = g_object_ref (clo->address); if (realm_disco_mscldap_result (ldap, message, disco, &error)) { disco->explicit_server = g_strdup (clo->explicit_server); g_task_return_pointer (task, disco, realm_disco_unref); } else { realm_disco_unref (disco); g_task_return_error (task, error); } ldap_msgfree (message); return G_IO_NVAL; case -1: realm_ldap_set_error (&error, ldap, -1); g_task_return_error (task, error); return G_IO_NVAL; case 0: break; default: /* Ignore and keep waiting */ ldap_msgfree (message); break; } } /* Now wait for a response */ return G_IO_IN; } void realm_disco_mscldap_async (GSocketAddress *address, GSocketProtocol protocol, const gchar *explicit_server, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; Closure *clo; g_return_if_fail (address != NULL); task = g_task_new (NULL, cancellable, callback, user_data); clo = g_new0 (Closure, 1); clo->explicit_server = g_strdup (explicit_server); clo->address = g_object_ref (address); g_task_set_task_data (task, clo, closure_free); if (protocol == G_SOCKET_PROTOCOL_UDP && !ldap_is_ldap_url ("cldap://hostname")) { g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, _("LDAP on this system does not support UDP connections")); g_object_unref (task); return; } clo->source = realm_ldap_connect_anonymous (address, protocol, FALSE, cancellable); if (clo->source == NULL) { g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_NOT_CONNECTED, _("Failed to setup LDAP connection")); g_object_unref (task); return; } g_source_set_callback (clo->source, (GSourceFunc)on_ldap_io, g_object_ref (task), g_object_unref); g_source_attach (clo->source, g_task_get_context (task)); if (protocol == G_SOCKET_PROTOCOL_UDP) { clo->fever_id = g_timeout_add (100, on_resend, clo->source); clo->normal_id = g_timeout_add (1000, on_resend, clo->source); } g_object_unref (task); } RealmDisco * realm_disco_mscldap_finish (GAsyncResult *result, GError **error) { g_return_val_if_fail (g_task_is_valid (result, NULL), NULL); g_return_val_if_fail (error == NULL || *error == NULL, NULL); return g_task_propagate_pointer (G_TASK (result), error); } realmd-0.17.1/service/realm-ldap.c0000664003225100322510000002632314147702636017220 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-ldap.h" #include #include #include #include #include #include #include #include /* * So the reason that we don't use GSocket is because its fd's are always * non-blocking internally. We can't just go and hand these non-blocking * fds to openldap, which then fiddles with blocking state. */ GQuark realm_ldap_error_get_quark (void) { static GQuark quark = 0; if (!quark) quark = g_quark_from_static_string ("realm-ldap-error"); return quark; } typedef struct { GSource source; int sock; LDAP *ldap; GPollFD pollfd; GIOCondition condition; GCancellable *cancellable; GPollFD cancel_pollfd; gboolean connect_done; /* An LDAP failure we should always return if non-zero */ int force_fail; } LdapSource; static gboolean ldap_source_prepare (GSource *source, gint *timeout) { LdapSource *ls = (LdapSource *)source; if (ls->force_fail != 0) return TRUE; if (g_cancellable_is_cancelled (ls->cancellable)) return TRUE; *timeout = -1; if ((ls->condition & ls->pollfd.revents) != 0) return TRUE; ls->pollfd.events = ls->condition; return FALSE; } static gboolean ldap_source_check (GSource *source) { int timeout; return ldap_source_prepare (source, &timeout); } static void ldap_set_result_code (LDAP *ldap, int rc) { int check; if (ldap_get_option (ldap, LDAP_OPT_RESULT_CODE, &check) < 0 || check != rc) { ldap_set_option (ldap, LDAP_OPT_RESULT_CODE, &rc); ldap_set_option (ldap, LDAP_OPT_DIAGNOSTIC_MESSAGE, NULL); } } static gboolean ldap_source_dispatch (GSource *source, GSourceFunc callback, gpointer user_data) { RealmLdapCallback func = (RealmLdapCallback)callback; LdapSource *ls = (LdapSource *)source; GIOCondition cond; socklen_t slen; int error; cond = ls->pollfd.revents & ls->condition; /* * We report cancels as an error. The callback can check if it * was cancelled by looking for LDAP_CANCELLED result code. */ if (g_cancellable_is_cancelled (ls->cancellable)) { ls->force_fail = LDAP_CANCELLED; } else if (cond & (G_IO_HUP | G_IO_ERR)) { g_debug ("socket closed or error"); ls->force_fail = LDAP_SERVER_DOWN; } else if (cond & G_IO_OUT) { /* * Read out the result of the asynchronous non-blocking connect() * call. If it fails we propagate that error up. */ if (!ls->connect_done) { ls->connect_done = TRUE; slen = sizeof (int); if (getsockopt (ls->sock, SOL_SOCKET, SO_ERROR, &error, &slen) != 0) { g_warning ("getsockopt() for SO_ERROR failed"); ls->force_fail = LDAP_SERVER_DOWN; } else if (error != 0) { g_debug ("Cannot connect: %s", g_strerror (error)); ls->force_fail = LDAP_SERVER_DOWN; } } } if (ls->force_fail != 0) { ldap_set_result_code (ls->ldap, ls->force_fail); cond |= G_IO_ERR; } if (func != NULL && cond != 0) { cond = (* func) (ls->ldap, cond, user_data); if ((cond & G_IO_NVAL) == G_IO_NVAL) return FALSE; cond |= G_IO_HUP | G_IO_ERR; ls->condition = cond; } return TRUE; } static void ldap_source_finalize (GSource *source) { LdapSource *ls = (LdapSource *)source; ldap_destroy (ls->ldap); ls->sock = -1; ls->ldap = NULL; if (ls->cancellable) { g_cancellable_release_fd (ls->cancellable); g_object_unref (ls->cancellable); } } static GSourceFuncs socket_source_funcs = { ldap_source_prepare, ldap_source_check, ldap_source_dispatch, ldap_source_finalize, }; /* Not included in ldap.h but documented */ int ldap_init_fd (ber_socket_t fd, int proto, LDAP_CONST char *url, struct ldap **ldp); #define LDAP_SOCKET_TIMEOUT 5 GSource * realm_ldap_connect_anonymous (GSocketAddress *address, GSocketProtocol protocol, gboolean use_ldaps, GCancellable *cancellable) { GSource *source; LdapSource *ls; gchar *addrname; GInetSocketAddress *inet; GSocketFamily family; struct berval cred; Sockbuf *sb = NULL; gsize native_len; gpointer native; int version; gint port; gchar *url; int rc; int opt_rc; int ldap_opt_val; const char *errmsg = NULL; struct timeval tv = {LDAP_SOCKET_TIMEOUT, 0}; unsigned int milli = LDAP_SOCKET_TIMEOUT * 1000; g_return_val_if_fail (G_IS_INET_SOCKET_ADDRESS (address), NULL); inet = G_INET_SOCKET_ADDRESS (address); addrname = g_inet_address_to_string (g_inet_socket_address_get_address (inet)); port = g_inet_socket_address_get_port (inet); family = g_inet_address_get_family (g_inet_socket_address_get_address (inet)); if (port == 0) port = 389; source = g_source_new (&socket_source_funcs, sizeof (LdapSource)); g_source_set_name (source, "LdapSource"); ls = (LdapSource *)source; switch (protocol) { case G_SOCKET_PROTOCOL_TCP: ls->sock = socket (g_socket_address_get_family (address), SOCK_STREAM, IPPROTO_TCP); /* Not an expected failure */ if (ls->sock < 0) { g_critical ("couldn't open socket to: %s: %s", addrname, strerror (errno)); return NULL; } if (!g_unix_set_fd_nonblocking (ls->sock, TRUE, NULL)) g_warning ("couldn't set to non-blocking"); native_len = g_socket_address_get_native_size (address); native = g_malloc (native_len); if (!g_socket_address_to_native (address, native, native_len, NULL)) g_return_val_if_reached (NULL); if (connect (ls->sock, native, native_len) < 0 && errno != EINPROGRESS) { g_debug ("Cannot connect: %s", g_strerror (errno)); ls->force_fail = LDAP_SERVER_DOWN; } if (!g_unix_set_fd_nonblocking (ls->sock, FALSE, NULL)) g_warning ("couldn't set to blocking"); /* Lower the kernel defaults which might be minutes to hours */ rc = setsockopt (ls->sock, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof (tv)); if (rc != 0) { g_warning ("couldn't set SO_RCVTIMEO"); } rc = setsockopt (ls->sock, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof (tv)); if (rc != 0) { g_warning ("couldn't set SO_SNDTIMEO"); } rc = setsockopt (ls->sock, IPPROTO_TCP, TCP_USER_TIMEOUT, &milli, sizeof (milli)); if (rc != 0) { g_warning ("couldn't set TCP_USER_TIMEOUT"); } if (family == G_SOCKET_FAMILY_IPV4) { url = g_strdup_printf ("%s://%s:%d", use_ldaps ? "ldaps" : "ldap", addrname, port); } else if (family == G_SOCKET_FAMILY_IPV6) { url = g_strdup_printf ("%s://[%s]:%d", use_ldaps ? "ldaps" : "ldap", addrname, port); } else { url = NULL; } rc = ldap_init_fd (ls->sock, 1, url, &ls->ldap); g_free (url); g_free (native); /* Not an expected failure */ if (rc != LDAP_SUCCESS) { g_warning ("ldap_init_fd() failed: %s", ldap_err2string (rc)); return NULL; } if (use_ldaps) { /* Since we currently use the IP address in the URI * the certificate check might fail because in most * cases the IP address won't be listed in the SANs of * the LDAP server certificate. We will try to * continue in this case and not fail. */ ldap_opt_val = LDAP_OPT_X_TLS_ALLOW; rc = ldap_set_option (ls->ldap, LDAP_OPT_X_TLS_REQUIRE_CERT, &ldap_opt_val); if (rc != LDAP_OPT_SUCCESS) { g_debug ("Failed to disable certificate checking, trying without"); } ldap_opt_val = 0; rc = ldap_set_option (ls->ldap, LDAP_OPT_X_TLS_NEWCTX, &ldap_opt_val); if (rc != LDAP_OPT_SUCCESS) { g_debug ("Failed to refresh LDAP context for TLS, trying without"); } rc = ldap_install_tls (ls->ldap); if (rc != LDAP_SUCCESS) { opt_rc = ldap_get_option (ls->ldap, LDAP_OPT_DIAGNOSTIC_MESSAGE, (void *) &errmsg); if (opt_rc != LDAP_SUCCESS) { errmsg = "- no details -"; } g_warning ("ldap_start_tls_s() failed [%s]: %s", ldap_err2string (rc), errmsg); return NULL; } } break; case G_SOCKET_PROTOCOL_UDP: url = g_strdup_printf ("cldap://%s:%d", addrname, port); /* * HACK: ldap_init_fd() does not work for UDP, otherwise we * could use the same code path as above, but it doesn't * block while connecting anyway, so just use ldap_initialize() */ rc = ldap_initialize (&ls->ldap, url); g_free (url); /* Not an expected failure */ if (rc != LDAP_SUCCESS) { g_warning ("ldap_initialize() failed: %s", ldap_err2string (rc)); return NULL; } /* * An anonymous bind is used to actually connect the connection * so we can get at the socket. For UDP with openldap an anonymous * bind is treated as a no-op. */ cred.bv_val = ""; cred.bv_len = 0; rc = ldap_sasl_bind_s (ls->ldap, NULL, LDAP_SASL_SIMPLE, &cred, NULL, NULL, NULL); /* Not an expected failure */ if (rc != LDAP_SUCCESS) { g_warning ("ldap_sasl_bind_s() failed: %s", ldap_err2string (rc)); return NULL; } if (ldap_get_option (ls->ldap, LDAP_OPT_SOCKBUF, &sb) < 0) g_return_val_if_reached (NULL); g_return_val_if_fail (sb != NULL, NULL); if (ber_sockbuf_ctrl (sb, LBER_SB_OPT_GET_FD, &ls->sock) != 1) g_return_val_if_reached (NULL); ls->connect_done = TRUE; break; default: g_return_val_if_reached (NULL); break; } g_free (addrname); version = LDAP_VERSION3; if (ldap_set_option (ls->ldap, LDAP_OPT_PROTOCOL_VERSION, &version) != 0) g_return_val_if_reached (NULL); ldap_set_option (ls->ldap, LDAP_OPT_REFERRALS , LDAP_OPT_OFF); ls->condition = G_IO_IN | G_IO_OUT | G_IO_HUP | G_IO_ERR; ls->pollfd.fd = ls->sock; ls->pollfd.events = ls->condition; ls->pollfd.revents = 0; g_source_add_poll (source, &ls->pollfd); if (g_cancellable_make_pollfd (cancellable, &ls->cancel_pollfd)) { ls->cancellable = g_object_ref (cancellable); g_source_add_poll (source, &ls->cancel_pollfd); } return source; } void realm_ldap_set_condition (GSource *source, GIOCondition cond) { LdapSource *ls = (LdapSource *)source; GMainContext *context; ls->condition = cond | G_IO_HUP | G_IO_ERR; context = g_source_get_context (source); if (context != NULL) g_main_context_wakeup (context); } void realm_ldap_set_error (GError **error, LDAP *ldap, int code) { char *info = NULL; if (code <= 0) { if (ldap_get_option (ldap, LDAP_OPT_RESULT_CODE, &code) != 0) g_return_if_reached (); } if (code == LDAP_CANCELLED) { g_set_error (error, G_IO_ERROR, G_IO_ERROR_CANCELLED, _("The operation was cancelled")); return; } if (ldap != NULL) { if (ldap_get_option (ldap, LDAP_OPT_DIAGNOSTIC_MESSAGE, (void*)&info) != 0) info = NULL; } g_set_error_literal (error, REALM_LDAP_ERROR, code, info ? info : ldap_err2string (code)); } realmd-0.17.1/service/realm-sssd-ad.h0000644003225100322510000000202714046520517017626 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SSSD_AD_H__ #define __REALM_SSSD_AD_H__ #include #include "realm-kerberos.h" #include "realm-provider.h" G_BEGIN_DECLS #define REALM_TYPE_SSSD_AD (realm_sssd_ad_get_type ()) #define REALM_SSSD_AD(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_SSSD_AD, RealmSssdAd)) #define REALM_IS_SSSD_AD(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_SSSD_AD)) typedef struct _RealmSssdAd RealmSssdAd; GType realm_sssd_ad_get_type (void) G_GNUC_CONST; G_END_DECLS #endif /* __REALM_SSSD_AD_H__ */ realmd-0.17.1/service/realm-samba-enroll.h0000644003225100322510000000403714046520517020647 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SAMBA_ENROLL_H__ #define __REALM_SAMBA_ENROLL_H__ #include "realm-credential.h" #include "realm-disco.h" #include #include G_BEGIN_DECLS void realm_samba_enroll_join_async (RealmDisco *disco, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_samba_enroll_join_finish (GAsyncResult *result, GError **error); void realm_samba_enroll_leave_async (RealmDisco *disco, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_samba_enroll_leave_finish (GAsyncResult *result, GError **error); gchar * fallback_workgroup (const gchar *realm); G_END_DECLS #endif /* __REALM_SAMBA_ENROLL_H__ */ realmd-0.17.1/service/realm-options.c0000644003225100322510000001272714311053251017755 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-dbus-constants.h" #include "realm-options.h" #include "realm-settings.h" #include gboolean realm_options_automatic_install (void) { return realm_settings_boolean ("service", "automatic-install", TRUE); } gboolean realm_options_manage_system (GVariant *options, const gchar *realm_name) { gboolean manage; gchar *section; section = g_utf8_casefold (realm_name, -1); if (realm_settings_value (section, REALM_DBUS_OPTION_MANAGE_SYSTEM)) manage = realm_settings_boolean (section, REALM_DBUS_OPTION_MANAGE_SYSTEM, TRUE); else if (!g_variant_lookup (options, REALM_DBUS_OPTION_MANAGE_SYSTEM, "b", &manage)) manage = TRUE; g_free (section); return manage; } const gchar * realm_options_user_principal (GVariant *options, const gchar *realm_name) { const gchar *principal; gchar *section; if (!g_variant_lookup (options, REALM_DBUS_OPTION_USER_PRINCIPAL, "&s", &principal)) principal = NULL; if (!principal) { section = g_utf8_casefold (realm_name, -1); if (realm_settings_boolean (section, REALM_DBUS_OPTION_USER_PRINCIPAL, FALSE)) principal = ""; /* auto-generate */ g_free (section); } return principal; } const gchar * realm_options_computer_ou (GVariant *options, const gchar *realm_name) { const gchar *computer_ou = NULL; gchar *section; if (options) { if (!g_variant_lookup (options, REALM_DBUS_OPTION_COMPUTER_OU, "&s", &computer_ou)) computer_ou = NULL; } if (realm_name && !computer_ou) { section = g_utf8_casefold (realm_name, -1); computer_ou = realm_settings_value (section, REALM_DBUS_OPTION_COMPUTER_OU); g_free (section); } return g_strdup (computer_ou); } gboolean realm_options_automatic_mapping (GVariant *options, const gchar *realm_name) { gboolean mapping = FALSE; gboolean option = FALSE; gchar *section; if (options) { option = g_variant_lookup (options, REALM_DBUS_OPTION_AUTOMATIC_ID_MAPPING, "b", &mapping); } if (realm_name && !option) { section = g_utf8_casefold (realm_name, -1); mapping = realm_settings_boolean (section, REALM_DBUS_OPTION_AUTOMATIC_ID_MAPPING, TRUE); g_free (section); } return mapping; } gboolean realm_options_automatic_join (const gchar *realm_name) { gchar *section; gboolean mapping; section = g_utf8_casefold (realm_name, -1); mapping = realm_settings_boolean (section, "automatic-join", FALSE); g_free (section); return mapping; } gboolean realm_options_qualify_names (const gchar *realm_name, gboolean def) { gchar *section; gboolean qualify; section = g_utf8_casefold (realm_name, -1); qualify = realm_settings_boolean (section, "fully-qualified-names", def); g_free (section); return qualify; } gboolean realm_options_check_domain_name (const gchar *name) { /* * DNS Domain names are pretty liberal (internet domain names * are more restrictive) See RFC 2181 section 11 * * http://www.ietf.org/rfc/rfc2181.txt * * However we cannot consume names with whitespace and problematic * punctuation, due to the various programs that parse the * configuration files we set up. */ gsize i, len; static const gchar *invalid = "=[]:"; g_return_val_if_fail (name != NULL, FALSE); for (i = 0, len = strlen (name); i < len; i++) { if (name[i] <= ' ') return FALSE; if (strchr (invalid, name[i])) return FALSE; } return TRUE; } const gchar * realm_options_computer_name (GVariant *options, const gchar *realm_name) { const gchar *computer_name = NULL; gchar *section; if (options) { if (!g_variant_lookup (options, REALM_DBUS_OPTION_COMPUTER_NAME, "&s", &computer_name)) computer_name = NULL; } if (realm_name && !computer_name) { section = g_utf8_casefold (realm_name, -1); computer_name = realm_settings_value (section, REALM_DBUS_OPTION_COMPUTER_NAME); g_free (section); } return computer_name; } const gchar * realm_options_ad_specific (GVariant *options, const gchar *option_name) { const gchar *value = NULL; if (options) { if (!g_variant_lookup (options, option_name, "&s", &value)) value = NULL; } if (!value) { value = realm_settings_value ("active-directory", option_name); } return value; } gboolean realm_option_use_ldaps (GVariant *options) { const gchar *use_ldaps_str; use_ldaps_str = realm_options_ad_specific (options, REALM_DBUS_OPTION_USE_LDAPS); if (use_ldaps_str != NULL && ( g_ascii_strcasecmp (use_ldaps_str, "True") == 0 || g_ascii_strcasecmp (use_ldaps_str, "Yes") == 0)) { return TRUE; } return FALSE; } gboolean realm_option_do_not_touch_config (GVariant *options) { const gchar *str; str = realm_options_ad_specific (options, REALM_DBUS_OPTION_DO_NOT_TOUCH_CONFIG); if (str != NULL && ( g_ascii_strcasecmp (str, "True") == 0 || g_ascii_strcasecmp (str, "Yes") == 0)) { return TRUE; } return FALSE; } realmd-0.17.1/service/realm-packages.h0000644003225100322510000000224214046520517020045 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_PACKAGES_H__ #define __REALM_PACKAGES_H__ #include G_BEGIN_DECLS gchar ** realm_packages_expand_sets (const gchar **package_sets); void realm_packages_install_async (const gchar **package_sets, GDBusMethodInvocation *invocation, GDBusConnection *connection, GAsyncReadyCallback callback, gpointer user_data); gboolean realm_packages_install_finish (GAsyncResult *result, GError **error); G_END_DECLS #endif /* __REALM_PACKAGES_H__ */ realmd-0.17.1/service/realm-samba.h0000644003225100322510000000222214046520517017350 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SAMBA_H__ #define __REALM_SAMBA_H__ #include #include "realm-kerberos.h" #include "realm-provider.h" G_BEGIN_DECLS #define REALM_TYPE_SAMBA (realm_samba_get_type ()) #define REALM_SAMBA(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_SAMBA, RealmSamba)) #define REALM_IS_SAMBA(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_SAMBA)) typedef struct _RealmSamba RealmSamba; GType realm_samba_get_type (void) G_GNUC_CONST; RealmKerberos * realm_samba_new (const gchar *name, RealmProvider *provider); G_END_DECLS #endif /* __REALM_SAMBA_H__ */ realmd-0.17.1/service/realm-samba-winbind.c0000644003225100322510000002144314310053747021001 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-command.h" #include "realm-daemon.h" #include "realm-diagnostics.h" #include "realm-errors.h" #include "realm-options.h" #include "realm-samba-config.h" #include "realm-samba-winbind.h" #include "realm-samba-enroll.h" #include "realm-settings.h" #include "realm-service.h" #include "dbus/realm-dbus-constants.h" #include #include static void on_nss_complete (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; gint status; status = realm_command_run_finish (result, NULL, &error); if (error == NULL && status != 0) g_set_error (&error, REALM_ERROR, REALM_ERROR_INTERNAL, "Enabling winbind in nsswitch.conf and pam failed"); if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void on_enable_do_nss (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GDBusMethodInvocation *invocation = g_task_get_task_data (task); GError *error = NULL; realm_service_enable_and_restart_finish (result, &error); if (error == NULL) { realm_command_run_known_async ("winbind-enable-logins", NULL, invocation, on_nss_complete, g_object_ref (task)); } else { g_task_return_error (task, error); } g_object_unref (task); } void realm_samba_winbind_configure_async (RealmIniConfig *config, const gchar *domain_name, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmIniConfig *pwc; GTask *task; GError *error = NULL; gchar *workgroup = NULL; gchar *idmap_config_backend = NULL; gchar *idmap_config_range = NULL; gchar *idmap_config_schema_mode = NULL; g_return_if_fail (config != NULL); g_return_if_fail (invocation != NULL || G_IS_DBUS_METHOD_INVOCATION (invocation)); task = g_task_new (NULL, NULL, callback, user_data); if (invocation != NULL) g_task_set_task_data (task, g_object_ref (invocation), g_object_unref); /* TODO: need to use autorid mapping */ if (realm_ini_config_begin_change(config, &error)) { realm_ini_config_set (config, REALM_SAMBA_CONFIG_GLOBAL, "winbind enum users", "no", "winbind enum groups", "no", "winbind offline logon", "yes", "winbind refresh tickets", "yes", "winbind use default domain", realm_options_qualify_names (domain_name, TRUE )? "no" : "yes", "template shell", realm_settings_string ("users", "default-shell"), NULL); if (realm_settings_boolean ("service", REALM_DBUS_OPTION_LEGACY_SMB_CONF, FALSE)) { if (realm_options_automatic_mapping (options, domain_name)) { realm_ini_config_set (config, REALM_SAMBA_CONFIG_GLOBAL, "idmap uid", "10000-2000000", "idmap gid", "10000-2000000", "idmap backend", "tdb", "idmap schema", NULL, NULL); } else { realm_ini_config_set (config, REALM_SAMBA_CONFIG_GLOBAL, "idmap uid", "500-4294967296", "idmap gid", "500-4294967296", "idmap backend", "ad", "idmap schema", "rfc2307", NULL); } } else { workgroup = realm_ini_config_get (config, REALM_SAMBA_CONFIG_GLOBAL, "workgroup"); if (workgroup == NULL) { workgroup = fallback_workgroup (domain_name); } idmap_config_backend = g_strdup_printf ("idmap config %s : backend", workgroup != NULL ? workgroup : "PLEASE_REPLACE"); idmap_config_range = g_strdup_printf ("idmap config %s : range", workgroup != NULL ? workgroup : "PLEASE_REPLACE"); idmap_config_schema_mode = g_strdup_printf ("idmap config %s : schema_mode", workgroup != NULL ? workgroup : "PLEASE_REPLACE"); g_free (workgroup); if (realm_options_automatic_mapping (options, domain_name)) { realm_ini_config_set (config, REALM_SAMBA_CONFIG_GLOBAL, "idmap config * : backend", "tdb", "idmap config * : range", "10000-999999", idmap_config_backend != NULL ? idmap_config_backend : "idmap config PLEASE_REPLACE : backend", "rid", idmap_config_range != NULL ? idmap_config_range: "idmap config PLEASE_REPLACE : range", "2000000-2999999", idmap_config_schema_mode != NULL ? idmap_config_schema_mode: "idmap config PLEASE_REPLACE : schema_mode", NULL, NULL); } else { realm_ini_config_set (config, REALM_SAMBA_CONFIG_GLOBAL, "idmap config * : backend", "tdb", "idmap config * : range", "10000000-10999999", idmap_config_backend != NULL ? idmap_config_backend : "idmap config PLEASE_REPLACE : backend", "ad", idmap_config_range != NULL ? idmap_config_range: "idmap config PLEASE_REPLACE : range", "500-999999", idmap_config_schema_mode != NULL ? idmap_config_schema_mode: "idmap config PLEASE_REPLACE : schema_mode", "rfc2307", NULL); } } realm_ini_config_finish_change (config, &error); g_free (idmap_config_backend); g_free (idmap_config_range); } /* Setup pam_winbind.conf with decent defaults matching our expectations */ if (error == NULL) { pwc = realm_ini_config_new (REALM_INI_NO_WATCH); realm_ini_config_set_filename (pwc, realm_settings_path ("pam_winbind.conf")); realm_ini_config_change (pwc, "global", &error, "krb5_auth", "yes", "krb5_ccache_type", "FILE", "cached_login", "yes", NULL); g_object_unref (pwc); } if (error == NULL) { realm_service_enable_and_restart ("winbind", invocation, on_enable_do_nss, g_object_ref (task)); } else { g_task_return_error (task, error); } g_object_unref (task); } gboolean realm_samba_winbind_configure_finish (GAsyncResult *result, GError **error) { g_return_val_if_fail (g_task_is_valid (result, NULL), FALSE); return g_task_propagate_boolean (G_TASK (result), error); } static void on_disable_complete (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; realm_service_disable_and_stop_finish (result, &error); if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void on_nss_do_disable (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GDBusMethodInvocation *invocation = g_task_get_task_data (task); GError *error = NULL; gint status; status = realm_command_run_finish (result, NULL, &error); if (error == NULL && status != 0) g_set_error (&error, REALM_ERROR, REALM_ERROR_INTERNAL, "Disabling winbind in /etc/nsswitch.conf failed"); if (error == NULL) { realm_service_disable_and_stop ("winbind", invocation, on_disable_complete, g_object_ref (task)); } else { g_task_return_error (task, error); } g_object_unref (task); } void realm_samba_winbind_deconfigure_async (RealmIniConfig *config, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; g_return_if_fail (config != NULL); g_return_if_fail (invocation != NULL || G_IS_DBUS_METHOD_INVOCATION (invocation)); task = g_task_new (NULL, NULL, callback, user_data); if (invocation != NULL) g_task_set_task_data (task, g_object_ref (invocation), g_object_unref); realm_command_run_known_async ("winbind-disable-logins", NULL, invocation, on_nss_do_disable, g_object_ref (task)); g_object_unref (task); } gboolean realm_samba_winbind_deconfigure_finish (GAsyncResult *result, GError **error) { g_return_val_if_fail (g_task_is_valid (result, NULL), FALSE); return g_task_propagate_boolean (G_TASK (result), error); } realmd-0.17.1/service/realm-kerberos-provider.c0000644003225100322510000001036114046520517021727 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-dbus-constants.h" #include "realm-invocation.h" #include "realm-kerberos-provider.h" #include struct _RealmKerberosProvider { RealmProvider parent; }; typedef struct { RealmProviderClass parent_class; } RealmKerberosProviderClass; #define REALM_DBUS_GENERIC_KERBEROS_PATH "/org/freedesktop/realmd/GenericKerberos" G_DEFINE_TYPE (RealmKerberosProvider, realm_kerberos_provider, REALM_TYPE_PROVIDER); static void realm_kerberos_provider_init (RealmKerberosProvider *self) { } static void on_kerberos_discover (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); const gchar *domain = g_task_get_task_data (task); GError *error = NULL; RealmDisco *disco; GList *targets; targets = g_resolver_lookup_service_finish (G_RESOLVER (source), result, &error); if (targets) { g_list_free_full (targets, (GDestroyNotify)g_srv_target_free); disco = realm_disco_new (domain); disco->kerberos_realm = g_ascii_strup (domain, -1); g_task_return_pointer (task, disco, realm_disco_unref); } else if (error) { g_debug ("Resolving %s failed: %s", domain, error->message); g_error_free (error); g_task_return_pointer (task, NULL, NULL); } g_object_unref (task); } static void realm_kerberos_provider_discover_async (RealmProvider *provider, const gchar *string, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { GTask *task; const gchar *software; GResolver *resolver; gchar *name; task = g_task_new (provider, NULL, callback, user_data); /* If filtering for specific software, don't return anything */ if (g_variant_lookup (options, REALM_DBUS_OPTION_SERVER_SOFTWARE, "&s", &software) || g_variant_lookup (options, REALM_DBUS_OPTION_CLIENT_SOFTWARE, "&s", &software)) { g_task_return_pointer (task, NULL, NULL); } else { name = g_hostname_to_ascii (string); resolver = g_resolver_get_default (); g_resolver_lookup_service_async (resolver, "kerberos", "udp", name, realm_invocation_get_cancellable (invocation), on_kerberos_discover, g_object_ref (task)); g_task_set_task_data (task, name, g_free); g_object_unref (resolver); } g_object_unref (task); } static GList * realm_kerberos_provider_discover_finish (RealmProvider *provider, GAsyncResult *result, gint *relevance, GError **error) { RealmKerberos *realm = NULL; RealmDisco *disco; disco = g_task_propagate_pointer (G_TASK (result), error); if (disco == NULL) return NULL; realm = realm_provider_lookup_or_register_realm (provider, REALM_TYPE_KERBEROS, disco->domain_name, disco); realm_disco_unref (disco); if (realm == NULL) return NULL; /* Return a low priority as we can't handle enrollment */ *relevance = 10; return g_list_append (NULL, g_object_ref (realm)); } void realm_kerberos_provider_class_init (RealmKerberosProviderClass *klass) { RealmProviderClass *provider_class = REALM_PROVIDER_CLASS (klass); provider_class->discover_async = realm_kerberos_provider_discover_async; provider_class->discover_finish = realm_kerberos_provider_discover_finish; } RealmProvider * realm_kerberos_provider_new (void) { return g_object_new (REALM_TYPE_KERBEROS_PROVIDER, "g-object-path", REALM_DBUS_GENERIC_KERBEROS_PATH, NULL); } realmd-0.17.1/service/realm-disco-dns.c0000644003225100322510000002033514046520517020150 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-diagnostics.h" #include "realm-disco-dns.h" #include typedef enum { PHASE_NONE, PHASE_SRV, PHASE_HOST, PHASE_DONE } DiscoPhase; typedef struct { GSocketAddressEnumerator parent; gchar *name; GQueue addresses; GQueue targets; gint current_port; gboolean use_ldaps; gint returned; DiscoPhase phase; GResolver *resolver; GDBusMethodInvocation *invocation; } RealmDiscoDns; typedef struct { GSocketAddressEnumeratorClass parent; } RealmDiscoDnsClass; #define REALM_TYPE_DISCO_DNS (realm_disco_dns_get_type ()) #define REALM_DISCO_DNS(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_DISCO_DNS, RealmDiscoDns)) #define REALM_IS_DISCO_DNS(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_DISCO_DNS)) static void return_or_resolve (RealmDiscoDns *self, GTask *task); GType realm_disco_dns_get_type (void) G_GNUC_CONST; G_DEFINE_TYPE (RealmDiscoDns, realm_disco_dns, G_TYPE_SOCKET_ADDRESS_ENUMERATOR); static void realm_disco_dns_init (RealmDiscoDns *self) { g_queue_init (&self->addresses); g_queue_init (&self->targets); } static void realm_disco_dns_finalize (GObject *obj) { RealmDiscoDns *self = REALM_DISCO_DNS (obj); gpointer value; g_free (self->name); g_object_unref (self->invocation); g_clear_object (&self->resolver); for (;;) { value = g_queue_pop_head (&self->addresses); if (!value) break; g_object_unref (value); } for (;;) { value = g_queue_pop_head (&self->targets); if (!value) break; g_srv_target_free (value); } G_OBJECT_CLASS (realm_disco_dns_parent_class)->finalize (obj); } static GSocketAddress * realm_disco_dns_next (GSocketAddressEnumerator *enumerator, GCancellable *cancellable, GError **error) { /* We don't use this synchronously in realmd */ g_return_val_if_reached (NULL); } static void on_name_resolved (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); RealmDiscoDns *self = g_task_get_source_object (task); GError *error = NULL; GList *addrs; GList *l; addrs = g_resolver_lookup_by_name_finish (self->resolver, result, &error); if (error) g_debug ("%s", error->message); /* These are not real errors, just absence of addresses */ if (g_error_matches (error, G_RESOLVER_ERROR, G_RESOLVER_ERROR_NOT_FOUND) || g_error_matches (error, G_RESOLVER_ERROR, G_RESOLVER_ERROR_TEMPORARY_FAILURE)) g_clear_error (&error); if (error) { g_task_return_error (task, error); } else { for (l = addrs; l != NULL; l = g_list_next (l)) g_queue_push_head (&self->addresses, g_inet_socket_address_new (l->data, self->current_port)); g_list_free_full (addrs, g_object_unref); return_or_resolve (self, task); } g_object_unref (task); } static void on_service_resolved (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); RealmDiscoDns *self = g_task_get_source_object (task); GError *error = NULL; GList *targets; GList *l; targets = g_resolver_lookup_service_finish (self->resolver, result, &error); if (error) g_debug ("%s", error->message); /* These are not real errors, just absence of addresses */ if (g_error_matches (error, G_RESOLVER_ERROR, G_RESOLVER_ERROR_NOT_FOUND) || g_error_matches (error, G_RESOLVER_ERROR, G_RESOLVER_ERROR_TEMPORARY_FAILURE)) g_clear_error (&error); if (error) { g_task_return_error (task, error); } else { for (l = targets; l != NULL; l = g_list_next (l)) g_queue_push_tail (&self->targets, l->data); g_list_free (targets); return_or_resolve (self, task); } g_object_unref (task); } static void return_or_resolve (RealmDiscoDns *self, GTask *task) { GSocketAddress *address; GSrvTarget *target; address = g_queue_pop_head (&self->addresses); if (address) { self->returned++; g_task_return_pointer (task, address, g_object_unref); return; } target = g_queue_pop_head (&self->targets); if (target) { self->current_port = self->use_ldaps ? 636 : g_srv_target_get_port (target); g_resolver_lookup_by_name_async (self->resolver, g_srv_target_get_hostname (target), g_task_get_cancellable (task), on_name_resolved, g_object_ref (task)); g_srv_target_free (target); return; } switch (self->returned > 0 ? PHASE_DONE : self->phase) { case PHASE_NONE: realm_diagnostics_info (self->invocation, "Resolving: _ldap._tcp.%s", self->name); g_resolver_lookup_service_async (self->resolver, "ldap", "tcp", self->name, g_task_get_cancellable (task), on_service_resolved, g_object_ref (task)); self->phase = PHASE_SRV; break; case PHASE_SRV: realm_diagnostics_info (self->invocation, "Resolving: %s", self->name); g_resolver_lookup_by_name_async (self->resolver, self->name, g_task_get_cancellable (task), on_name_resolved, g_object_ref (task)); self->current_port = self->use_ldaps ? 636 : 389; self->phase = PHASE_HOST; break; case PHASE_HOST: realm_diagnostics_info (self->invocation, "No results: %s", self->name); self->phase = PHASE_DONE; /* fall through */ case PHASE_DONE: g_task_return_pointer (task, NULL, NULL); break; } } static void realm_disco_dns_next_async (GSocketAddressEnumerator *enumerator, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { RealmDiscoDns *self = REALM_DISCO_DNS (enumerator); GTask *task; task = g_task_new (enumerator, cancellable, callback, user_data); return_or_resolve (self, task); g_object_unref (task); } static GSocketAddress * realm_disco_dns_next_finish (GSocketAddressEnumerator *enumerator, GAsyncResult *result, GError **error) { return g_task_propagate_pointer (G_TASK (result), error); } static void realm_disco_dns_class_init (RealmDiscoDnsClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); GSocketAddressEnumeratorClass *enum_class = G_SOCKET_ADDRESS_ENUMERATOR_CLASS (klass); object_class->finalize = realm_disco_dns_finalize; enum_class->next = realm_disco_dns_next; enum_class->next_async = realm_disco_dns_next_async; enum_class->next_finish = realm_disco_dns_next_finish; } GSocketAddressEnumerator * realm_disco_dns_enumerate_servers (const gchar *domain_or_server, gboolean use_ldaps, GDBusMethodInvocation *invocation) { RealmDiscoDns *self; GInetAddress *inet; gchar *input; input = g_strdup (domain_or_server); g_strstrip (input); self = g_object_new (REALM_TYPE_DISCO_DNS, NULL); self->name = g_hostname_to_ascii (input); self->use_ldaps = use_ldaps; self->invocation = g_object_ref (invocation); /* If is an IP, skip resolution */ if (g_hostname_is_ip_address (input)) { inet = g_inet_address_new_from_string (input); g_queue_push_head (&self->addresses, g_inet_socket_address_new (inet, use_ldaps ? 636 : 389)); g_object_unref (inet); self->phase = PHASE_HOST; } else { self->resolver = g_resolver_get_default (); } g_free (input); return G_SOCKET_ADDRESS_ENUMERATOR (self); } RealmDiscoDnsHint realm_disco_dns_get_hint (GSocketAddressEnumerator *enumerator) { g_return_val_if_fail (REALM_IS_DISCO_DNS (enumerator), FALSE); switch (REALM_DISCO_DNS (enumerator)->phase) { case PHASE_HOST: return REALM_DISCO_IS_SERVER; default: return 0; } } const gchar * realm_disco_dns_get_name (GSocketAddressEnumerator *enumerator) { g_return_val_if_fail (REALM_IS_DISCO_DNS (enumerator), NULL); return REALM_DISCO_DNS (enumerator)->name; } realmd-0.17.1/service/realm-kerberos-membership.h0000644003225100322510000000554114046520517022241 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_KERBEROS_MEMBERSHIP_H__ #define __REALM_KERBEROS_MEMBERSHIP_H__ #include #include #include "realm-credential.h" #include "realm-dbus-generated.h" G_BEGIN_DECLS #define REALM_TYPE_KERBEROS_MEMBERSHIP (realm_kerberos_membership_get_type ()) #define REALM_KERBEROS_MEMBERSHIP(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_KERBEROS_MEMBERSHIP, RealmKerberosMembership)) #define REALM_IS_KERBEROS_MEMBERSHIP(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_KERBEROS_MEMBERSHIP)) #define REALM_KERBEROS_MEMBERSHIP_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), REALM_TYPE_KERBEROS_MEMBERSHIP, RealmKerberosMembershipIface)) typedef struct _RealmKerberosMembership RealmKerberosMembership; typedef struct _RealmKerberosMembershipIface RealmKerberosMembershipIface; struct _RealmKerberosMembershipIface { GTypeInterface parent_iface; void (* join_async) (RealmKerberosMembership *realm, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean (* join_finish) (RealmKerberosMembership *realm, GAsyncResult *result, GError **error); const RealmCredential * (* join_creds) (RealmKerberosMembership *realm); void (* leave_async) (RealmKerberosMembership *realm, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); gboolean (* leave_finish) (RealmKerberosMembership *realm, GAsyncResult *result, GError **error); const RealmCredential * (* leave_creds) (RealmKerberosMembership *realm); }; GType realm_kerberos_membership_get_type (void) G_GNUC_CONST; G_END_DECLS #endif /* __REALM_KERBEROS_MEMBERSHIP_H__ */ realmd-0.17.1/service/realm-kerberos-provider.h0000644003225100322510000000232314046520517021733 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_KERBEROS_PROVIDER_H__ #define __REALM_KERBEROS_PROVIDER_H__ #include #include "realm-provider.h" G_BEGIN_DECLS #define REALM_TYPE_KERBEROS_PROVIDER (realm_kerberos_provider_get_type ()) #define REALM_KERBEROS_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_KERBEROS_PROVIDER, RealmKerberosProvider)) #define REALM_IS_KERBEROS_PROVIDER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_KERBEROS_PROVIDER)) typedef struct _RealmKerberosProvider RealmKerberosProvider; GType realm_kerberos_provider_get_type (void) G_GNUC_CONST; RealmProvider * realm_kerberos_provider_new (void); G_END_DECLS #endif /* __REALM_KERBEROS_PROVIDER_H__ */ realmd-0.17.1/service/realm-daemon.c0000644003225100322510000003527114046520517017535 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-all-provider.h" #include "realm-daemon.h" #include "realm-dbus-constants.h" #include "realm-dbus-generated.h" #include "realm-diagnostics.h" #include "realm-errors.h" #include "realm-example-provider.h" #include "realm-invocation.h" #include "realm-kerberos-provider.h" #include "realm-samba-provider.h" #include "realm-settings.h" #include "realm-sssd-provider.h" #include #include #include #include #include #ifdef WITH_JOURNAL #include #else #include #endif #define TIMEOUT 60 /* seconds */ #define HOLD_INTERNAL (GUINT_TO_POINTER (~0)) static GMainLoop *main_loop = NULL; static GHashTable *service_holds = NULL; static gint64 service_quit_at = 0; static guint service_timeout_id = 0; static guint service_bus_name_owner_id = 0; static gboolean service_bus_name_claimed = FALSE; static GDBusObjectManagerServer *object_server = NULL; static gboolean service_debug = FALSE; static gboolean service_replace = FALSE; static gchar *service_install = NULL; static gint service_dbus_fd = -1; /* We use this for registering the dbus errors */ GQuark realm_error = 0; gboolean realm_daemon_is_dbus_peer (void) { return service_dbus_fd != -1; } gboolean realm_daemon_is_install_mode (void) { return service_install != NULL; } gboolean realm_daemon_has_debug_flag (void) { return service_debug; } void realm_daemon_hold (const gchar *hold) { g_assert (hold != NULL); if (g_hash_table_lookup (service_holds, hold)) g_critical ("realm_daemon_hold: already have hold: %s", hold); g_debug ("holding daemon: %s", hold); g_hash_table_add (service_holds, g_strdup (hold)); } gboolean realm_daemon_release (const gchar *hold) { g_assert (hold != NULL); if (g_hash_table_remove (service_holds, hold)) { g_debug ("released daemon: %s", hold); return TRUE; } return FALSE; } static gboolean on_service_timeout (gpointer data) { gint seconds; gint64 now; service_timeout_id = 0; if (g_hash_table_size (service_holds) > 0) return FALSE; now = g_get_monotonic_time (); if (now >= service_quit_at) { g_debug ("quitting realmd service after timeout"); g_main_loop_quit (main_loop); } else { seconds = (service_quit_at - now) / G_TIME_SPAN_SECOND; service_timeout_id = g_timeout_add_seconds (seconds + 1, on_service_timeout, NULL); } return FALSE; } void realm_daemon_poke (void) { if (g_hash_table_size (service_holds) > 0) return; service_quit_at = g_get_monotonic_time () + (TIMEOUT * G_TIME_SPAN_SECOND); if (service_timeout_id == 0) on_service_timeout (NULL); } static void on_name_acquired (GDBusConnection *connection, const gchar *name, gpointer unused) { service_bus_name_claimed = TRUE; g_debug ("claimed name on bus: %s", name); realm_daemon_poke (); } static void on_name_lost (GDBusConnection *connection, const gchar *name, gpointer unused) { if (!service_bus_name_claimed) g_message ("couldn't claim service name on DBus bus: %s", name); else g_warning ("lost service name on DBus bus: %s", name); } void realm_daemon_export_object (GDBusObjectSkeleton *object) { g_return_if_fail (G_IS_DBUS_OBJECT_MANAGER_SERVER (object_server)); g_return_if_fail (G_IS_DBUS_OBJECT_SKELETON (object)); g_dbus_object_manager_server_export (object_server, object); } static void initialize_service (GDBusConnection *connection) { RealmProvider *all_provider; RealmProvider *provider; realm_invocation_initialize (connection); realm_diagnostics_initialize (connection); object_server = g_dbus_object_manager_server_new (REALM_DBUS_SERVICE_PATH); all_provider = realm_all_provider_new_and_export (connection); if (realm_settings_boolean ("providers", REALM_DBUS_IDENTIFIER_SSSD, TRUE)) { provider = realm_sssd_provider_new (); g_dbus_object_manager_server_export (object_server, G_DBUS_OBJECT_SKELETON (provider)); realm_all_provider_register (all_provider, provider); g_object_unref (provider); } if (realm_settings_boolean ("providers", REALM_DBUS_IDENTIFIER_SAMBA, TRUE)) { provider = realm_samba_provider_new (); g_dbus_object_manager_server_export (object_server, G_DBUS_OBJECT_SKELETON (provider)); realm_all_provider_register (all_provider, provider); g_object_unref (provider); } /* * Some callers rely on realmd to be able to resolve kerberos realm names. * This is a core part of realmd functionality, and this provider is not optional. */ provider = realm_kerberos_provider_new (); g_dbus_object_manager_server_export (object_server, G_DBUS_OBJECT_SKELETON (provider)); realm_all_provider_register (all_provider, provider); g_object_unref (provider); if (realm_settings_boolean ("providers", REALM_DBUS_IDENTIFIER_EXAMPLE, FALSE)) { provider = realm_example_provider_new (); g_dbus_object_manager_server_export (object_server, G_DBUS_OBJECT_SKELETON (provider)); realm_all_provider_register (all_provider, provider); g_object_unref (provider); } g_dbus_object_manager_server_set_connection (object_server, connection); /* Use this to control the life time of the providers */ g_object_set_data_full (G_OBJECT (object_server), "the-provider", all_provider, g_object_unref); /* Matches the hold() in main() */ if (!realm_daemon_release ("startup")) g_warn_if_reached (); g_dbus_connection_start_message_processing (connection); } static void on_bus_get_connection (GObject *source, GAsyncResult *result, gpointer unused) { GBusNameOwnerFlags flags = G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT; GError *error = NULL; GDBusConnection *connection; guint owner_id; connection = g_bus_get_finish (result, &error); if (error != NULL) { g_warning ("couldn't connect to bus: %s", error->message); g_main_loop_quit (main_loop); g_error_free (error); } else { g_debug ("connected to bus"); initialize_service (connection); if (service_replace) flags |= G_BUS_NAME_OWNER_FLAGS_REPLACE; owner_id = g_bus_own_name_on_connection (connection, REALM_DBUS_BUS_NAME, flags, on_name_acquired, on_name_lost, NULL, NULL); service_bus_name_owner_id = owner_id; g_object_unref (connection); } } static void on_peer_connection_new (GObject *source, GAsyncResult *result, gpointer unused) { GDBusConnection *connection; GError *error = NULL; connection = g_dbus_connection_new_finish (result, &error); if (error != NULL) { g_warning ("Couldn't connect to peer: %s", error->message); g_main_loop_quit (main_loop); g_error_free (error); } else { g_debug ("connected to peer"); initialize_service (connection); g_object_unref (connection); } } static gboolean connect_to_bus_or_peer (void) { GSocketConnection *stream; GSocket *socket; GError *error = NULL; gchar *guid; if (service_dbus_fd == -1) { g_bus_get (G_BUS_TYPE_SYSTEM, NULL, on_bus_get_connection, NULL); return TRUE; } socket = g_socket_new_from_fd (service_dbus_fd, &error); if (error != NULL) { g_warning ("Couldn't create socket: %s", error->message); g_error_free (error); return FALSE; } stream = g_socket_connection_factory_create_connection (socket); g_return_val_if_fail (stream != NULL, FALSE); g_object_unref (socket); guid = g_dbus_generate_guid (); g_dbus_connection_new (G_IO_STREAM (stream), guid, G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER | G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS | G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING, NULL, NULL, on_peer_connection_new, NULL); g_free (guid); g_object_unref (stream); return TRUE; } static void on_realm_log_debug (const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data) { GString *string; const gchar *progname; int ret; string = g_string_new (NULL); progname = g_get_prgname (); g_string_append_printf (string, "(%s:%lu): %s%sDEBUG: %s\n", progname ? progname : "process", (gulong)getpid (), log_domain ? log_domain : "", log_domain ? "-" : "", message ? message : "(NULL) message"); ret = write (1, string->str, string->len); /* Yes this is dumb, but gets around compiler warning */ if (ret < 0) fprintf (stderr, "couldn't write debug output"); g_string_free (string, TRUE); } static void on_realm_log_message (const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data) { int level; /* Note that crit and err are the other way around in syslog */ switch (G_LOG_LEVEL_MASK & log_level) { case G_LOG_LEVEL_ERROR: level = LOG_CRIT; break; case G_LOG_LEVEL_CRITICAL: level = LOG_ERR; break; case G_LOG_LEVEL_WARNING: level = LOG_WARNING; break; case G_LOG_LEVEL_MESSAGE: level = LOG_NOTICE; break; case G_LOG_LEVEL_INFO: level = LOG_INFO; break; case G_LOG_LEVEL_DEBUG: level = LOG_DEBUG; break; default: level = LOG_ERR; break; } /* Log to syslog first */ if (log_domain) realm_daemon_syslog (NULL, level, "%s: %s", log_domain, message); else realm_daemon_syslog (NULL, level, "%s", message); /* And then to default handler for aborting and stuff like that */ g_log_default_handler (log_domain, log_level, message, user_data); } static void prepare_syslog (void) { GLogLevelFlags flags = G_LOG_FLAG_FATAL | G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO; #ifndef WITH_JOURNAL openlog ("realmd", 0, LOG_AUTH); #endif g_log_set_handler (NULL, flags, on_realm_log_message, NULL); g_log_set_handler ("Glib", flags, on_realm_log_message, NULL); g_log_set_default_handler (on_realm_log_message, NULL); } #ifdef WITH_JOURNAL void realm_daemon_syslog (const gchar *operation, int prio, const gchar *format, ...) { va_list ap; gchar *message; va_start (ap, format); message = g_strdup_vprintf (format, ap); va_end (ap); sd_journal_send ("MESSAGE=%s", message, "REALMD_OPERATION=%s", operation, "PRIORITY=%i", prio, "SYSLOG_FACILITY=%i", LOG_FAC (LOG_AUTH), "SYSLOG_IDENTIFIER=realmd", NULL); g_free (message); } #else /* !WITH_JOURNAL */ void realm_daemon_syslog (const gchar *operation, int prio, const gchar *format, ...) { va_list ap; va_start (ap, format); vsyslog (prio, format, ap); va_end (ap); } #endif /* !WITH_JOURNAL */ static gboolean on_signal_quit (gpointer data) { g_main_loop_quit (data); return FALSE; } int main (int argc, char *argv[]) { GOptionContext *context; GError *error = NULL; const gchar *env; gchar *path; GOptionEntry option_entries[] = { { "debug", 'd', 0, G_OPTION_ARG_NONE, &service_debug, "Turn on debug output, prevent timeout exit", NULL }, { "install", 0, 0, G_OPTION_ARG_STRING, &service_install, "Turn on installer mode, install to this prefix", NULL }, { "dbus-peer", 0, 0, G_OPTION_ARG_INT, &service_dbus_fd, "Use a peer to peer dbus connection on this fd", NULL }, { "replace", 0, 0, G_OPTION_ARG_NONE, &service_replace, "Replace a running realmd searvice", NULL }, { NULL } }; #ifdef ENABLE_NLS bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); #endif prepare_syslog (); #if !GLIB_CHECK_VERSION(2, 36, 0) g_type_init (); #endif /* * Add /sbin to path as a around for problems with authconfig. * See bug: */ env = g_getenv ("PATH"); path = g_strdup_printf ("%s:/usr/sbin:/sbin", env ? env : "/usr/bin:/bin"); g_setenv ("PATH", path, TRUE); g_free (path); /* Setup our TMPDIR to our own cache directory */ if (g_file_test (CACHEDIR, G_FILE_TEST_IS_DIR)) g_setenv ("TMPDIR", CACHEDIR, TRUE); /* Load the default and platform specific data */ realm_settings_init (); service_debug = realm_settings_boolean ("service", "debug", FALSE); context = g_option_context_new ("realmd"); g_option_context_add_main_entries (context, option_entries, NULL); if (!g_option_context_parse (context, &argc, &argv, &error)) { g_message ("%s", error->message); g_option_context_free (context); g_error_free (error); return 2; } g_option_context_free (context); if (service_install) { if (service_install[0] != '/') { g_message ("Install prefix [%s] must be an absolute path.", service_install); return 1; } if (chdir (service_install) < 0) { g_message ("Couldn't use install prefix: %s: %s", service_install, g_strerror (errno)); return 1; } if (chroot (service_install) < 0) { g_message ("Couldn't chroot into install prefix: %s: %s", service_install, g_strerror (errno)); return 1; } } service_holds = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); if (g_getenv ("REALM_DEBUG")) service_debug = TRUE; if (g_getenv ("REALM_PERSIST") || service_debug || service_install) realm_daemon_hold ("persist-daemon"); if (service_debug) { g_log_set_handler (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, on_realm_log_debug, NULL); g_log_set_always_fatal (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING); } realm_error = realm_error_quark (); realm_daemon_hold ("startup"); g_debug ("starting service"); connect_to_bus_or_peer (); main_loop = g_main_loop_new (NULL, FALSE); g_unix_signal_add (SIGINT, on_signal_quit, main_loop); g_unix_signal_add (SIGTERM, on_signal_quit, main_loop); g_main_loop_run (main_loop); if (service_bus_name_owner_id != 0) g_bus_unown_name (service_bus_name_owner_id); if (object_server != NULL) { g_dbus_object_manager_server_set_connection (object_server, NULL); g_object_unref (object_server); } g_debug ("stopping service"); realm_settings_uninit (); realm_invocation_cleanup (); g_main_loop_unref (main_loop); g_hash_table_unref (service_holds); g_free (service_install); return 0; } realmd-0.17.1/service/realm-options.h0000644003225100322510000000375414311053251017762 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_OPTIONS_H__ #define __REALM_OPTIONS_H__ #include G_BEGIN_DECLS gboolean realm_options_manage_system (GVariant *options, const gchar *realm_name); gboolean realm_options_automatic_install (void); gboolean realm_options_automatic_join (const gchar *realm_name); const gchar * realm_options_computer_ou (GVariant *options, const gchar *realm_name); const gchar * realm_options_user_principal (GVariant *options, const gchar *realm_name); gboolean realm_options_automatic_mapping (GVariant *options, const gchar *realm_name); gboolean realm_options_qualify_names (const gchar *realm_name, gboolean def); gboolean realm_options_check_domain_name (const gchar *domain_name); const gchar * realm_options_computer_name (GVariant *options, const gchar *realm_name); const gchar * realm_options_ad_specific (GVariant *options, const gchar *option_name); gboolean realm_option_use_ldaps (GVariant *options); gboolean realm_option_do_not_touch_config (GVariant *options); G_END_DECLS #endif /* __REALM_OPTIONS_H__ */ realmd-0.17.1/service/realm-network.c0000644003225100322510000002031714046520517017756 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-dbus-constants.h" #include "realm-network.h" typedef struct { gint outstanding; GList *values; } LookupClosure; static void lookup_closure_free (gpointer data) { LookupClosure *lookup = data; g_assert (lookup->outstanding == 0); g_list_free_full (lookup->values, (GDestroyNotify)g_variant_unref); g_free (lookup); } static GVariant * lookup_get_property_finish (GDBusConnection *connection, GAsyncResult *result, const GVariantType *variant_type, GError **error) { GVariant *value = NULL; GVariant *retval; retval = g_dbus_connection_call_finish (connection, result, error); if (retval == NULL) return NULL; g_return_val_if_fail (g_variant_is_of_type (retval, G_VARIANT_TYPE ("(v)")), NULL); g_variant_get (retval, "(v)", &value); if (!g_variant_is_of_type (value, variant_type)) { g_variant_unref (value); return NULL; } return value; } static void lookup_get_property_async (GDBusConnection *connection, const gchar *object_path, const gchar *interface_name, const gchar *prop_name, GAsyncReadyCallback callback, gpointer user_data) { g_dbus_connection_call (connection, "org.freedesktop.NetworkManager", object_path, DBUS_PROPERTIES_INTERFACE, "Get", g_variant_new ("(ss)", interface_name, prop_name), G_VARIANT_TYPE ("(v)"), G_DBUS_CALL_FLAGS_NONE, -1, NULL, callback, user_data); } static void on_options (GObject *object, GAsyncResult *result, gpointer user_data) { GDBusConnection *connection = G_DBUS_CONNECTION (object); GSimpleAsyncResult *res = G_SIMPLE_ASYNC_RESULT (user_data); LookupClosure *lookup = g_simple_async_result_get_op_res_gpointer (res); GError *error = NULL; GVariant *value; value = lookup_get_property_finish (connection, result, G_VARIANT_TYPE ("a{sv}"), &error); if (error != NULL) g_simple_async_result_take_error (res, error); if (value != NULL) lookup->values = g_list_prepend (lookup->values, value); if (lookup->outstanding-- == 1) g_simple_async_result_complete (res); g_object_unref (res); } static void on_dhcp_config (GObject *object, GAsyncResult *result, const char *interface_name, gpointer user_data) { GDBusConnection *connection = G_DBUS_CONNECTION (object); GSimpleAsyncResult *res = G_SIMPLE_ASYNC_RESULT (user_data); LookupClosure *lookup = g_simple_async_result_get_op_res_gpointer (res); GError *error = NULL; GVariant *value; const gchar *path; value = lookup_get_property_finish (connection, result, G_VARIANT_TYPE_OBJECT_PATH, &error); if (error != NULL) g_simple_async_result_take_error (res, error); if (value != NULL) { path = g_variant_get_string (value, NULL); if (path && !g_str_equal (path, "") && !g_str_equal (path, "/")) { lookup_get_property_async (connection, path, interface_name, "Options", on_options, g_object_ref (res)); lookup->outstanding++; } g_variant_unref (value); } if (lookup->outstanding-- == 1) g_simple_async_result_complete (res); g_object_unref (res); } static void on_dhcp4_config (GObject *object, GAsyncResult *result, gpointer user_data) { on_dhcp_config (object, result, "org.freedesktop.NetworkManager.DHCP4Config", user_data); } static void on_dhcp6_config (GObject *object, GAsyncResult *result, gpointer user_data) { on_dhcp_config (object, result, "org.freedesktop.NetworkManager.DHCP6Config", user_data); } static void on_devices (GObject *object, GAsyncResult *result, gpointer user_data) { GDBusConnection *connection = G_DBUS_CONNECTION (object); GSimpleAsyncResult *res = G_SIMPLE_ASYNC_RESULT (user_data); LookupClosure *lookup = g_simple_async_result_get_op_res_gpointer (res); GError *error = NULL; const gchar **paths; GVariant *value; gint i = 0; value = lookup_get_property_finish (connection, result, G_VARIANT_TYPE_OBJECT_PATH_ARRAY, &error); if (error != NULL) g_simple_async_result_take_error (res, error); if (value != NULL) { paths = g_variant_get_objv (value, NULL); for (i = 0; paths[i] != NULL; i++) { lookup_get_property_async (connection, paths[i], "org.freedesktop.NetworkManager.Device", "Dhcp4Config", on_dhcp4_config, g_object_ref (res)); lookup->outstanding++; lookup_get_property_async (connection, paths[i], "org.freedesktop.NetworkManager.Device", "Dhcp6Config", on_dhcp6_config, g_object_ref (res)); lookup->outstanding++; } g_variant_unref (value); } if (lookup->outstanding-- == 1) g_simple_async_result_complete (res); g_object_unref (res); } static void on_active_connections (GObject *object, GAsyncResult *result, gpointer user_data) { GDBusConnection *connection = G_DBUS_CONNECTION (object); GSimpleAsyncResult *res = G_SIMPLE_ASYNC_RESULT (user_data); LookupClosure *lookup = g_simple_async_result_get_op_res_gpointer (res); GError *error = NULL; const gchar **paths; GVariant *value; gint i; value = lookup_get_property_finish (connection, result, G_VARIANT_TYPE_OBJECT_PATH_ARRAY, &error); if (error != NULL) g_simple_async_result_take_error (res, error); if (value != NULL) { paths = g_variant_get_objv (value, NULL); for (i = 0; paths[i] != NULL; i++) { lookup_get_property_async (connection, paths[i], "org.freedesktop.NetworkManager.Connection.Active", "Devices", on_devices, g_object_ref (res)); lookup->outstanding++; } g_variant_unref (value); } if (lookup->outstanding-- == 1) g_simple_async_result_complete (res); g_object_unref (res); } void realm_network_get_dhcp_domain_async (GDBusConnection *connection, GAsyncReadyCallback callback, gpointer user_data) { GSimpleAsyncResult *res; LookupClosure *lookup; g_return_if_fail (G_IS_DBUS_CONNECTION (connection)); res = g_simple_async_result_new (NULL, callback, user_data, realm_network_get_dhcp_domain_async); lookup = g_new0 (LookupClosure, 1); g_simple_async_result_set_op_res_gpointer (res, lookup, lookup_closure_free); lookup_get_property_async (connection, "/org/freedesktop/NetworkManager", "org.freedesktop.NetworkManager", "ActiveConnections", on_active_connections, g_object_ref (res)); lookup->outstanding++; g_object_unref (res); } gchar * realm_network_get_dhcp_domain_finish (GAsyncResult *result, GError **error) { GSimpleAsyncResult *res; LookupClosure *lookup; gchar *domain; GList *l; g_return_val_if_fail (g_simple_async_result_is_valid (result, NULL, realm_network_get_dhcp_domain_async), NULL); g_return_val_if_fail (error == NULL || *error == NULL, NULL); res = G_SIMPLE_ASYNC_RESULT (result); lookup = g_simple_async_result_get_op_res_gpointer (res); for (l = lookup->values; l != NULL; l = g_list_next (l)) { if (g_variant_lookup (l->data, "domain_name", "s", &domain)) { if (domain && domain[0]) return domain; g_free (domain); } } /* Only report errors if no domain was found */ g_simple_async_result_propagate_error (res, error); return NULL; } realmd-0.17.1/service/realm-disco-domain.h0000644003225100322510000000213214046520517020633 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_DISCO_DOMAIN_H__ #define __REALM_DICSO_DOMAIN_H__ #include "realm-disco.h" #include G_BEGIN_DECLS void realm_disco_domain_async (const gchar *string, gboolean use_ldaps, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data); RealmDisco * realm_disco_domain_finish (GAsyncResult *result, GError **error); G_END_DECLS #endif /* __REALM_DISCO_DOMAIN_H__ */ realmd-0.17.1/service/realm-adcli-enroll.c0000644003225100322510000002247114046520517020635 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-adcli-enroll.h" #include "realm-command.h" #include "realm-daemon.h" #include "realm-diagnostics.h" #include "realm-dn-util.h" #include "realm-errors.h" #include "realm-ini-config.h" #include "realm-options.h" #include "realm-settings.h" static void on_join_process (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; GString *output = NULL; gint status; status = realm_command_run_finish (result, &output, &error); if (error == NULL && status != 0) { switch (status) { case 2: /* ADCLI_ERR_UNEXPECTED */ g_set_error (&error, REALM_ERROR, REALM_ERROR_INTERNAL, "Internal unexpected error joining the domain"); break; case 6: /* ADCLI_ERR_CREDENTIALS */ g_set_error (&error, REALM_ERROR, REALM_ERROR_AUTH_FAILED, "Insufficient permissions to join the domain"); break; default: g_set_error (&error, REALM_ERROR, REALM_ERROR_FAILED, "Failed to join the domain"); break; } } if (error == NULL) { g_task_return_boolean (task, TRUE); } else { g_task_return_error (task, error); } if (output) g_string_free (output, TRUE); g_object_unref (task); } void realm_adcli_enroll_join_async (RealmDisco *disco, RealmCredential *cred, GVariant *options, gboolean use_ldaps, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { gchar *environ[] = { "LANG=C", NULL }; GInetAddress *address; const gchar *computer_ou; GTask *task; GBytes *input = NULL; const gchar *upn; GPtrArray *args; const gchar *os_n = NULL; const gchar *os_v = NULL; gchar *ccache_arg = NULL; gchar *upn_arg = NULL; gchar *server_arg = NULL; gchar *ou_arg = NULL; const gchar *computer_name = NULL; g_return_if_fail (cred != NULL); g_return_if_fail (disco != NULL); g_return_if_fail (invocation != NULL); task = g_task_new (NULL, NULL, callback, user_data); args = g_ptr_array_new (); /* Use our custom smb.conf */ g_ptr_array_add (args, (gpointer)realm_settings_path ("adcli")); g_ptr_array_add (args, "join"); g_ptr_array_add (args, "--verbose"); g_ptr_array_add (args, "--domain"); g_ptr_array_add (args, (gpointer)disco->domain_name); g_ptr_array_add (args, "--domain-realm"); g_ptr_array_add (args, (gpointer)disco->kerberos_realm); if (use_ldaps) { g_ptr_array_add (args, "--use-ldaps"); } if (G_IS_INET_SOCKET_ADDRESS (disco->server_address)) { address = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (disco->server_address)); server_arg = g_inet_address_to_string (address); if (server_arg) { g_ptr_array_add (args, "--domain-controller"); g_ptr_array_add (args, server_arg); } } else if (disco->explicit_server) { g_ptr_array_add (args, "--domain-controller"); g_ptr_array_add (args, (gpointer)disco->explicit_server); } /* Pass manually configured or truncated computer name to adcli */ computer_name = realm_options_computer_name (options, disco->domain_name); if (computer_name != NULL) { realm_diagnostics_info (invocation, "Joining using a manual netbios name: %s", computer_name); g_ptr_array_add (args, "--computer-name"); g_ptr_array_add (args, (gpointer)computer_name); } else if (disco->explicit_netbios) { realm_diagnostics_info (invocation, "Joining using a truncated netbios name: %s", disco->explicit_netbios); g_ptr_array_add (args, "--computer-name"); g_ptr_array_add (args, disco->explicit_netbios); } computer_ou = realm_options_computer_ou (options, disco->domain_name); if (computer_ou != NULL) { ou_arg = realm_dn_util_build_qualified (computer_ou, disco->domain_name); g_ptr_array_add (args, "--computer-ou"); if (ou_arg) g_ptr_array_add (args, ou_arg); else g_ptr_array_add (args, (gpointer)computer_ou); } os_n = realm_options_ad_specific (options, "os-name"); if (os_n != NULL && !g_str_equal (os_n, "")) { g_ptr_array_add (args, "--os-name"); g_ptr_array_add (args, (gpointer)os_n); } os_v = realm_options_ad_specific (options, "os-version"); if (os_v != NULL && !g_str_equal (os_v, "")) { g_ptr_array_add (args, "--os-version"); g_ptr_array_add (args, (gpointer)os_v); } switch (cred->type) { case REALM_CREDENTIAL_AUTOMATIC: g_ptr_array_add (args, "--login-type"); g_ptr_array_add (args, "computer"); g_ptr_array_add (args, "--no-password"); break; case REALM_CREDENTIAL_CCACHE: g_ptr_array_add (args, "--login-type"); g_ptr_array_add (args, "user"); ccache_arg = g_strdup_printf ("--login-ccache=%s", cred->x.ccache.file); g_ptr_array_add (args, ccache_arg); break; case REALM_CREDENTIAL_PASSWORD: input = g_bytes_ref (cred->x.password.value); g_ptr_array_add (args, "--login-type"); g_ptr_array_add (args, "user"); g_ptr_array_add (args, "--login-user"); g_ptr_array_add (args, cred->x.password.name); g_ptr_array_add (args, "--stdin-password"); break; case REALM_CREDENTIAL_SECRET: input = g_bytes_ref (cred->x.secret.value); g_ptr_array_add (args, "--login-type"); g_ptr_array_add (args, "computer"); g_ptr_array_add (args, "--stdin-password"); break; } upn = realm_options_user_principal (options, disco->domain_name); if (upn) { if (g_str_equal (upn, "")) { g_ptr_array_add (args, "--user-principal"); } else { upn_arg = g_strdup_printf ("--user-principal=%s", upn); g_ptr_array_add (args, upn_arg); } } g_ptr_array_add (args, NULL); realm_command_runv_async ((gchar **)args->pdata, environ, input, invocation, on_join_process, g_object_ref (task)); g_ptr_array_free (args, TRUE); g_object_unref (task); if (input) g_bytes_unref (input); free (ccache_arg); free (upn_arg); free (server_arg); free (ou_arg); } gboolean realm_adcli_enroll_join_finish (GAsyncResult *result, GError **error) { g_return_val_if_fail (g_task_is_valid (result, NULL), FALSE); return g_task_propagate_boolean (G_TASK (result), error); } void realm_adcli_enroll_delete_async (RealmDisco *disco, RealmCredential *cred, GVariant *options, gboolean use_ldaps, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { gchar *environ[] = { "LANG=C", NULL }; GInetAddress *address; GTask *task; GBytes *input = NULL; GPtrArray *args; gchar *ccache_arg = NULL; gchar *server_arg = NULL; g_return_if_fail (cred != NULL); g_return_if_fail (disco != NULL); g_return_if_fail (invocation != NULL); task = g_task_new (NULL, NULL, callback, user_data); args = g_ptr_array_new (); /* Use our custom smb.conf */ g_ptr_array_add (args, (gpointer)realm_settings_path ("adcli")); g_ptr_array_add (args, "delete-computer"); g_ptr_array_add (args, "--verbose"); g_ptr_array_add (args, "--domain"); g_ptr_array_add (args, (gpointer)disco->domain_name); g_ptr_array_add (args, "--domain-realm"); g_ptr_array_add (args, (gpointer)disco->kerberos_realm); if (use_ldaps) { g_ptr_array_add (args, "--use-ldaps"); } if (G_IS_INET_SOCKET_ADDRESS (disco->server_address)) { address = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (disco->server_address)); server_arg = g_inet_address_to_string (address); if (server_arg) { g_ptr_array_add (args, "--domain-controller"); g_ptr_array_add (args, server_arg); } } else if (disco->explicit_server) { g_ptr_array_add (args, "--domain-controller"); g_ptr_array_add (args, (gpointer)disco->explicit_server); } switch (cred->type) { case REALM_CREDENTIAL_AUTOMATIC: case REALM_CREDENTIAL_SECRET: g_return_if_reached (); break; case REALM_CREDENTIAL_CCACHE: ccache_arg = g_strdup_printf ("--login-ccache=%s", cred->x.ccache.file); g_ptr_array_add (args, ccache_arg); break; case REALM_CREDENTIAL_PASSWORD: input = g_bytes_ref (cred->x.password.value); g_ptr_array_add (args, "--login-user"); g_ptr_array_add (args, cred->x.password.name); g_ptr_array_add (args, "--stdin-password"); break; } g_ptr_array_add (args, NULL); realm_command_runv_async ((gchar **)args->pdata, environ, input, invocation, on_join_process, g_object_ref (task)); g_ptr_array_free (args, TRUE); g_object_unref (task); if (input) g_bytes_unref (input); free (ccache_arg); g_free (server_arg); } gboolean realm_adcli_enroll_delete_finish (GAsyncResult *result, GError **error) { g_return_val_if_fail (g_task_is_valid (result, NULL), FALSE); return g_task_propagate_boolean (G_TASK (result), error); } realmd-0.17.1/service/realm-disco-domain.c0000644003225100322510000002120514307637220020630 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-command.h" #include "realm-dbus-constants.h" #include "realm-diagnostics.h" #include "realm-disco.h" #include "realm-disco-dns.h" #include "realm-disco-domain.h" #include "realm-disco-mscldap.h" #include "realm-disco-rootdse.h" #include "realm-errors.h" #include "realm-invocation.h" #include "realm-network.h" #include typedef struct _Callback { GAsyncReadyCallback function; gpointer user_data; struct _Callback *next; } Callback; typedef struct { GObject parent; gchar *input; gboolean use_ldaps; GCancellable *cancellable; GDBusMethodInvocation *invocation; GSocketAddressEnumerator *enumerator; gint outstanding; gboolean completed; RealmDisco *disco; Callback *callback; } RealmDiscoDomain; typedef struct { GObjectClass parent; } RealmDiscoDomainClass; #define REALM_TYPE_DISCO_DOMAIN (realm_disco_domain_get_type ()) #define REALM_DISCO_DOMAIN(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_DISCO_DOMAIN, RealmDiscoDomain)) #define REALM_IS_DISCO_DOMAIN(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_DISCO_DOMAIN)) static GHashTable *discover_cache = NULL; static void step_discover (RealmDiscoDomain *self, RealmDisco *disco); GType realm_disco_domain_get_type (void) G_GNUC_CONST; void realm_disco_domain_async_result_init (GAsyncResultIface *iface); G_DEFINE_TYPE_WITH_CODE (RealmDiscoDomain, realm_disco_domain, G_TYPE_OBJECT, G_IMPLEMENT_INTERFACE (G_TYPE_ASYNC_RESULT, realm_disco_domain_async_result_init); ); static void realm_disco_domain_init (RealmDiscoDomain *self) { self->cancellable = g_cancellable_new (); } static void realm_disco_domain_finalize (GObject *obj) { RealmDiscoDomain *self = REALM_DISCO_DOMAIN (obj); g_free (self->input); g_object_unref (self->cancellable); g_object_unref (self->invocation); g_clear_object (&self->enumerator); realm_disco_unref (self->disco); g_assert (self->callback == NULL); G_OBJECT_CLASS (realm_disco_domain_parent_class)->finalize (obj); } static void realm_disco_domain_class_init (RealmDiscoDomainClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->finalize = realm_disco_domain_finalize; } static GObject * realm_disco_domain_get_source_object (GAsyncResult *result) { return g_object_ref (result); } static gpointer realm_disco_domain_get_user_data (GAsyncResult *result) { /* What is this useful for? */ g_return_val_if_reached (NULL); } void realm_disco_domain_async_result_init (GAsyncResultIface *iface) { iface->get_source_object = realm_disco_domain_get_source_object; iface->get_user_data = realm_disco_domain_get_user_data; } static void complete_discover (RealmDiscoDomain *self) { Callback *call, *next; g_assert (!self->completed); self->completed = TRUE; /* No longer in the concurrency cache */ g_hash_table_remove (discover_cache, self->input); if (g_hash_table_size (discover_cache) == 0) g_hash_table_destroy (discover_cache); discover_cache = NULL; /* Stop all other results */ g_cancellable_cancel (self->cancellable); call = self->callback; self->callback = NULL; if (self->disco) realm_diagnostics_info (self->invocation, "Successfully discovered: %s", self->disco->domain_name); while (call != NULL) { next = call->next; if (call->function) (call->function) (NULL, G_ASYNC_RESULT (self), call->user_data); g_free (call); call = next; } } static void on_discover_rootdse (GObject *source, GAsyncResult *result, gpointer user_data) { RealmDiscoDomain *self = REALM_DISCO_DOMAIN (user_data); GError *error = NULL; RealmDisco *disco; self->outstanding--; disco = realm_disco_rootdse_finish (result, &error); if (error && !self->completed) realm_diagnostics_error (self->invocation, error, NULL); g_clear_error (&error); step_discover (self, disco); g_object_unref (self); } static void on_discover_next_address (GObject *source, GAsyncResult *result, gpointer user_data) { RealmDiscoDomain *self = REALM_DISCO_DOMAIN (user_data); GSocketAddressEnumerator *enumerator = G_SOCKET_ADDRESS_ENUMERATOR (source); GError *error = NULL; GSocketAddress *address; GInetSocketAddress *inet; const gchar *explicit_host; RealmDiscoDnsHint hint; gchar *string; if (self->completed) { g_object_unref (self); return; } address = g_socket_address_enumerator_next_finish (enumerator, result, &error); if (error != NULL || address == NULL) { if (error && !self->completed && !g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) realm_diagnostics_error (self->invocation, error, "Couldn't lookup realm DNS records"); g_clear_error (&error); g_clear_object (&self->enumerator); } else { inet = G_INET_SOCKET_ADDRESS (address); string = g_inet_address_to_string (g_inet_socket_address_get_address (inet)); hint = realm_disco_dns_get_hint (enumerator); if (hint & REALM_DISCO_IS_SERVER) explicit_host = realm_disco_dns_get_name (enumerator); else explicit_host = NULL; realm_diagnostics_info (self->invocation, "Performing LDAP DSE lookup on: %s", string); realm_disco_rootdse_async (address, explicit_host, self->use_ldaps, self->invocation, self->cancellable, on_discover_rootdse, g_object_ref (self)); self->outstanding++; g_free (string); } step_discover (self, NULL); g_clear_object (&address); g_object_unref (self); } static void step_discover (RealmDiscoDomain *self, RealmDisco *disco) { /* Already done, just skip these results */ if (self->completed) { realm_disco_unref (disco); /* Either have a result, or finished searching: done */ } else if (disco || (self->enumerator == NULL && self->outstanding == 0)) { self->disco = disco; complete_discover (self); /* Otherwise try up to three servers at once */ } else if (self->enumerator && self->outstanding < 3) { g_socket_address_enumerator_next_async (self->enumerator, self->cancellable, on_discover_next_address, g_object_ref (self)); } } static void on_cancel_propagate (GCancellable *source, gpointer dest) { g_cancellable_cancel (dest); } void realm_disco_domain_async (const gchar *string, gboolean use_ldaps, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmDiscoDomain *self; GCancellable *cancellable; Callback *call; g_return_if_fail (string != NULL); g_return_if_fail (invocation == NULL || G_IS_DBUS_METHOD_INVOCATION (invocation)); if (!discover_cache) discover_cache = g_hash_table_new (g_str_hash, g_str_equal); self = g_hash_table_lookup (discover_cache, string); if (self == NULL) { self = g_object_new (REALM_TYPE_DISCO_DOMAIN, NULL); self->input = g_strdup (string); self->use_ldaps = use_ldaps; self->invocation = g_object_ref (invocation); self->enumerator = realm_disco_dns_enumerate_servers (string, use_ldaps, invocation); g_hash_table_insert (discover_cache, self->input, self); g_assert (!self->completed); cancellable = realm_invocation_get_cancellable (invocation); if (cancellable) { g_cancellable_connect (cancellable, (GCallback)on_cancel_propagate, g_object_ref (self->cancellable), g_object_unref); } step_discover (self, NULL); } else { g_assert (!self->completed); g_object_ref (self); } call = g_new0 (Callback, 1); call->function = callback; call->user_data = user_data; call->next = self->callback; self->callback = call; g_object_unref (self); } RealmDisco * realm_disco_domain_finish (GAsyncResult *result, GError **error) { RealmDiscoDomain *self; g_return_val_if_fail (error == NULL || *error == NULL, NULL); self = REALM_DISCO_DOMAIN (result); /* Didn't find a valid domain */ if (!self->disco) return NULL; return realm_disco_ref (self->disco); } realmd-0.17.1/service/realmd-redhat.conf0000644003225100322510000000336214046520517020404 0ustar00sbosesbose00000000000000# Distro specific overrides for redhat [paths] smb.conf = /etc/samba/smb.conf krb5.conf = /etc/krb5.conf [samba-packages] samba-common-tools = /usr/bin/net [winbind-packages] samba-winbind = /usr/sbin/winbindd samba-winbind-clients = /usr/bin/wbinfo oddjob = /usr/sbin/oddjobd oddjob-mkhomedir = /usr/libexec/oddjob/mkhomedir [sssd-packages] sssd = /usr/sbin/sssd oddjob = /usr/sbin/oddjobd oddjob-mkhomedir = /usr/libexec/oddjob/mkhomedir [adcli-packages] adcli = /usr/sbin/adcli [ipa-packages] freeipa-client = /usr/sbin/ipa-client-install [commands] winbind-enable-logins = /usr/bin/sh -c "/usr/bin/authselect select winbind with-mkhomedir --force && /usr/bin/systemctl enable oddjobd.service && /usr/bin/systemctl start oddjobd.service" winbind-disable-logins = /usr/bin/authselect select sssd with-mkhomedir winbind-enable-service = /usr/bin/systemctl enable winbind.service winbind-disable-service = /usr/bin/systemctl disable winbind.service winbind-restart-service = /usr/bin/systemctl restart winbind.service winbind-stop-service = /usr/bin/systemctl stop winbind.service sssd-enable-logins = /usr/bin/sh -c "/usr/bin/authselect select sssd with-mkhomedir --force && /usr/bin/systemctl enable oddjobd.service && /usr/bin/systemctl start oddjobd.service" sssd-disable-logins = /usr/bin/authselect select sssd with-mkhomedir sssd-enable-service = /usr/bin/systemctl enable sssd.service sssd-disable-service = /usr/bin/systemctl disable sssd.service sssd-restart-service = /usr/bin/systemctl restart sssd.service sssd-stop-service = /usr/bin/systemctl stop sssd.service sssd-caches-flush = /usr/sbin/sss_cache --users --groups --netgroups --services --autofs-maps # Fedora and RHEL have libnss_sss in place by default, this is no longer needed name-caches-flush = realmd-0.17.1/service/realm-ldap.h0000644003225100322510000000307014046520517017207 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_LDAP_H__ #define __REALM_LDAP_H__ #include #include #define REALM_IO_CANCELLED 1 << 10 #define REALM_LDAP_ERROR (realm_ldap_error_get_quark ()) GQuark realm_ldap_error_get_quark (void) G_GNUC_CONST; void realm_ldap_set_error (GError **error, LDAP *ldap, int code); typedef GIOCondition (* RealmLdapCallback) (LDAP *ldap, GIOCondition cond, gpointer data); GSource * realm_ldap_connect_anonymous (GSocketAddress *address, GSocketProtocol protocol, gboolean use_ldaps, GCancellable *cancellable); void realm_ldap_set_condition (GSource *source, GIOCondition cond); #endif /* __REALM_LDAP_H__ */ realmd-0.17.1/service/realm-sssd-ad.c0000644003225100322510000005440014314774345017633 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-adcli-enroll.h" #include "realm-command.h" #include "realm-dbus-constants.h" #include "realm-diagnostics.h" #include "realm-errors.h" #include "realm-kerberos-config.h" #include "realm-kerberos-membership.h" #include "realm-options.h" #include "realm-packages.h" #include "realm-samba-enroll.h" #include "realm-service.h" #include "realm-settings.h" #include "realm-sssd.h" #include "realm-sssd-ad.h" #include "realm-sssd-config.h" #include #include #include #include struct _RealmSssdAd { RealmSssd parent; }; typedef struct { RealmSssdClass parent_class; } RealmSssdAdClass; static const gchar *ADCLI_PACKAGES[] = { REALM_DBUS_IDENTIFIER_SSSD, REALM_DBUS_IDENTIFIER_ADCLI, NULL }; static const gchar *SAMBA_PACKAGES[] = { REALM_DBUS_IDENTIFIER_SSSD, REALM_DBUS_IDENTIFIER_SAMBA, NULL }; static const gchar *ALL_PACKAGES[] = { REALM_DBUS_IDENTIFIER_SSSD, REALM_DBUS_IDENTIFIER_ADCLI, REALM_DBUS_IDENTIFIER_SAMBA, NULL }; static void realm_sssd_ad_kerberos_membership_iface (RealmKerberosMembershipIface *iface); G_DEFINE_TYPE_WITH_CODE (RealmSssdAd, realm_sssd_ad, REALM_TYPE_SSSD, G_IMPLEMENT_INTERFACE (REALM_TYPE_KERBEROS_MEMBERSHIP, realm_sssd_ad_kerberos_membership_iface); ); static void realm_sssd_ad_init (RealmSssdAd *self) { } static void realm_sssd_ad_constructed (GObject *obj) { RealmKerberos *kerberos = REALM_KERBEROS (obj); G_OBJECT_CLASS (realm_sssd_ad_parent_class)->constructed (obj); realm_kerberos_set_details (kerberos, REALM_DBUS_OPTION_SERVER_SOFTWARE, REALM_DBUS_IDENTIFIER_ACTIVE_DIRECTORY, REALM_DBUS_OPTION_CLIENT_SOFTWARE, REALM_DBUS_IDENTIFIER_SSSD, NULL); realm_kerberos_set_suggested_admin (kerberos, "Administrator"); realm_kerberos_set_login_policy (kerberos, REALM_KERBEROS_ALLOW_REALM_LOGINS); realm_kerberos_set_required_package_sets (kerberos, ALL_PACKAGES); } typedef struct { GDBusMethodInvocation *invocation; RealmCredential *cred; GVariant *options; RealmDisco *disco; gboolean use_adcli; gboolean use_ldaps; const gchar **packages; } JoinClosure; static void join_closure_free (gpointer data) { JoinClosure *join = data; realm_disco_unref (join->disco); g_object_unref (join->invocation); realm_credential_unref (join->cred); g_variant_ref (join->options); g_free (join); } static void on_enable_nss_done (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; gint status; status = realm_command_run_finish (result, NULL, &error); if (error == NULL && status != 0) g_set_error (&error, REALM_ERROR, REALM_ERROR_INTERNAL, _("Enabling SSSD in nsswitch.conf and PAM failed.")); if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void on_sssd_enable_nss (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); JoinClosure *join = g_task_get_task_data (task); GError *error = NULL; realm_service_enable_and_restart_finish (result, &error); if (error == NULL) { if (!realm_option_do_not_touch_config (join->options)) { realm_command_run_known_async ("sssd-enable-logins", NULL, join->invocation, on_enable_nss_done, g_object_ref (task)); } else { g_task_return_boolean (task, TRUE); } } else { g_task_return_error (task, error); } g_object_unref (task); } static gboolean configure_sssd_for_domain (RealmIniConfig *config, RealmDisco *disco, GVariant *options, gboolean use_adcli, GError **error) { const gchar *services[] = { "nss", "pam", NULL }; GString *realmd_tags; const gchar *access_provider; const gchar *shell; const gchar *explicit_computer_name; gchar *authid = NULL; gboolean qualify; gboolean ret; gchar *section; gchar *home; const gchar *ad_server; home = realm_sssd_build_default_home (realm_settings_string ("users", "default-home")); qualify = realm_options_qualify_names (disco->domain_name, TRUE); shell = realm_settings_string ("users", "default-shell"); explicit_computer_name = realm_options_computer_name (options, disco->domain_name); realmd_tags = g_string_new (""); if (realm_options_manage_system (options, disco->domain_name)) g_string_append (realmd_tags, "manages-system "); g_string_append (realmd_tags, use_adcli ? "joined-with-adcli " : "joined-with-samba "); /* * Explicitly set the netbios authid for sssd to use in these cases, since * otherwise sssd won't know which kerberos principal to use */ if (explicit_computer_name != NULL) authid = g_strdup_printf ("%s$", explicit_computer_name); else if (disco->explicit_netbios) authid = g_strdup_printf ("%s$", disco->explicit_netbios); ad_server = disco->explicit_server; if (disco->netlogon_server_name != NULL && disco->explicit_server != NULL && g_hostname_is_ip_address (disco->explicit_server)) { ad_server = disco->netlogon_server_name; } ret = realm_sssd_config_add_domain (config, disco->domain_name, error, "cache_credentials", "True", "use_fully_qualified_names", qualify ? "True" : "False", "id_provider", "ad", "ad_domain", disco->domain_name, "krb5_realm", disco->kerberos_realm, "krb5_store_password_if_offline", "True", "ldap_id_mapping", realm_options_automatic_mapping (options, disco->domain_name) ? "True" : "False", "realmd_tags", realmd_tags->str, "fallback_homedir", home, "default_shell", shell, "ad_server", ad_server, "ldap_sasl_authid", authid, NULL); if (ret) ret = realm_ini_config_change_list (config, "sssd", "services", ", ", services, NULL, error); g_free (authid); g_string_free (realmd_tags, TRUE); if (ret) { if (realm_options_manage_system (options, disco->domain_name)) access_provider = "ad"; else access_provider = "simple"; section = realm_sssd_config_domain_to_section (disco->domain_name); ret = realm_sssd_set_login_policy (config, section, access_provider, NULL, NULL, FALSE, error); free (section); } g_free (home); return ret; } static void on_sssd_restarted (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); GError *error = NULL; realm_service_restart_finish (result, &error); if (error != NULL) g_task_return_error (task, error); else g_task_return_boolean (task, TRUE); g_object_unref (task); } static void on_join_do_sssd (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); JoinClosure *join = g_task_get_task_data (task); RealmSssd *sssd = g_task_get_source_object (task); GError *error = NULL; if (join->use_adcli) { if (!realm_adcli_enroll_join_finish (result, &error)) { if (join->cred->type == REALM_CREDENTIAL_AUTOMATIC && g_error_matches (error, REALM_ERROR, REALM_ERROR_AUTH_FAILED)) { g_clear_error (&error); g_set_error (&error, REALM_ERROR, REALM_ERROR_AUTH_FAILED, _("Unable to automatically join the domain")); } } } else { realm_samba_enroll_join_finish (result, &error); } if (error == NULL && !realm_option_do_not_touch_config (join->options)) { configure_sssd_for_domain (realm_sssd_get_config (sssd), join->disco, join->options, join->use_adcli, &error); } if (error == NULL && !realm_option_do_not_touch_config (join->options)) { configure_krb5_conf_for_domain (join->disco->kerberos_realm, &error); if (error != NULL) { realm_diagnostics_error (join->invocation, error, "Failed to update Kerberos " "configuration, not fatal, " "please check manually"); g_clear_error (&error); } } if (error == NULL) { if (!realm_option_do_not_touch_config (join->options)) { realm_service_enable_and_restart ("sssd", join->invocation, on_sssd_enable_nss, g_object_ref (task)); } else { realm_service_restart ("sssd", join->invocation, on_sssd_restarted, g_object_ref (task)); } } else { g_task_return_error (task, error); } g_object_unref (task); } static void on_install_do_join (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); JoinClosure *join = g_task_get_task_data (task); GError *error = NULL; realm_packages_install_finish (result, &error); if (error == NULL) { if (join->use_adcli) { realm_adcli_enroll_join_async (join->disco, join->cred, join->options, join->use_ldaps, join->invocation, on_join_do_sssd, g_object_ref (task)); } else { realm_samba_enroll_join_async (join->disco, join->cred, join->options, join->invocation, on_join_do_sssd, g_object_ref (task)); } } else { g_task_return_error (task, error); } g_object_unref (task); } static gboolean parse_join_options (JoinClosure *join, RealmCredential *cred, GVariant *options, GError **error) { const gchar *software; /* Figure out the method that we're going to use to enroll */ if (g_variant_lookup (options, REALM_DBUS_OPTION_MEMBERSHIP_SOFTWARE, "&s", &software)) { if (!g_str_equal (software, REALM_DBUS_IDENTIFIER_ADCLI) && !g_str_equal (software, REALM_DBUS_IDENTIFIER_SAMBA)) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, _("Unsupported or unknown membership software '%s'"), software); return FALSE; } } else { software = NULL; } /* * If we are enrolling with a one time password, or automatically, use * adcli. Samba doesn't support computer passwords or using reset accounts. */ if ((cred->type == REALM_CREDENTIAL_SECRET && cred->owner == REALM_CREDENTIAL_OWNER_NONE) || (cred->type == REALM_CREDENTIAL_AUTOMATIC && cred->owner == REALM_CREDENTIAL_OWNER_NONE)) { if (!software) software = REALM_DBUS_IDENTIFIER_ADCLI; if (!g_str_equal (software, REALM_DBUS_IDENTIFIER_ADCLI)) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_NOT_SUPPORTED, _("Joining a domain with a one time password is only supported with the '%s' membership software"), REALM_DBUS_IDENTIFIER_ADCLI); return FALSE; } /* * If we are enrolling with a user password, then we have to use samba, * adcli only supports admin passwords. */ } else if (cred->type == REALM_CREDENTIAL_PASSWORD && cred->owner == REALM_CREDENTIAL_OWNER_USER) { if (!software) software = REALM_DBUS_IDENTIFIER_SAMBA; if (!g_str_equal (software, REALM_DBUS_IDENTIFIER_SAMBA)) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, _("Joining a domain with a user password is only supported with the '%s' membership software"), REALM_DBUS_IDENTIFIER_SAMBA); return FALSE; } /* * For other valid types of credentials we prefer adcli. */ } else if (cred->type == REALM_CREDENTIAL_CCACHE || (cred->type == REALM_CREDENTIAL_PASSWORD && cred->owner == REALM_CREDENTIAL_OWNER_ADMIN)) { if (!software) software = REALM_DBUS_IDENTIFIER_ADCLI; /* It would be odd to get here */ } else { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, _("Unsupported credentials for joining a domain")); return FALSE; } g_assert (software != NULL); /* * Check if ldaps should be used and if membership software supports * it. */ join->use_ldaps = realm_option_use_ldaps (options); if (join->use_ldaps && g_str_equal (software, REALM_DBUS_IDENTIFIER_SAMBA)) { realm_diagnostics_info (join->invocation, "Membership software %s does " "not support ldaps, trying " "without.", software); } if (g_str_equal (software, REALM_DBUS_IDENTIFIER_ADCLI)) { join->use_adcli = TRUE; join->packages = ADCLI_PACKAGES; } else { join->use_adcli = FALSE; join->packages = SAMBA_PACKAGES; } return TRUE; } static void realm_sssd_ad_join_async (RealmKerberosMembership *membership, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmKerberos *realm = REALM_KERBEROS (membership); RealmSssd *sssd = REALM_SSSD (realm); GTask *task; JoinClosure *join; GError *error = NULL; task = g_task_new (realm, NULL, callback, user_data); join = g_new0 (JoinClosure, 1); join->disco = realm_disco_ref (realm_kerberos_get_disco (realm)); join->invocation = g_object_ref (invocation); join->options = g_variant_ref (options); join->cred = realm_credential_ref (cred); g_task_set_task_data (task, join, join_closure_free); /* Make sure not already enrolled in a realm */ if (!realm_option_do_not_touch_config (options) && realm_sssd_get_config_section (sssd) != NULL) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_ALREADY_CONFIGURED, _("Already joined to this domain")); } else if (!realm_option_do_not_touch_config (options) && realm_sssd_config_have_domain (realm_sssd_get_config (sssd), realm_kerberos_get_realm_name (realm))) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_ALREADY_CONFIGURED, _("A domain with this name is already configured")); } else if (!parse_join_options (join, cred, options, &error)) { g_task_return_error (task, error); /* Prepared successfully without an error */ } else { realm_packages_install_async (join->packages, join->invocation, g_dbus_method_invocation_get_connection (join->invocation), on_install_do_join, g_object_ref (task)); } g_object_unref (task); } static const RealmCredential * realm_sssd_ad_join_creds (RealmKerberosMembership *membership) { /* * Each line is a combination of owner and what kind of credentials are supported, * same for enroll/leave. We can't accept a ccache with samba because of certain * corner cases. However we do accept ccache for an admin user, and then we use * adcli with that ccache. */ static const RealmCredential creds[] = { { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_ADMIN, }, { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_USER, }, { REALM_CREDENTIAL_CCACHE, REALM_CREDENTIAL_OWNER_ADMIN, }, { REALM_CREDENTIAL_AUTOMATIC, REALM_CREDENTIAL_OWNER_NONE, }, { REALM_CREDENTIAL_SECRET, REALM_CREDENTIAL_OWNER_NONE, }, { 0, }, }; static const RealmCredential creds_no_auto[] = { { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_ADMIN, }, { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_USER, }, { REALM_CREDENTIAL_CCACHE, REALM_CREDENTIAL_OWNER_ADMIN, }, { REALM_CREDENTIAL_SECRET, REALM_CREDENTIAL_OWNER_NONE, }, { 0, } }; const gchar *name; name = realm_kerberos_get_name (REALM_KERBEROS (membership)); return realm_options_automatic_join (name) ? creds : creds_no_auto; } typedef struct { GDBusMethodInvocation *invocation; gchar *realm_name; gboolean use_adcli; } LeaveClosure; static void leave_closure_free (gpointer data) { LeaveClosure *leave = data; g_free (leave->realm_name); g_object_unref (leave->invocation); g_free (leave); } static void on_leave_do_deconfigure (GObject *source, GAsyncResult *result, gpointer user_data) { GTask *task = G_TASK (user_data); LeaveClosure *leave = g_task_get_task_data (task); RealmSssd *sssd = g_task_get_source_object (task); GError *error = NULL; /* We don't care if we can leave or not, just continue with other steps */ if (leave->use_adcli) realm_adcli_enroll_delete_finish (result, &error); else realm_samba_enroll_leave_finish (result, &error); if (error != NULL) { realm_diagnostics_error (leave->invocation, error, NULL); g_error_free (error); } realm_sssd_deconfigure_domain_tail (sssd, task, leave->invocation); g_object_unref (task); } static void realm_sssd_ad_leave_async (RealmKerberosMembership *membership, RealmCredential *cred, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmSssdAd *self = REALM_SSSD_AD (membership); RealmKerberos *realm = REALM_KERBEROS (self); RealmSssd *sssd = REALM_SSSD (self); RealmDisco *disco; const gchar *section; GTask *task; LeaveClosure *leave; gchar *tags; gboolean use_ldaps = FALSE; task = g_task_new (self, NULL, callback, user_data); /* Check that enrolled in this realm */ section = realm_sssd_get_config_section (sssd); if (!section) { g_task_return_new_error (task, REALM_ERROR, REALM_ERROR_NOT_CONFIGURED, _("Not currently joined to this domain")); g_object_unref (task); return; } tags = realm_ini_config_get (realm_sssd_get_config (sssd), section, "realmd_tags"); /* This also has the side-effect of populating the disco info if necessary */ disco = realm_kerberos_get_disco (realm); switch (cred->type) { case REALM_CREDENTIAL_AUTOMATIC: realm_sssd_deconfigure_domain_tail (REALM_SSSD (self), task, invocation); break; case REALM_CREDENTIAL_CCACHE: case REALM_CREDENTIAL_PASSWORD: leave = g_new0 (LeaveClosure, 1); leave->realm_name = g_strdup (realm_kerberos_get_realm_name (realm)); leave->invocation = g_object_ref (invocation); leave->use_adcli = strstr (tags ? tags : "", "joined-with-adcli") ? TRUE : FALSE; g_task_set_task_data (task, leave, leave_closure_free); use_ldaps = realm_option_use_ldaps (options); if (leave->use_adcli) { realm_adcli_enroll_delete_async (disco, cred, options, use_ldaps, invocation, on_leave_do_deconfigure, g_object_ref (task)); } else { if (use_ldaps) { realm_diagnostics_info (leave->invocation, "Membership software does " "not support ldaps, trying " "without."); } realm_samba_enroll_leave_async (disco, cred, options, invocation, on_leave_do_deconfigure, g_object_ref (task)); } break; default: g_return_if_reached (); } g_free (tags); g_object_unref (task); } static const RealmCredential * realm_sssd_ad_leave_creds (RealmKerberosMembership *membership) { /* For leave, we don't support one-time-password (ie: secret/none) */ static const RealmCredential creds[] = { { REALM_CREDENTIAL_PASSWORD, REALM_CREDENTIAL_OWNER_ADMIN, }, { REALM_CREDENTIAL_CCACHE, REALM_CREDENTIAL_OWNER_ADMIN, }, { REALM_CREDENTIAL_AUTOMATIC, REALM_CREDENTIAL_OWNER_NONE, }, { 0, }, }; return creds; } static gboolean realm_sssd_ad_generic_finish (RealmKerberosMembership *realm, GAsyncResult *result, GError **error) { return g_task_propagate_boolean (G_TASK (result), error); } static void realm_sssd_ad_discover_myself (RealmKerberos *realm, RealmDisco *disco) { RealmSssd *sssd = REALM_SSSD (realm); RealmIniConfig *config; const gchar *section; gchar *dollar; gchar *value; config = realm_sssd_get_config (sssd); section = realm_sssd_get_config_section (sssd); if (section == NULL) return; value = realm_ini_config_get (config, section, "ad_server"); g_free (disco->explicit_server); disco->explicit_server = value; /* * If this field has an authid that looks like a samAccountName * (ie: Netbios name with a $ suffix) then it looks like an explicit * netbios server name has been set. */ value = realm_ini_config_get (config, section, "ldap_sasl_authid"); if (value) { dollar = strrchr (value, '$'); if (dollar && dollar[1] == '\0') { dollar[0] = '\0'; } else { g_free (value); value = NULL; } } g_free (disco->explicit_netbios); disco->explicit_netbios = value; } void realm_sssd_ad_class_init (RealmSssdAdClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); RealmKerberosClass *kerberos_class = REALM_KERBEROS_CLASS (klass); RealmSssdClass *sssd_class = REALM_SSSD_CLASS (klass); object_class->constructed = realm_sssd_ad_constructed; /* The provider in sssd.conf relevant to this realm type */ sssd_class->sssd_conf_provider_name = "ad"; kerberos_class->discover_myself = realm_sssd_ad_discover_myself; } static void realm_sssd_ad_kerberos_membership_iface (RealmKerberosMembershipIface *iface) { iface->join_async = realm_sssd_ad_join_async; iface->join_finish = realm_sssd_ad_generic_finish; iface->join_creds = realm_sssd_ad_join_creds; iface->leave_async = realm_sssd_ad_leave_async; iface->leave_finish = realm_sssd_ad_generic_finish; iface->leave_creds = realm_sssd_ad_leave_creds; } realmd-0.17.1/service/realm-invocation.h0000644003225100322510000000253114046520517020441 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_INVOCATION_H__ #define __REALM_INVOCATION_H__ #include G_BEGIN_DECLS void realm_invocation_initialize (GDBusConnection *connection); void realm_invocation_cleanup (void); gboolean realm_invocation_authorize (GDBusMethodInvocation *invocation); GCancellable * realm_invocation_get_cancellable (GDBusMethodInvocation *invocation); const gchar * realm_invocation_get_operation (GDBusMethodInvocation *invocation); const gchar * realm_invocation_get_key (GDBusMethodInvocation *invocation); gboolean realm_invocation_lock_daemon (GDBusMethodInvocation *invocation); void realm_invocation_unlock_daemon (GDBusMethodInvocation *invocation); G_END_DECLS #endif /* __REALM_INVOCATION_H__ */ realmd-0.17.1/service/realm-kerberos-config.h0000644003225100322510000000207014046520517021345 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2020 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Sumit Bose */ #include "config.h" #ifndef __REALM_KERBEROS_CONFIG_H__ #define __REALM_KERBEROS_CONFIG_H__ #include #include "realm-ini-config.h" RealmIniConfig * realm_kerberos_config_new (GError **error); RealmIniConfig * realm_kerberos_config_new_with_flags (RealmIniFlags flags, GError **error); gboolean configure_krb5_conf_for_domain (const gchar *realm, GError **error ); G_END_DECLS #endif /* __REALM_KERBEROS_CONFIG_H__ */ realmd-0.17.1/service/realm-settings.c0000644003225100322510000001300414046520517020120 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-settings.h" #include static GHashTable *realm_conf = NULL; void realm_settings_add (const gchar *section, const gchar *key, const gchar *value) { GHashTable *sect; sect = g_hash_table_lookup (realm_conf, section); if (sect == NULL) { sect = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); g_hash_table_insert (realm_conf, g_strdup (section), sect); } g_hash_table_insert (sect, g_strdup (key), g_strdup (value)); } gboolean realm_settings_load (const gchar *file_path, GError **error) { GKeyFile *key_file = NULL; GHashTable *section; GError *err = NULL; gchar **groups; gchar **keys; gchar *value; gint i; gint j; key_file = g_key_file_new (); if (!g_key_file_load_from_file (key_file, file_path, G_KEY_FILE_NONE, error)) { g_key_file_free (key_file); return FALSE; } /* Build into a table of strings, simplifies memory handling */ groups = g_key_file_get_groups (key_file, NULL); for (i = 0; groups[i] != NULL; i++) { section = g_hash_table_lookup (realm_conf, groups[i]); if (section == NULL) { section = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); g_hash_table_insert (realm_conf, g_strdup (groups[i]), section); } keys = g_key_file_get_keys (key_file, groups[i], NULL, &err); g_return_val_if_fail (err == NULL, FALSE); for (j = 0; keys[j] != NULL; j++) { value = g_key_file_get_value (key_file, groups[i], keys[j], &err); g_return_val_if_fail (err == NULL, FALSE); g_hash_table_insert (section, g_strdup (keys[j]), value); } g_strfreev (keys); } g_strfreev (groups); g_key_file_free (key_file); return TRUE; } void realm_settings_init (void) { const gchar *default_conf = PRIVATE_DIR "/realmd-defaults.conf"; const gchar *distro_conf = PRIVATE_DIR "/realmd-distro.conf"; const gchar *admin_conf = SYSCONF_DIR "/realmd.conf"; GError *error = NULL; realm_conf = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, (GDestroyNotify)g_hash_table_unref); /* * These are treated like 'linker error' in that we cannot proceed without * this data. The reason it is not compiled into the daemon itself, is * for easier modification by packagers and distros */ realm_settings_load (default_conf, &error); if (error != NULL) { g_error ("couldn't load package configuration file: %s: %s", default_conf, error->message); g_clear_error (&error); } realm_settings_load (distro_conf, &error); if (error != NULL) { g_error ("couldn't load distro configuration file: %s: %s", distro_conf, error->message); g_clear_error (&error); } /* We allow failure of loading or parsing this data, it's only overrides */ realm_settings_load (admin_conf, &error); if (error != NULL) { if (!g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) { g_message ("couldn't load admin configuration file: %s: %s", admin_conf, error->message); } admin_conf = NULL; g_clear_error (&error); } g_debug ("Loaded settings from: %s %s %s", default_conf, distro_conf, admin_conf ? admin_conf : ""); } void realm_settings_uninit (void) { g_assert (realm_conf != NULL); g_hash_table_destroy (realm_conf); realm_conf = NULL; } const gchar * realm_settings_path (const gchar *name) { const gchar *path; path = realm_settings_value ("paths", name); if (path == NULL) { g_warning ("no path found for '%s' in realmd config", name); return "/invalid/or/misconfigured"; } return path; } GHashTable * realm_settings_section (const gchar *section) { return g_hash_table_lookup (realm_conf, section); } const gchar * realm_settings_value (const gchar *section, const gchar *key) { GHashTable *settings; settings = realm_settings_section (section); if (settings == NULL) return NULL; return g_hash_table_lookup (settings, key); } const gchar * realm_settings_string (const gchar *section, const gchar *key) { const gchar *string; string = realm_settings_value (section, key); if (string == NULL) { g_warning ("no value found for '%s/%s' in realmd config", section, key); return ""; } return string; } gdouble realm_settings_double (const gchar *section, const gchar *key, gdouble def) { const gchar *string; gchar *end_ptr = NULL; gdouble val; string = realm_settings_value (section, key); if (string == NULL) return def; val = g_ascii_strtod (string, &end_ptr); if (!end_ptr || *end_ptr != '\0') { g_critical ("invalid %s/%s floating point value '%s' in realmd config", section, key, string); return def; } return val; } gboolean realm_settings_boolean (const gchar *section, const gchar *key, gboolean def) { const gchar *string; string = realm_settings_value (section, key); if (string == NULL) return def; return g_ascii_strcasecmp (string, "true") == 0 || g_ascii_strcasecmp (string, "1") == 0 || g_ascii_strcasecmp (string, "yes") == 0; } realmd-0.17.1/service/realm-all-provider.c0000644003225100322510000002244414046520517020670 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) all later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-all-provider.h" #include "realm-daemon.h" #include "realm-diagnostics.h" #include "realm-errors.h" #include "realm-dbus-constants.h" #include "realm-dbus-generated.h" #include "realm-provider.h" #include #include #include struct _RealmAllProvider { RealmProvider parent; GList *providers; }; typedef struct { RealmProviderClass parent_class; } RealmAllProviderClass; G_DEFINE_TYPE (RealmAllProvider, realm_all_provider, REALM_TYPE_PROVIDER); static void realm_all_provider_init (RealmAllProvider *self) { } static void realm_all_provider_constructed (GObject *obj) { G_OBJECT_CLASS (realm_all_provider_parent_class)->constructed (obj); /* The dbus Name property of the provider */ realm_provider_set_name (REALM_PROVIDER (obj), "All"); } static void update_realms_property (RealmProvider *self) { GPtrArray *paths; GList *realms; GList *l; realms = realm_provider_get_realms (self); paths = g_ptr_array_new (); for (l = realms; l != NULL; l = g_list_next (l)) g_ptr_array_add (paths, (gchar *)g_dbus_object_get_object_path (l->data)); g_ptr_array_add (paths, NULL); g_list_free (realms); realm_provider_set_realm_paths (REALM_PROVIDER (self), (const gchar **)paths->pdata); g_ptr_array_free (paths, TRUE); } static void update_all_properties (RealmProvider *self) { update_realms_property (self); } static void on_provider_notify (GObject *obj, GParamSpec *spec, gpointer user_data) { RealmProvider *self = REALM_PROVIDER (user_data); update_all_properties (self); } typedef struct { GDBusMethodInvocation *invocation; gchar *operation_id; gboolean completed; gint outstanding; GQueue failures; GQueue results; gint relevance; GList *realms; } DiscoverClosure; typedef struct { GList *realms; gint relevance; } DiscoverResult; static void discover_result_free (gpointer data) { DiscoverResult *disco = data; g_list_free_full (disco->realms, g_object_unref); g_free (disco); } static void discover_closure_free (gpointer data) { DiscoverClosure *discover = data; g_free (discover->operation_id); g_object_unref (discover->invocation); while (!g_queue_is_empty (&discover->results)) discover_result_free (g_queue_pop_head (&discover->results)); while (!g_queue_is_empty (&discover->failures)) g_error_free (g_queue_pop_head (&discover->failures)); g_list_free_full (discover->realms, g_object_unref); g_free (discover); } static gint compare_relevance (gconstpointer a, gconstpointer b, gpointer user_data) { const DiscoverResult *disco_a = a; const DiscoverResult *disco_b = b; return disco_b->relevance - disco_a->relevance; } static void discover_process_results (GSimpleAsyncResult *res, DiscoverClosure *discover) { GError *error; DiscoverResult *disco; gboolean any = FALSE; g_queue_sort (&discover->results, compare_relevance, NULL); for (;;) { disco = g_queue_pop_head (&discover->results); if (disco == NULL) break; discover->realms = g_list_concat (discover->realms, disco->realms); disco->realms = NULL; if (disco->relevance > discover->relevance) discover->relevance = disco->relevance; discover_result_free (disco); any = TRUE; } if (!any) { /* If there was a failure, return one of them */ error = g_queue_pop_head (&discover->failures); if (error != NULL) g_simple_async_result_take_error (res, error); } } static void on_provider_discover (GObject *source, GAsyncResult *result, gpointer user_data) { GSimpleAsyncResult *res = G_SIMPLE_ASYNC_RESULT (user_data); DiscoverClosure *discover = g_simple_async_result_get_op_res_gpointer (res); RealmAllProvider *self = REALM_ALL_PROVIDER (g_async_result_get_source_object (user_data)); DiscoverResult *disco; GError *error = NULL; GList *realms; gint relevance; realms = realm_provider_discover_finish (REALM_PROVIDER (source), result, &relevance, &error); if (error == NULL) { disco = g_new0 (DiscoverResult, 1); disco->realms = realms; disco->relevance = relevance; g_queue_push_tail (&discover->results, disco); } else { g_queue_push_tail (&discover->failures, error); } g_assert (discover->outstanding > 0); discover->outstanding--; /* All done at this point? */ if (!discover->completed && discover->outstanding == 0) { discover_process_results (res, discover); discover->completed = TRUE; g_simple_async_result_complete (res); } g_object_unref (res); g_object_unref (self); } static void realm_all_provider_discover_async (RealmProvider *provider, const gchar *string, GVariant *options, GDBusMethodInvocation *invocation, GAsyncReadyCallback callback, gpointer user_data) { RealmAllProvider *self = REALM_ALL_PROVIDER (provider); GSimpleAsyncResult *res; DiscoverClosure *discover; GList *l; res = g_simple_async_result_new (G_OBJECT (self), callback, user_data, realm_all_provider_discover_async); discover = g_new0 (DiscoverClosure, 1); g_queue_init (&discover->results); discover->invocation = g_object_ref (invocation); g_simple_async_result_set_op_res_gpointer (res, discover, discover_closure_free); for (l = self->providers; l != NULL; l = g_list_next (l)) { realm_provider_discover (l->data, string, options, invocation, on_provider_discover, g_object_ref (res)); discover->outstanding++; } /* If no discovery going on then just complete */ if (discover->outstanding == 0) { discover_process_results (res, discover); discover->completed = TRUE; g_simple_async_result_complete_in_idle (res); } g_object_unref (res); } static GList * realm_all_provider_discover_finish (RealmProvider *provider, GAsyncResult *result, gint *relevance, GError **error) { GSimpleAsyncResult *res; DiscoverClosure *discover; GList *realms; res = G_SIMPLE_ASYNC_RESULT (result); if (g_simple_async_result_propagate_error (res, error)) return NULL; discover = g_simple_async_result_get_op_res_gpointer (res); *relevance = discover->relevance; realms = discover->realms; discover->realms = NULL; return realms; } static GList * realm_all_provider_get_realms (RealmProvider *provider) { RealmAllProvider *self = REALM_ALL_PROVIDER (provider); GList *realms = NULL; GList *l; for (l = self->providers; l != NULL; l = g_list_next (l)) realms = g_list_concat (realms, realm_provider_get_realms (l->data)); return realms; } static void realm_all_provider_finalize (GObject *obj) { RealmAllProvider *self = REALM_ALL_PROVIDER (obj); GList *l; for (l = self->providers; l != NULL; l = g_list_next (l)) g_signal_handlers_disconnect_by_func (l->data, on_provider_notify, self); g_list_free_full (self->providers, g_object_unref); G_OBJECT_CLASS (realm_all_provider_parent_class)->finalize (obj); } void realm_all_provider_class_init (RealmAllProviderClass *klass) { RealmProviderClass *provider_class = REALM_PROVIDER_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->constructed = realm_all_provider_constructed; object_class->finalize = realm_all_provider_finalize; provider_class->discover_async = realm_all_provider_discover_async; provider_class->discover_finish = realm_all_provider_discover_finish; provider_class->get_realms = realm_all_provider_get_realms; } RealmProvider * realm_all_provider_new_and_export (GDBusConnection *connection) { GDBusObject *self; GList *interfaces, *l; GError *error = NULL; self = g_object_new (REALM_TYPE_ALL_PROVIDER, "g-object-path", REALM_DBUS_SERVICE_PATH, NULL); interfaces = g_dbus_object_get_interfaces (G_DBUS_OBJECT (self)); for (l = interfaces; l != NULL; l = g_list_next (l)) { g_dbus_interface_skeleton_export (l->data, connection, g_dbus_object_get_object_path (self), &error); if (error != NULL) { g_warning ("Couldn't export DBus interface at %s", g_dbus_object_get_object_path (self)); g_clear_error (&error); } } g_list_free_full (interfaces, g_object_unref); return REALM_PROVIDER (self); } void realm_all_provider_register (RealmProvider *all_provider, RealmProvider *provider) { RealmAllProvider *self; g_return_if_fail (REALM_IS_ALL_PROVIDER (all_provider)); g_return_if_fail (REALM_IS_PROVIDER (provider)); self = REALM_ALL_PROVIDER (all_provider); self->providers = g_list_prepend (self->providers, g_object_ref (provider)); update_all_properties (all_provider); g_signal_connect (provider, "notify", G_CALLBACK (on_provider_notify), self); } realmd-0.17.1/service/realm-sssd-ipa.h0000644003225100322510000000204214046520517020010 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_SSSD_IPA_H__ #define __REALM_SSSD_IPA_H__ #include #include "realm-kerberos.h" #include "realm-provider.h" G_BEGIN_DECLS #define REALM_TYPE_SSSD_IPA (realm_sssd_ipa_get_type ()) #define REALM_SSSD_IPA(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_SSSD_IPA, RealmSssdAd)) #define REALM_IS_SSSD_IPA(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_SSSD_IPA)) typedef struct _RealmSssdIpa RealmSssdIpa; GType realm_sssd_ipa_get_type (void) G_GNUC_CONST; G_END_DECLS #endif /* __REALM_SSSD_IPA_H__ */ realmd-0.17.1/service/realm-login-name.h0000644003225100322510000000225414046520517020320 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_LOGIN_NAME_H__ #define __REALM_LOGIN_NAME_H__ #include G_BEGIN_DECLS gchar * realm_login_name_parse (const gchar *const *formats, gboolean lower, const gchar *login); gchar ** realm_login_name_parse_all (const gchar *const *formats, gboolean lower, const gchar **logins, const gchar **failed); gchar * realm_login_name_format (const gchar *format, const gchar *user); G_END_DECLS #endif /* __REALM_LOGIN_NAME_H__ */ realmd-0.17.1/service/realm-credential.c0000644003225100322510000002075314046520517020403 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include #include "realm-credential.h" #include "realm-daemon.h" #include "realm-errors.h" #include #include #include static gchar * write_ccache_file (GVariant *ccache, GError **error) { const gchar *directory; gchar *filename; const guchar *data; gsize length; gint fd; int res; data = g_variant_get_fixed_array (ccache, &length, 1); g_return_val_if_fail (length > 0, NULL); directory = g_get_tmp_dir (); filename = g_build_filename (directory, "realm-ad-kerberos-XXXXXX", NULL); fd = g_mkstemp_full (filename, O_WRONLY, 0600); if (fd < 0) { g_warning ("couldn't open temporary file in %s directory for kerberos cache: %s", directory, g_strerror (errno)); g_set_error (error, REALM_ERROR, REALM_ERROR_INTERNAL, "Problem writing out the kerberos cache data"); g_free (filename); return NULL; } while (length > 0) { res = write (fd, data, length); if (res <= 0) { if (errno == EAGAIN || errno == EINTR) continue; g_warning ("couldn't write kerberos cache to file %s: %s", filename, g_strerror (errno)); g_set_error (error, REALM_ERROR, REALM_ERROR_INTERNAL, "Problem writing out the kerberos cache data"); break; } else { length -= res; data += res; } } if (close (fd) < 0) { g_warning ("couldn't write kerberos cache to file %s: %s", filename, g_strerror (errno)); g_set_error (error, REALM_ERROR, REALM_ERROR_INTERNAL, "Problem writing out the kerberos cache data"); g_free (filename); return NULL; } if (length != 0) { g_free (filename); return NULL; } return filename; } static gboolean parse_ccache (RealmCredential *cred, GVariant *contents, GError **error) { gsize length; if (!g_variant_is_of_type (contents, G_VARIANT_TYPE ("ay"))) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Credential cache argument is of wrong DBus type"); return FALSE; } g_variant_get_fixed_array (contents, &length, 1); if (length == 0) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Invalid zero length credential cache argument"); return FALSE; } cred->x.ccache.file = write_ccache_file (contents, error); if (cred->x.ccache.file == NULL) return FALSE; cred->type = REALM_CREDENTIAL_CCACHE; return TRUE; } static gboolean parse_password (RealmCredential *cred, GVariant *contents, GError **error) { const gchar *password; if (!g_variant_is_of_type (contents, G_VARIANT_TYPE ("(ss)"))) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Password credentials are of wrong DBus type"); return FALSE; } g_variant_get (contents, "(s&s)", &cred->x.password.name, &password); cred->x.password.value = g_bytes_new_with_free_func (password, strlen (password), (GDestroyNotify)g_variant_unref, g_variant_ref (contents)); cred->type = REALM_CREDENTIAL_PASSWORD; return TRUE; } static gboolean parse_secret (RealmCredential *cred, GVariant *contents, GError **error) { gconstpointer data; gsize length; if (!g_variant_is_of_type (contents, G_VARIANT_TYPE ("ay"))) { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Secret credentials are of wrong DBus type"); return FALSE; } data = g_variant_get_fixed_array (contents, &length, 1); cred->x.secret.value = g_bytes_new_with_free_func (data, length, (GDestroyNotify)g_variant_unref, g_variant_ref (contents)); cred->type = REALM_CREDENTIAL_SECRET; return TRUE; } static gboolean parse_automatic (RealmCredential *cred, GVariant *contents, GError **error) { cred->type = REALM_CREDENTIAL_AUTOMATIC; return TRUE; } RealmCredential * realm_credential_parse (GVariant *input, GError **error) { RealmCredential *cred; GVariant *outer; GVariant *contents; const char *owner, *type; gboolean ret = TRUE; g_return_val_if_fail (input != NULL, NULL); g_return_val_if_fail (error == NULL || *error == NULL, NULL); cred = g_new0 (RealmCredential, 1); cred->refs = 1; g_variant_get (input, "(&s&s@v)", &type, &owner, &outer); if (g_str_equal (owner, "administrator")) { cred->owner = REALM_CREDENTIAL_OWNER_ADMIN; } else if (g_str_equal (owner, "user")) { cred->owner = REALM_CREDENTIAL_OWNER_USER; } else if (g_str_equal (owner, "computer")) { cred->owner = REALM_CREDENTIAL_OWNER_COMPUTER; } else if (g_str_equal (owner, "none")) { cred->owner = REALM_CREDENTIAL_OWNER_NONE; } else { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Credential cache argument has invalid or unsupported owner"); ret = FALSE; } contents = g_variant_get_variant (outer); g_variant_unref (outer); if (!ret) { /* skip */; } else if (g_str_equal (type, "ccache")) { ret = parse_ccache (cred, contents, error); } else if (g_str_equal (type, "password")) { ret = parse_password (cred, contents, error); } else if (g_str_equal (type, "secret")) { ret = parse_secret (cred, contents, error); } else if (g_str_equal (type, "automatic")) { ret = parse_automatic (cred, contents, error); } else { g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Invalid or unsupported credential type"); ret = FALSE; } if (!ret) { realm_credential_unref (cred); cred = NULL; } g_variant_unref (contents); return cred; } RealmCredential * realm_credential_ref (RealmCredential *cred) { g_return_val_if_fail (cred != NULL, NULL); g_return_val_if_fail (cred->refs > 0, NULL); cred->refs++; return cred; } void realm_credential_unref (RealmCredential *cred) { g_return_if_fail (cred != NULL); g_return_if_fail (cred->refs > 0); cred->refs--; if (cred->refs > 0) return; switch (cred->type) { case REALM_CREDENTIAL_AUTOMATIC: break; case REALM_CREDENTIAL_CCACHE: realm_credential_ccache_delete_and_free (cred->x.ccache.file); break; case REALM_CREDENTIAL_SECRET: g_bytes_unref (cred->x.secret.value); break; case REALM_CREDENTIAL_PASSWORD: g_free (cred->x.password.name); g_bytes_unref (cred->x.password.value); break; } g_free (cred); } void realm_credential_ccache_delete_and_free (gchar *ccache_file) { g_return_if_fail (ccache_file != NULL); if (!realm_daemon_has_debug_flag () && g_unlink (ccache_file) < 0) { g_warning ("couldn't remove kerberos cache file: %s: %s", ccache_file, g_strerror (errno)); } g_free (ccache_file); } GVariant * realm_credential_build_supported (const RealmCredential *creds) { GPtrArray *elements; GVariant *tuple[2]; const gchar *string; GVariant *supported; elements = g_ptr_array_new (); while (creds->type) { if (creds->owner == REALM_CREDENTIAL_OWNER_ADMIN) string = "administrator"; else if (creds->owner == REALM_CREDENTIAL_OWNER_USER) string = "user"; else if (creds->owner == REALM_CREDENTIAL_OWNER_COMPUTER) string = "computer"; else if (creds->owner == REALM_CREDENTIAL_OWNER_NONE) string = "none"; else g_return_val_if_reached (NULL); tuple[1] = g_variant_new_string (string); switch (creds->type) { case REALM_CREDENTIAL_CCACHE: string = "ccache"; break; case REALM_CREDENTIAL_PASSWORD: string = "password"; break; case REALM_CREDENTIAL_SECRET: string = "secret"; break; case REALM_CREDENTIAL_AUTOMATIC: string = "automatic"; break; default: g_return_val_if_reached (NULL); break; } tuple[0] = g_variant_new_string (string); g_ptr_array_add (elements, g_variant_new_tuple (tuple, 2)); creds++; } supported = g_variant_new_array (G_VARIANT_TYPE ("(ss)"), (GVariant *const *)elements->pdata, elements->len); g_ptr_array_free (elements, TRUE); g_variant_ref_sink (supported); return supported; } realmd-0.17.1/service/realm-samba-config.c0000644003225100322510000000447414046520517020621 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm-ini-config.h" #include "realm-samba-config.h" #include "realm-settings.h" #include RealmIniConfig * realm_samba_config_new_with_flags (RealmIniFlags flags, GError **error) { RealmIniConfig *config; const gchar *filename; GError *err = NULL; config = realm_ini_config_new (REALM_INI_LINE_CONTINUATIONS | flags); filename = realm_settings_path ("smb.conf"); realm_ini_config_read_file (config, filename, &err); if (err != NULL) { /* If the caller wants errors, then don't return an invalid samba config */ if (error) { g_propagate_error (error, err); g_object_unref (config); config = NULL; /* If the caller doesn't care, then warn but continue */ } else { g_warning ("Couldn't load config file: %s: %s", filename, err->message); g_error_free (err); } } return config; } RealmIniConfig * realm_samba_config_new (GError **error) { return realm_samba_config_new_with_flags (REALM_INI_NONE, error); } gboolean realm_samba_config_get_boolean (RealmIniConfig *config, const gchar *section, const gchar *key, gboolean defalt) { gchar *string = NULL; gboolean ret; string = realm_ini_config_get (config, section, key); if (string == NULL) { ret = defalt; } else if (g_ascii_strcasecmp (string, "true") == 0 || g_ascii_strcasecmp (string, "1") == 0 || g_ascii_strcasecmp (string, "yes") == 0) { ret = TRUE; } else if (g_ascii_strcasecmp (string, "false") == 0 || g_ascii_strcasecmp (string, "0") == 0 || g_ascii_strcasecmp (string, "no") == 0) { ret = FALSE; } else { g_message ("Unexpected boolean value in samba config [%s] %s = %s\n", section, key, string); ret = defalt; } g_free (string); return ret; } realmd-0.17.1/doc/0000755003225100322510000000000014315277002014122 5ustar00sbosesbose00000000000000realmd-0.17.1/doc/internals/0000755003225100322510000000000014315277002016121 5ustar00sbosesbose00000000000000realmd-0.17.1/doc/internals/docbook-params.xsl0000644003225100322510000000033614046520517021557 0ustar00sbosesbose00000000000000 0 0 realmd-0.17.1/doc/internals/join-method.svg0000644003225100322510000003117114046520517021065 0ustar00sbosesbose00000000000000 image/svg+xmladcli or samba AD Join(realm, creds, options) “ adcli join ...†or “ net ads join ...†Realm Kerberos config file keytab realmd-0.17.1/doc/internals/realmd-internals.xml0000644003225100322510000004242614046520517022117 0ustar00sbosesbose00000000000000
realmd Internals January, 2013
Overview realmd is an on-demand system D-Bus service, whose primary purpose is to enable Linux to work seamlessly out of the box with network authentication realms (like Kerberos, with primary focus on AD and IPA). Specifically, the realmd service supports discovering a domain, joining a domain, leaving a domain, and more. Currently there is only support for Kerberos realms. Some of the D-Bus clients that interact with realmd are: command line realm client gnome-control-center GUI client gdm anaconda Realmd can be run in two different modes (with some slight changes in behavior depending on the mode) At install time (e.g. using an anaconda kickstart file). In this mode, since the system message bus may not be available, the realm client directly spawns realmd and communicates with it using the D-Bus peer protocol (i.e. without going through the message bus). After installation. In this mode, the system message bus is available and is used to forward messages from the realm client to realmd. Realmd is typically used (whether at install time or afterwards) by a D-Bus client to discover the KDC for a Kerberos domain and to join the machine to that domain using membership software. This will involve changes on the server made by server software, as well as artifacts (keytab, configuration file) that are output by realmd on the machine for consumption by client software that will subsequently be responsible for Kerberos authentication. For active-directory server software, realmd supports: sssd client software (with either adcli or samba membership software) winbind client software (with samba membership software). For IPA server software, realmd supports: sssd client software (with 'ipa' membership software).
Realmd Objects and Interfaces A GDBusObject is associated with an object path and is essentially a container of GDBusInterfaces. On the service side, this is implemented using GDBusObjectSkeletons and GDBusInterfaceSkeletons (with corresponding GDBusObjectProxy and GDBusProxy components on the client side). The base GDBusObjectSkeletons used by realmd are RealmKerberos and RealmProvider (each with its own subclasses and interfaces). The objects are linked, in that a RealmProvider object creates a RealmKerberos object during the Discover process. The type of RealmKerberos object that is created depends on the type of RealmProvider that is used. Only those RealmKerberos objects that implement the RealmKerberosMembership GInterface can be used to join or leave a domain. RealmKerberos RealmDbusRealm supports Deconfigure and ChangeLoginPolicy methods RealmDbusKerberosMembership supports Join and Leave methods RealmDbusKerberos supports no methods (properties only) RealmSamba implements RealmKerberosMembership RealmSssd container for RealmSssdAd and RealmSssdIpa subclass: RealmSssdAd implements RealmKerberosMembership subclass: RealmSssdIpa implements RealmKerberosMembership RealmProvider RealmDbusProvider supports Discover method RealmSambaProvider creates RealmSamba objects RealmSssdProvider creates RealmSssdAd and RealmSssdIpa objects RealmKerberosProvider creates RealmKerberos objects RealmAllProvider aggregates other RealmProviders
Discover method The main purpose of the Discover method is to verify that a specified domain is valid, emitting logs and diagnostic information in the process. RealmProviders discover the authoritative KDCs for the specified domain by querying DNS for SRV records and creating appropriate RealmKerberos objects to encapsulate the KDC information. Certain types of RealmKerberos objects (i.e. RealmSamba and RealmSssdAd) can subsequently be used as part of the Join process. RealmAllProvider is special in that it serves all realm types. A client that wants to use all of the RealmProviders (Samba, Sssd, Kerberos) can contact each RealmProvider (at its unique object path). Alternatively and usually, the client simply contacts the RealmAllProvider, which is special in that it serves as an aggregation point and container for all of the other RealmProviders. When Discover is called on RealmAllProvider, it calls the Discover methods of each of the other RealmProviders, collects the results (array of RealmKerberos objects), and returns an aggregated result (array of object paths pointing to RealmKerberos objects) to the client. The AllProvider also connects to a notify signal, so that if any of its sub-providers change state, AllProvider can also update its state accordingly.
RealmProvider A RealmProvider object supports the Discover method, and is characterized by: its object path (static) the combinations of {client, server, membership} software it supports for the Discover process the types of RealmKerberos objects it creates during the Discover process the file it uses to read/write configuration information RealmSambaProvider object path: "/org/freedesktop/realmd/Samba" creates: RealmSamba objects config file read: smb.conf software supported: {winbind, active-directory, samba} RealmSssdProvider object path: "/org/freedesktop/realmd/Sssd" creates: RealmSssdAd objects or RealmSssdIpa objects (depending on server-software) config file read: sssd.conf software supported {sssd, active-directory, samba} {sssd, active-directory, adcli} {sssd, ipa, ipa} RealmKerberosProvider object path: "/org/freedesktop/realmd/GenericKerberos" creates: RealmKerberos objects config file read: n/a software supported: none, so only used if client-software and server-software were not specified RealmAllProvider object path: “/org/freedesktop/realmd†special RealmProvider that aggregates results (see Discover() method)
Join method The primary goal of joining a machine to a domain is to enroll the machine with the domain's KDC, thereby enabling subsequent Kerberos user authentication. This results in the creation of a secret shared between the machine and KDC (i.e. a keytab), as well as changes to the appropriate configuration file on the machine. Conversely, the primary goal of leaving a domain is to unenroll the machine from the domain's KDC, removing the keytab and removing the changes that were previously made to the appropriate configuration file during enrollment. Both the join and leave operations require appropriate credentials, where each credential is represented by the credential owner and the credential type. Different RealmKerberos objects support different credentials, and different credentials may be supported for join and leave. Before performing the join, any required packages or files are installed. Possible credential owners: admin, user, computer, none Possible credential types: password, secret (otp), automatic (default/system creds)
RealmKerberos A RealmKerberos object supports the Join, Leave, Deconfigure, and ChangeLoginPolicy methods. It is characterized by: its object path (dynamic, per realm) the membership software it supports the configuration file it modifies the packages it requires to be installed the credentials it supports: {owner, type} RealmSamba object path example: /realmd/Samba/example.com_4 membership software supported: samba config file modified: smb.conf required packages: samba, winbind credentials supported: {admin, password} {user, password} {none, automatic} RealmSssdAd object path example: /realmd/Sssd/example.com_4 membership software supported: samba, adcli (but only for certain credentials: see below) config file modified: sssd.conf required_packages: sssd, adcli, samba (depends on membership software) credentials supported: {admin, password} // supported by both samba (default) and adcli {user, password} // supported only by samba {none, automatic} // supported only by adcli {none, secret} // supported only by adcli; note that these are supported for join, but not leave RealmSssdIpa has a dynamically generated object path upon realm creation. membership software supported: ipa config file modified: sssd.conf required_packages: sssd, freeipa-client credentials supported: {admin, password} {none, secret} // one time password
Exporting Realmd Objects and Interfaces When realmd starts up (realm-daemon.c:main), it registers each of its RealmProviders (except RealmAllProvider) with its GDBusObjectManagerServer, which in turn exports (onto a specific object path) the GDBusInterfaces for each RealmProvider onto the GDBusConnection. As RealmKerberos objects are dynamically created, they are similarly registered with the Object Manager and exported. Note that only GDBusInterfaces that are exported onto the GDBusConnection are capable of receiving method call messages from the client. When a message is received by the worker thread of the service's GDBusConnection, the message's {object_path, iface_name} are mapped to a GDBusInterfaceSkeleton, which emits a signal. The enclosing GDBusObjectSkeleton catches the signal and executes the callback registered for that signal (usually set in RealmProvider's constructed method). Since RealmAllProvider is just an aggregation point, it is not managed by the GDBusObjectManagerServer,but it is directly exported onto the GDBusConnection using g_dbus_connection_register_object(). The ObjectManager and Service objects are also directly exported onto the GDBusConnection. The following is a subset of objects and interfaces registered with the GDBusObjectManagerServer and/or exported onto the GDBusConnection. GDBusConnection: stores {object_path, iface_name} => GDBusInterfaceSkeleton {/org/freedesktop/realmd, org.freedesktop.realmd.Provider} => RealmDbusProviderSkeleton(“Allâ€) {/org/freedesktop/realmd, org.freedesktop.realmd.Service} => RealmDbusServiceSkeleton {/org/freedesktop/realmd, org.freedesktop.DBus.ObjectManager} => GDBusObjectManagerServer GDBusObjectManagerServer: stores object_path => GDBusObjectSkeleton /org/freedesktop/realmd/Sssd => RealmSssdProvider /org/freedesktop/realmd/Samba => RealmSambaProvider /org/freedesktop/realmd/GenericKerberos => RealKerberosProvider /org/freedesktop/realmd/Sssd/example.com_4 => RealmSssdAd
Example Provider realmd includes a rough example provider, which can be used as a mock provider for testing against. It is disabled by default. The example provider discovers realms that match *example.com. Set the setting to yes in the section of the settings to enable it. [providers] example = yes # example = no Some settings of the example provider. [example] # What domain to return for a default discovery default = default.example.com # How long to delay a successful discovery, in seconds example-discovery-delay = 1.3 # How long to delay a unsuccessful disocvery example-non-discovery-delay = 0.9 You can tweak various options per example realm. [default.example.com] # Mock administrator account required to join example-administrator = Administrator # Password for above mock admin account example-password = bureaucracy # How long to delay when joining this domain, in seconds. example-join-delay = 2.5 # How long to delay when leaving example-leave-delay = 1 # Whether to disallow leaving without a password example-no-auto-leave = yes
Missing Description of ChangeLoginPolicy method Description of all the methods for the Service object Details of realmd.conf (man page, perhaps) Details of configuration files (sssd.conf, smb.conf) and relevant entries
realmd-0.17.1/doc/internals/discover-method.svg0000644003225100322510000003022214046520517021740 0ustar00sbosesbose00000000000000 image/svg+xmlDNS Realm Provider lookup_service(domain) Realm Kerberos {domain, kerberos-kdcs} Discover(domain, options) RealmKerberos object paths config file realmd-0.17.1/doc/internals/Makefile.am0000644003225100322510000000160014046520517020155 0ustar00sbosesbose00000000000000 INTERNAL_DOCBOOK = doc/internals/realmd-internals.xml INTERNAL_PARAMS = doc/internals/docbook-params.xsl INTERNAL_STATIC = \ $(NULL) INTERNAL_INCLUDES = \ $(NULL) SVG_IMAGES = \ doc/internals/discover-method.svg \ doc/internals/join-method.svg \ $(NULL) EXTRA_DIST += \ $(INTERNAL_DOCBOOK) \ $(INTERNAL_PARAMS) \ $(INTERNAL_INCLUDES) \ $(SVG_IMAGES) \ doc/internals/static \ $(NULL) CLEANFILES += \ internals/realmd-internals.html \ $(NULL) internals/realmd-internals.html: $(INTERNAL_DOCBOOK) $(INTERNAL_INCLUDES) $(INTERNAL_STATIC) $(AM_V_GEN) mkdir -p internals && cp $(srcdir)/doc/internals/static/* internals/ && \ $(XMLTO) html-nochunks -m $(srcdir)/$(INTERNAL_PARAMS) -o internals \ --searchpath $(abs_builddir):$(abs_srcdir) $(srcdir)/$(INTERNAL_DOCBOOK) render-images: for i in $(SVG_IMAGES:.svg=); do \ inkscape --export-png=static/$$i.png $$i.svg; \ done realmd-0.17.1/doc/internals/static/0000755003225100322510000000000014046520517017413 5ustar00sbosesbose00000000000000realmd-0.17.1/doc/internals/static/join-method.png0000644003225100322510000007272014046520517022346 0ustar00sbosesbose00000000000000‰PNG  IHDRÀ$àœX&sBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î< IDATxœìÝyxTÕùÀñï{g’¦²ï("j$d2K«Ö½®ÑªÕ¶nU[[ëϺץVÛÚj­kµÖºV©;Š(* d2Á,€à¾±È"‚l,3÷ýý1“e€y?Ï“rï¹çž¹Édî{Ï9ïUÅcŒ1ÆcŒÙÓ9íÝcŒ1ÆcŒ1fg°ØcŒ1ÆcL‡`°1ÆcŒ1ƘÁ`cŒ1ÆcŒ1‚ÀÆcŒ1Æc: €1ÆcŒ1ÆtcŒ1ÆcŒé,6ÆcŒ1ÆÓ!XlŒ1ÆcŒ1¦C°ØcŒ1ÆcL‡`°1ÆcŒ1ƘÁ`cŒ1ÆcŒ1‚ÀÆcŒ1Æc: €1ÆcŒ1ÆtcŒ1ÆcŒé,6ÆcŒ1ÆÓ!XlŒ1ÆcŒ1¦C°ØcŒ1ÆcL‡`°1ÆcŒ1ƘÁ`cŒ1ÆcŒ1‚ÀÆcŒ1Æc: €1ÆcŒ1ÆtcŒ1ÆcŒé,6ÆcŒ1ÆÓ!XlŒ1ÆcŒ1¦C°ØcŒ1ÆcL‡`°1ÆcŒ1ƘÁ`cŒ1ÆcŒ1‚ÀÆcŒ1Æc: €1ÆcŒ1ÆtcŒ1ÆcŒé,6ÆcŒ1ÆÓ!XlŒ1ÆcŒ1¦C°ØcŒ1ÆcL‡àmïcŒ1ÆcÌ–ˆÈY@^{·ÃlµiªúR{7¢žÀÆcŒ1ƘÝÁQ½ûõÿÉ™Y±önˆi¹eÎ÷+–XlŒ1ÆcŒ1[Ã?¶Ð¹õž‡mçnâòsO«›>ùönFöËcŒ1ÆcŒ1¦C°`cŒ1ƳMDäúNéH{·Å´ŽªëÖTWÿEUkï¶Ó,6ÆcŒ1ÛjÐ}‡8ጳ-ÞM<ñÀ=uß.]ܧ½ÛaL{±ØcŒ1Æl³Áû׳/ü¥À»‰ 㟎}»tq{7Øvcs€1ÆcŒ1ÆtcŒ1ÆcŒé,6ÆcŒ1ÆÓ!XlŒ1ÆcŒ1¦C°ØcŒ1ÆcL‡`°1ÆcŒ1ƘÁ`cŒ1ÆcŒ1‚ÀÆcŒ1Æc: €1ÆcŒ1ÆtÞön€1Æì DäÿRRS¯¤½›bvA®›]WWWØÞí0ÆcÌö±Øcâºô0¨Ë¥¿»1¥½bv-3Þ}‹·_{¹{·ÃcŒ1ÛÏ`cŒIè±OÏØO:Ý`ÓÄwË—ñök/·w3Œ1ÆÓl°1ÆcŒ1ƘÁ`cŒ1ÆcŒ1‚ÀÆcŒ1Æc: €1ÆcŒ1ÆtcŒ1ÆcŒé,6ÆcŒ1ÆÓ!XlŒ1ÆcŒ1¦C°ØcŒ1ÆcL‡àmïcŒ1fÛø!¸ ¨®ˆ„¯ÙÆ:.ö„ç'¶ýÚxÛfŽ?8x¥"ž²mè\|[ ß¾-ucŒ1­a=ÀÆcLòB§ø¡gÁ)¾@èa_ ô‹t:ðkàÒí¨ã´Dým;3±­o+Ž—(ëÛŽ6ôHÔñÓí¨c‡óB#|ÐT_ ôFâû_$¾¿ª½ÛfŒ1¦u¬ØcŒi[7UD®/:ˆxPwKû6i«Ýô>oEÙ§€2 r;ηø1°v;êØº‡ëßï—øþ³vk‘1Ƙ­bð&n55éάYSW«ª¶E¡P(}Æ´4gmUYYY][Ô¹= ;­ZE§ººåëçÎ[ÛÞíÙ•Õÿì:ʵÊÍÍí‹uMÝU~W›YPÐ5½*ÅÓ–ïOcÚ‚/J²€w›ÆVDÂß´_«¶^E$üöV”ÌÚÎó­žÝž:v’À}À‰ï_ÆÚ­EÆc¶Êg)8ÀñÆÝÂUý|v$²h[ë¬Å3WÒj3f0°p{Ûè7®.•’VëzÔ“ ¬ØÞ:·×ª 5wH¿IMíz ðP{·gWV“?KZͯR:u¿x¤½Û³£¹ÞÔ‡Ä[ó—´s'Û»=Í¥GÝŸKZÍß³¡ÛÚ»=Æ4² ÀK¾@è` 0Üý­"¾²qÁ‘]»ÄbÅ\ìÀ×ÑO*KJ¾ÞTž@(M|Xòû‘ð’-5&3335µs÷€xÜ~¨g~tÃÚfÏž]µ¥ã|Ð øº"®ÞBÙ^Ä_÷·‘ðÊæûóòòúF=žL ³ã8óÊÃá¯TÕmVG ñÞÔÚŠHøKˆ?ˆ#5u°®š9sæÒ¢¢"Ïg‹ùÕ.|ã®_?«5¯¥-UDÂË}ЧÀW‰ï#¾@È|ÚÚ:DDFCW2º˜‡¹³Â-dvéTS3ÐõzWT¼÷Þr_ pˆdJ]Ý»eeeßµÙ‹Ú}ýù§¬\±œá#¤Û^{oõñ+–/cþ—ŸÓ»O?݀Šç³tñ" BŸþ󼃮˜]À1ØëÑkDeJã//ÎiÛS§à~.ð‰ëvŠnoûDÄ¡6ö4Ð[¢ÒÒÒv~ÈÊÊÊÈö‡NÊÎ.ìÑx»Š,øqW·WÛ6§2¾GàeToÉŽlïöÓˆ'ñïp⟱ иP¶?xS稻ÈU‰ˆ0^…I¢ò•/š˜——7¨y¥¾@è`P ¼,öBa Û¦’ã]œÚ¥Û2¦*Ï*n‰'=c¾Ï:¿¯ã9à#â½Ù[ru¢ìÏoÌòû‡eò§GïT&£òŠÓϳýÁIÞ·CuLªßKIÉv]>Š:Þ?ûü¹Ÿ/\ô¥¸«Ês¢2Óžñin PЊöµ™Ä¼î‹ ‰ïs‰?”x­5Çç Ùþà§¢ò• T˜ä¸,òB•£ó n\6­ººÐuùˆšØ59þààÌU•çbž4[¿®ÝÕ/ç¾;nâËÏ>Þ¦ã?œUÁ}wÜÄÔ·^oØV<å-î»ã&*"ÅmÕLcÌ.f€]äÀµ‰¯9mQgy¤äðòHxdYÙ{[|¾%>ðrÐ#EäöòÈŒH[´Ï˜¶à¤w=T„—$µnxãí•%ÅW—GÂ#+JJ^m¯¶mI]ŠççÀ*Qçé@ °É À˜lpL⫟øÿõrü¡_ŠÈÍÀ Ó‡Q.Îá /ÇÄÏã+ôBoŸú;à D|~îËɑ̿P…‡€U‚üÜÅ9Õ? üËÈ?µ-_ts‡}<â©4_…»],æŒD¹Èœ7³ýùÇm¶’˜S?Ýd(⾌êê+‡ÿú»8y6SK[Ëþ¸'ñýàЊHøë-˜ …w0Pá*Ça”àf‰è @¦ã¸e9¡ÐÆ¿Å"uŠT‘?(ú´¨^íñèmý¢ÌFû8Ã~x<ƒö¾åÂÆ˜ÝÒ1º22c"0ÀfŒjç&5È,,ì’ª\‡°ZêjînïöÓ˜ ÆGkî~æLŸþ}N0x—"·Õ‰ç·ÀÍíÝ&cÃ…'5ÚôUâ« ?jE¹¤¼´øÍúí™™™Å©]º}­Ha–ß?lviiýq—ÿ¼¾«"¾³QU%¾@¨EÏãþÇ›ÖUõN .†;¶Ñt )ÙÁü/Dõapo$>u‡HQÏõˆvWø{eIø·v}’ã­TáE½MD&nj¿ãÄ\?§§Èe•‘ðõû233#©ÝŽ@ùÙ‚û²“’PUDÂkiô󭈄?¥•ß%ÆíA.¬ˆ?Öhלœ`~ŠªÞ¤.¿ÎPÕ("œˆèõ•%%wµåk1ÉùøvîÀcÌN¶GÀ­•›Ÿ¿Ÿs/ɪð)®Î¦¶Ó=••SV5.›Ý'HÏ^V?d9;|due$üËÑ‚B÷Rà@”Õ"¼_—â¹eÎôéß7®'eCͯz©ÊËÊÊš 'õBOºv¿Áƒ.ÿ|Á¢›@O&TDJnlhG08ÔQù è(Eöf ”Ö¬[óH²dLyyc÷­óÄ~)0 eÊ2æzÏè@A¡#n‘ªd ÚETæ©ã4èáÆ?ÿ¬1x>ñï3I{hÒ“ÚíûïR¤;ʤ٥Msaxêjþ㦤,S‘ïDDvX9Ñs<¹¯ù®Š™%¯dûƒß£s‚Á€-_­ê‘žúpã ñkúè%®3˜]< s^^Þ ï¡Àªšu«Ÿn¾?&úˆ£Ü„R$"ç5û¹¸N]Ý™§cCU| wzFF«ÊWU­##£ËV£jíRÓÒHIMÛêöm-U¥jíºtëÞêcjkªqc.:oêNÃÓÖ:Lœí%Âà é@±¢•¢2‘“I«=t(tÚ¬pxf}yAN¤ªW‘HX%È) 볃Áùè,`>È…·.vdQQѨÆ7ôŽp–*x<ú\’f¬*¾˜¿ðsDnD¥avýNŸ?t®ˆ<¨ 2YT>PÑ\…Ÿ¤véVä÷ûOi<ŸØ ŠÃ[¢¤€–‚|ˆ0Xà27¦ùB¡#+Âái›»N‚3 ô ñh±G=ׂ.Y ä«pl—«÷ÈÏA^ß§‡}¶ð›^Äç‚m³ø°<ç)/è<À9M…Ó²¡û+#á_xÿ›ýi´~©Ï:ßþ¸Š||ªèP”ëˆñËÜ@าHdF}ùgÌX›ãÏŸ¨¢gÓ©ú8 Å¥1»ª¬1ù™Ž££ÄѾêÒ)þþ&>ÿ7Fz£¢õ×’=Tû¤ùUg(8-—0Jduß¡Srss»ãMÝ ˆ–‡Ã-Ú¬ª®/úèíFÀ–à/¦L™Ò"‡ «EA¤ÉµÚ%EI ðu²‡×³Âáo|P5B§ì±c{Ëíþ¸¬¬lýÎj뎶ô›…¼òÜ“Ì)/m€»vëΘüC9ñÌséÖ½IJ \×å•ÿ>Nñ”ɬüî[2ºvcøÈƒ8÷’ßlò5Õxé™Ç)™:™µkVã8½ûàØSÏ$ÿð£Ùôȧ ÿ{šw_™ŠÎáðcÔª×4·²ŒWž{‚o¾þŠêê ¤§§ÓÈ0N:ó<Ó¤ì?nÿ=_}ú7ÿýažâJ¦¾MŸþùã}ÿnÕ¹Œ1Û¯CÀ‡}RÄypp¥°bfñ{õû|Áà%(8.ˆÈè-< ¯í&*7¹¡Yá’J¨ï¬™ôÙüE'˜“•›;®ŸzÉ–•…Ã$­OÈPäB=±[z§7¦Nêd=â<D‡@ýñ""Ùy;¹ºVœ;Ÿ7ÔæÊà©(çU”–<Ñð¡Ÿâr/°…áán¨Ü$ÈoÊ#ÅOA¼'Z\ùXD'p®S³ƒÁ|Q™!ª‹È5ÛÚ£xBþ`ƒëpô¬pÉL€Ñ~ÿG<%—å„B¯•‡Ã“¼^om⢢'ªCþ¬’’ãy}þ‚\nCXS7¿~`fffjj×n©rVµòð€ÂÂB¯wØpZE¤ø…úí«7ÔüSš%w ^Tò+J‹Kê7gG Λ¸ÜA|žÞ6q½©WG¯8ÑÚ³êo€|ãÆõ¢6úÊùÙþÐÛl\:$1_LÎs`j•WŽüxFñZh¿,(xîãøõÈŸ.h*gW”–”m®=9¡ÐÑ W‚|ªŽªïÍÍÍMq½©ÿB87E=7‘h£"µŽ‚ˆî"{¢5Ãë3—æ9Šó>¢úýþKKKWˆˆdûƒw¨+Ê™ÅïןÛ ƒÊë.ÎíÀ¸&×Éqß•³Eå(,6»øß4g¼Ç#ñS*QÖ5@“»_ ´Fò jkj˜SVÊ»o¼ÊWŸ ¾q6¦¨yü»˜þö$zõéÇ©çœOç.|4g»éjzì½O‹sDëjùÓu¿eþ—Ÿ1â C8,3‹¥ß,bNy)ÿ¾÷N¾_±œŠÎÙd«7¬gõªï©©Þlòó_x–žz”ôÎ9üØéÓo ß-_Æ”‰¯p×-×pÚ¹rÌÉEë__ÅêUß3uÒJ¦½Ã¾#¤¯e›6f§Ú#’`m‰7>?0áñÆÁ/@EIɃÀ‡À(_^pó 9âR½{V8\Y¿¡²rÊ*T^adývM©›Øö^ËjâE€Î /”—”L˜2eJ´þfÁ#Îõ@È­ƒgUÕÚªµ¿¾•³|ãÆõ‚øœ/¿!rc÷ÎiM†ÉU––“P'Zxo¦gV;h<‰Ô¯áu ›çšàŠ4¹&ê°Ý«Qì*Þ™ø kV¯bìGsÉU7pä §pÜi?æš;îfȰá|õÙ'Ì./m(¿rù·Ìx÷-:uJçº;îá¸Ó~LáÑ'réï~ONp,ήhqŽ×_x–ù_~FÁ~ÈÕ¼‹“Ïú)—\u7üå>ÇáågŸ`Í÷-VëÚ&+W,çågŸ %5›îzˆÓν±GÃÉgý”ÿú—Wž}‚Õ«6ÎŽózã}O3Þy“ëîø;×ýé~~ùUmÒcLëtˆXМĿ“PyÀiM}®ë¾Ó¢ ti¼*nþ]•~.lv=bב -7Æ{j]G§7ß>%3Ò¤&ZðÙĉ5å‘â‡+JŠok>TLã]²KIéÒ¥ok^#B¸ù&…Ä'†–6ßG¢"ú´ªþd§~8ÑÛÍ÷UFÂ÷TFŠ’â´80ÕÛòú%zº5%¥ÅõK ŸôMéÜý U98~j¦6/Ÿ˜×Ýä5Ï ‡W",úùÁ¿4yÝ•ápxöû3Z Mlµ””‘@gàÃdë‚V¥8õ×è`iþ>þ¤2I6îm'ñZ·†ÄÇ‹eļÞ3g.eêÊÍv/./)ù¨ù1šøñ¨öH ^Œ28;˜ÿçæteIIñ¬ÒÒÉfbUUõëg¶îwÛ˜vKIÉ(”V”_Þ)úEµKè¾¹¹c—•M_Ðxÿšõµã`^²ùÎ{Šî=ö¢{½X·f5«V® ¦ºWc¬O¥Ö¯k(¿üÛøíÆ ¡ûµ¨«SçÎôí7€ù_mœê¾nÝZ–/]Bzz:ý´V|ä m»ú×ÒÅñÛ·¡û7î7x¿á”L{‡åËZ~”Ìݦm1Æ´^‡èFâsª».énÑuñiUjÁ®]»nbNSSš¨O‘Íñª«[Ýr¿Ð=ñï÷«šïÁ|Sq×@|fj—îÿAeðQ®PÑ‹`ëæ¹"›|›Û·2'VÓê#´åÜ0oMM}úÅh²k—¸~ïoÖ¯³ˆ&®·²¡y}¢N‹É@e‘ÈŒZ‡}UõzЙ@6"W+n‰/ gùýÃZý:šs¥G¼9$ýMXóÖ6ù½U%éAë_ÃÖ§šLÖ_ÓM—"‰¶ª6f/Ðêß—Ê’’©)Û‘ÊPr€k\•Hv º/?Hò“Ç{ÈÜôô­KjÌÎ&º@4½‘å÷óxôY/\•}UŸÓá7¾@¨áýë „~Ñü•3‹gñÑ×ý¾áÔ"Žù=0 dñŽ~7’ÛÔå‰)yˆº"þpöž¹S¦lîo\›Ê ä?æ ä?›——פ—=;¼ÀÈÖÈ?³IyÁX_ ÿÙlð¦í=w"áâ]€×õFÿœèñ`dAAW½ åÛ{®]Ý›¯þë/û)—Ÿ{*¿ÿÍEüñšË¹ãÚ+˜:©å`®U+ãϤ3ºvMZW}šŠX·:>M>=#yù¶ö]"@ï±W²Áн{|ûª•ߵܗdþ²1fçØãz€UÅm¼´ÊWÀ>n¼G´E¶Iu>" Ê‚æû¶‹««Áw¯m8z0\Ñ *#%_o©pÌ“zœÄ—QúÀ‰ÖŽM²äÒ-ÛІL—‚ U×Óc‹E7cvIÉ’l°p†x\k–fX¦€*IVêh_I’Úkn8¼¸¸=±4Óшþ%èu<¯ŠÈ¨mI ùʉg M:¤\Dœl°' =ÒÓ›Œ pD{%=º)€Êòdû7'æWÇç¬ï]XXèMš‘Õ¥w<š»]ï£ÄõÛ€ÛF»—§6vŒˆüVÐb¼Lb(vÓ“³7@ÏôôvIúcLk­Ùk¯·º®\õ0,Ûü ½†Ê`xSxÒQý@…‡®Êæ÷Úà‘Û:ÃãÀÅ@>0ÛÍ >Âè0à à^ ¥ñyb1ç—Ç}]Ñ›|ÐéªÌÍöÕøß”ocÄ.Û‘¯³"RüBŽ?ÿi=ÛMIã †&ŠR£HÌt¢µÚ‘mhIOºº^ï7UÆ€ž|ÉÆ¤‚ :ô Ä™l÷gèz¯sgç¨{È™«7Ô”MQ•ÔtÑûª2~ÖÌ’g·XÑnìO<Â/>ÇÞ={sÆÏ/fè~#èܹ+ÞÔTŠßÄÄš¾üX4þQÓ|VÃ\¥Â IDATþØ&>ÞwÐê^›<Í&²J;ŽlrjJJ‹mƘc·ìÎö¯óB•¾@þOšï“DÀ ðuý6U¾ИMVŸ“nJ£cÚ‚C|8­ê6ÍÃú@ UDiÈ6ü|óà77w\?6.£±Ë‘ø ‰Çm1G5;šÈ?';ÚbVeUu3<_.Z´+O6,nÒFQ’oj¤²rʪŠHñ³µk×_«’™ í»¥ã’ñ8úeâ¿C$Éz Ù¡Ð âË5-›2eJ“ÞiE†&«SÑx´èæ²&•è½XHUUtpÒBÒöï£9Ó§_Y~fíÞÝ󉥛;¶ÉùC¡P:Шj~-ŒÙÕ|6qb )DxPTÎDµ§ WUF¿Lóð£ÀJTMñVD«ˆþ'ñ„†?$þ@ê—‘ð£Àd â „þVÌ~Æ'µòP¹ X!"‡KP¹7Ec5N̦Ñ4!UE’m[¥¼´øUÎ唣NGt"×tOOËoöYµ!q¾†©1Õµ(Ó*[T$ê¦$ŸºÒœ¢ÓQ¦9QO“‘,"ú Ê4i2Û%¶ ešhòóo­gÌX;|ðÀ± W!,W8CEèÀG çV–†ÏhüÀTT¿Oœ?Ù*mFDΑûE¤0±×áÆb¼;ñUD„kn¿‹žx:œÅ aû&® °×>=X·.ù³ÍÕ«šxêÞ#>O¸ªjç ,èÝ7>ïwSIµêÛ׳·¥¨0fW²{ö‹Ô£½¬¨¨è™ú¾¼¼¼¾8Þ<ÀUÇ™Óèˆç"D.!þ$½AV~~oè)Àz¼N“yJÛËY((à ÝÚcyFÑ#¹x£ñ¾ÌÌÌÔ”ŒnO:‚膪›gÏž]å Þx¥6S_Z&pWý4ËìœqAÄ“Z‚H]Yqq+æyé“ §£œ[TTôp“õ”‘¿(zºãr'´LÐÕBüæòF7&——7Þ5jìØ½RêbOºªïÏš¹UUÕueª8Š Çdff¦6˜ãÏ?¡I X–çwˆŽOdo˜“ú-04ª ÃŽÉÍ;˜ÔXg¯ë.ŽD"›½©¬()ù—¬T!Û4u/AA_Lrø°Ü@  ñz¹EEEP§!‰•¨Æ´E&ÙT^@ôW1'v Ð$eev àX‰gäž3«´t›æôåøCÇ+üŸ:òteIñ#÷}6qbMŽ?´\…uin“ ·Fuh¢`Mcö,‰,êg'Û—xØÔ"ÛyE$¼š$Ãû’.Vš¡råÛ _‘dÛ¥ÉÊn­ÊÒð3À3[*W /"Þ£Ý ‘ôî°dåÇ\·5m©ˆ”$]é¡¢¤ä.âÓ›¨ŒD&¸ÐfŸkM|mVy$RÎf^êE|ùºKoEä%àÀÔF« l·Å çSS½Þý´U5iFç½{öJÛr`QUÕ:–~Ó4åEzFݺ÷`ÍêU,øê k:wxò„XòÍ" ?ªMPõéÜÍÿ2éþ…_Ç·÷êc°1»’Ý2v=ò„'¦¿ð¶pÑËÙ‚EÔ‡ã½HGå_—i©, ÿÏÍðçò·QS³D½Þ=8é"r{ùŒ‹Û²±ç=o]Ì=´¨¨ÈÓš¡¸õö<à‰Ï,ú(Çg‚ÿö8rw­Ç³ÈSë†R»t¿ôDÐ)õ D% zÈ™ÙþÐjÓ¦’^sP¶?t5h/âAô1Ž«§äææÎ-++k‘X«­UC.SAç³±—}“*"‘ײÁ÷Q |¾`Ñøì`ð^bN•8z p°Ú} 5çv¢µs½©—"ú+_ Tåjì1'-í{jc‡zà× ßÖ?m¯œY<ËF@i]º½˜ܤÏwD5”Xïw&çhC2±Ï‹+A_0èÕ˜ñ¸5Ÿjjj/u9 #Jå¬p¸áÓÙõÆžÂel-žs'7×~UÕì@àjÁyKUþ•ãýBbµï:Ž“s¼g"r°®½5Éáºêü';¸$ J£ŽÓßuõ&a ³+Jg4¬÷«Ž”Šê¡8ú‹œ@`uLum²Lˤyþ@mô<…_gBËRÜèS®ënPOêXþ€è5›^÷s ý•±¢êÏ „RUR'VýYâšþ!˜9»¸¸É|vWBAQaÊ6׳½êçÞÛŒÝ_oâÃí/–‹ÈËăá)ªº]ɹ:gÄMV,_ƺukéÒeãóø×Ÿÿ/˾‰[Õ¨7ÕçÏçåÿ>Nei˜ÓÏ»¨É1o½òÂëi’1Öƒû¢‹\¦Êéàœî8ÄÅõn¼¦ŠÌPGÏl~œƒ©€ “E$(ÝÞ5cÌ–ù¡þÄW$8:±)y7˜Ù]õ.L|­h ¿³-c÷êÙ‹ÁÃöcÁW_ðÀŸnfìÇP[WËì÷#|ùɇœwéoyèodÞì Þ/žÆˆƒG1pè¾”åãÃÙüåú+wäq¤uJçã9•|öñ>;*êä noW=wvÜH8\ÒpFõï¿þ³… qd“YLËŠ‹¿‘qÙ~ÿH9D¡·ª³À%V>»4Òb¸ìÌ™3ÖnØëŠ¢®³ •h¤´´tEV 0Цyc±†á½å%%233û¥tér("C—®Š,U•YX›PW.G_q[庲4üòÈ‚‚w:×j6â$⬃ØGÎÙd/¾â”GŠŸò÷¦ÖÄòwxʺwN™Õækñ`øÕ–I;Eä?'}Þ­÷<¼[Ùv¾Y0Ÿ/?Ÿá#æªÛþÊ•?-¢º¦†»{®ÉþzõC ³rýüú†M¯ŠöŸûïâ½É2l8×ßy/^ï®›UüòsO«›>ùTõ7íÝ–z»mðî"ž)ÿFDŸpS¢×¿jï6í,@ ›âœÈ]ncwázS |¼#‚ߎ(+èç _öHOûç&Šõ"ž8èÄ“»¼@üƒõ½mž«l:$ùZU­wÓìqDä µÓÀÖ¯ÏUuƒˆ<´µçìÚ­û&‡' ¼ÞúJ¾üæôJdjÞ:gdÐ9cØN;ßÈÆ%¾þ!"ÓÙ ·œòµ˜2)>J!xØHñ¦,<’É^$üî›uâ¶Føñù—ðɼ9ÌÿêsÞ›ü‡Óáû™¶ŠÀ;AE¤øI_ tÊeÙü·+#ů´w›v†Äpf[é=¡"¾H–´Êl¥ÂÂB¯GçWNmåòG½K_ËDäyâ=ÃÓ-6ƘMª&žHó9à5U­ÚBy³‹‹ÅbøE$ifù¬µ]•phâë^™F<ÞmFiÕTo 9VçVVѸ,ñµ$Ñ3œ±ùCŒ1¦Ã¨Þ$ô¾ªªkÛ¹=¦ %žùípúmYkÚv›Œb‘éS¨^¿žüÃjÒ?pÈ0öÝ$_~ö1ŸÎ›ÃˆƒGmsýý`Ù’“P»ÍìRp¹ŒB4eÞìʵw;ÌžëÛ%Kæ~»dÉÜönÇÎ0ÿ‹Ï§Î‡©mTÝJ`Ûö¡lŒi&+++Ãé”q¤ƒ¬)/-~·-ëÎÎ˃èIqfVlãÒ…Yùù½¨†YÖ(Q¤:âI­ž^VÕ¤ ÍîÏëMQàí8øœV_¼<«ª+"ÿÙQmkkS'Ƈ?;ò˜&ÛÇu,_~ö1Sßzm»à^ýú°~íš-”4ÍíRp"­þÍíÝcÌî)1œ+ù²¦fÿ@}^U?I{ólšé @·•+$ÅóHÅŒ‹}yùãð0º¢¤øíݶś‘ÑO]^Bt.ñ›6ãxô*UN×:·ˆø†­æqÝD^}8v‹´“Ñy{¨.ÿÙÙíÈö¯gveiñë;ûÜ;’‹Lt¥ÇÙö÷°ó,p÷Ÿ¢ìÒ#f<žX¦ªÜ„0x•3=Iqª‰gÊmªúZ[ÕeÌ6úœDЫªeíݘ¶0eÒT•‡þÚ2›sZZkª70cÊ›üðÄÓ·éKLJ>ïÓ»ÏJšæ,6Æì©”øÚÛÏÏ 9¿Ûc:ARqžWUÍÊÏïíƒ\qÿ»3Û››ÛY¼©·€ÞI”žÝÞiKëÖ­¥túTV~»Œ•ßn:õ{o¾¾ÍðGs*8ðÑÛt|Gf°1fO¦³1èµÌf§Rœ Gú â8i€ëˆçWÀÕ›:¦°°°Óúõë3JKKW´æ¹¹¹=ËËËWljh ›š:wÛ?ß‹ŠŠ<-XÐóÀÁƒ¿?~ü&×ÎnÔž”ê®]ÓæN™Òê䎹¹¹SSS5oj=ÐmVXXØiíÚµieeeÛ5‡UDœQ¡PÏ9áðwí‘)¾¢´¸$ÛŸÿ¦$†‘WDŠÿæ †.—ø¼H³U¯_χT’Ñ¥ œÕÞÍÙÓÔ™ª:¯½²£„ß}“h]-9±\vÍM›,wÝe?cÉ7 ùxîlFfnÝïÙ¬÷Kø b&ézÔqÛÛäÇ`cÌžä›ÃfÚ—¦¢ü@g°Wõ{qDõ<pN0x½ªüJUÎ÷8îw®ÊÝ@ñˆ/Z zo÷ôN·L™2%Ú¸V_ pÈ ùxS»gûƒ«sÁ Tî*/ ¿¶±\è 'ñíå¾@èç@qE$|êæZ-"âË ^¤ÂåÀˆïç ÕåøCsUä‘âš“ ¨*ÿÄ›:&uCMª/š'ðo’©Íöœ€ãñ¦î]í‚/Zð²7½eæÌ™ ·tusÁ‡9QD/,/)™P¿=777%æI»É=Ma8ÞT/Z„ðž7½ræÌ™Kêðç®¢Ï ¼SQ> 7(pqžxBS½wR»7;/x1MËÎ Öø¡×½nô²ÆõìhEEE=ÑGF‡ByŽÒ?êq¦î¬6tTß-_Æ}wÜİýàÆ;ïoïæìQ“öØàWU™:)>ðæÐn>ÅÀØ#Žá?Ì´·^ߪxÞ¬rþóÀÝœ~î…ôØÛVÝZcöüšö&ª*싹_¦ªnpÅógqhXBFUÒ€>"šïª\¼òJD/¹aÍúšeÀ}õÇø‚ÁcÀy¨S២Ì‘Áª\ŒðJN tyy$|¼~&‰àÆ Ÿm©ÝÙþà- 7ï]¼‘ïDu_„Ÿƒ>ï äŸÖ8ÎSp€Ç#%@wQyá=WÝ~ˆ\‰«Ã@šÔï+(è/8Ó€> “Dœ÷]W«ÆçGïѹ¹¹£ËÊʾÛü–(}\WÖÝÿØcÓºzÓŠÍQ˜)ª×¬«èÙQ'å¨Ñy‡%†>£Ž›†J”½6þ\¼‚¸}†R[7ä{nHAø pJT¼)ÀN[lóËo¾ ¼êÔÕ= àQ¨*¿˜]\üíÎjƒ1fë|rCç| yðÝ*]ª««IMÍV×éQV<£IveO´z²ëMu‘………Þ†àRôl€˜+MƇV¼÷Þr_ ô pK“×&ìM<•Ó§ÍÏ_ ß Ü²­Ë¨#¿‰×íÜÖ|èø¯s_ç¨{½ÂIYÀÀÙ‘È–æÏFS%vCã 3gÎ\šãÍS!Û©c`=°mÀu]ª7l ½sgDd‹å£Ñ:ªÖ­£[÷­*_Žõë«èÒ¥åêxn,FUÕ:º6êuÛ’uëÖ&­+™êõëQUÒ3l‰šŽÂu]†ì7œC†µºgö„3ÎaаýèÒ-¾Òàáûó£3ÏmQ.%%•¾1`Ðzõí¿ÅàÚlžÀÆcÌN¦Í·•——¯ÈöÝ‘ëˆÄfvj~Œ•ªà"›k·eeeuÄ3²’™™™šÒµké-ª)â¤y@7k×®ÍV;v//tC©™ýþŒOZT(ú>*Í6ÉÛŠÞ\ë ;;Â3å‘H¥Æms‚©x9ƒ•huyóýϘ±Ö~’•CÙB)>”DÖ4ß®+QPgã°i³õÔuy÷Wx÷ ,[ò n,†×›Âàý†óÃOeLþaMÊGëj™ôòó¼7y"+¿û×uIIMcßýGròÙ?eÄAM×W½þ²Ÿ‚8üážGÿø#L{ëujª7Ыoãçä³~JÕÚ5<ñÐ?¨(A,%=#ƒcO>“cO=3i`]½~=ݟΛÍêUßÓ­{²ò‚œ}Áe¤¦5}K.]¼ Ï>Åìò뫪èÒ­;¹¡qœtÆOè¶×Þmz=Í®ÅqŽ?íì­:fȾû3dßý7~?l8C† o릙f,6Æcv6ey‹Mªê „”FhÝ_âßÞ²zCÍ-Í©/*0p{š3Úï!xþÚ¥Û‰(â ï8-;e¥Ú€’g­v½‹‘¦É£Ë#3"9üó½äJW¹2Û\‘í½òĬ™á‰ÛÒ\£:”ï|K*K²TdÀ+Tmñs%¶MÝÓ¦‰çþó0o½ú<½û `ÜÇÐoà V,_Né{ïðà·±võj?öG åùû_x¿x*ý á¤ÿ”´NX4ÿKÂSßæ/7þ7þõþ&ÁBÕºul¨ªbüãðɼ9wê©­­æÝ‰¯0aüS ¶¯=ÿ_:wN申~ƪïW2eÒ^xêQ Û¯ÅRqîÿË-lذžÂcN$­cæŒiLŸüK.äÚ?ý½¡ì÷+¿ãO×_ÉšïW’ÇþL]msÊK™:i_}ò7þõ~gÇ_hcÌfYlŒ1Æì¢uDE}¤lSåÔ‘V-¡”LnîØÁŽ×3èòœ¨>'Ž.ŽÆ<ë<^·— …†qŸ’¢)Äûl“Æ„Žõ¸Ú²'­÷<ãR0/íÞ;v~llìÈøøªO_Å4M 08úSdÃQ§2¬Ùívü67«•žz‘Æ¡MmÃF^Ê÷_KÜ‚¹Ž¼gwË/ÀϯN|/GÿÈèæ|3å]~ùþ+nðqÇu‹›¶R»wleüÄ×±ZÝhÞª-o½ð$ïNz–^ýrÓÝãO{ƒóý§ï³tá¼*xÇ–Íôì{:÷>þþü"0RËöÝ»;ÙÞ³gOÓ `ZKJªOKR/¼¼¼iÕ®#ùùy¼ðȽ,_¼€ÂŠu²@•©Áž^DFÇÝ¢%ÅEìKÛÃŽ-›Ù𰽩åK¹ {ýá"£c*ß»"@†AXdåÕ~Ê7*È;È‘<<½*­Ï<$¦Uùµ¬ýϘ÷¤y붇—›CJÒN¶'lbëæõäççåS´EÄùôXDD¤òrãû";/&#ºöíÛmM\ÜêCm†a]cû|×=¶_OÓ°^½dÉ‚òK~ÅÚ^ó ˜˜9`št>>t½{ÿþØy(¼m†WS¾V¹ß`^æfXn üü`zöì‚Õã–#ïѽwßÅnÞ¾={ÄÆö]_i³*Ó0‚0ÁÄþO;4WÏ`2&/˜WÞTææ1ÖÓä»zþ÷Ó™?{{÷$׸V© À""" T\\\a÷Þ}Çað±›?{ôé÷ŠÝdµÅ´·ëÖ«ÏpL‚¹Ñ^P°üÐk 7þ0Ë'_Ð=¶ÏÓ†IÖÊ¥K^=êMLãg ó óÚn}úb7—€ÙÅ0ŒÛ€)”?!âæfß#¶ÿÛ+ãÅ›ó ÃÎÅ`ŒïÛ'ØÄf$V[M˜jÀXÓäïGzó L£¯‰åçî½ûM3±¯4 K˜§€å.0KÜ0§ü›÷ÈË0ß(6¹Þĸ¼Gl_/ ó»Ý(¶œaÜd[ÜÿoÆþ· Ó| Ãð(us›8°iánLãL{7Q±ó6€½Œ~Æ;¦ÁÀI€ƒxèÙIlOØÄšKذz%»¶'²ck³¦}Å-÷=J—žåvlM`Ò“ã°•3èœóéÜ£7þxxzRTXÀ3ÞYçõzzzT{Ý jhžþÅÇÌœú%AÁ!\vý­4oÝo?Ü=<‰_ð;3¾ÿ²®Ë‘Òh‘lÕÒ¸Ï,Øb²Í4ÍG ÌM؈Aoà=<¬ƒÖ®]ë˜ ºbñâí&¼x€ñ¨iãŽ>:¬^ºøÓ4Çî†i>hü`Æÿ€·W/]2ÞÄþ¢kL쬎‹‹3±ö˜·ƒù&÷_Z-W íX¸¹jÉ’wLüÈÇ0ï4 ã0§O¹ÕÄ~ÞŠøøEÿæý‰‹‹+,ööìi`~`ÂÓ4¾1 ~0Mnf[í¥WÆÅmû7cKÝhÕþ.¾úFž˜ô6/ø5gEaa!¾>‘R[ çÌ¢¸¨ .ÍÕ·ÜIç½hÞº-Q1xûÔÏÙºÙ™Õï-—›“ €`ùb»ÝÎÜY?ðг“zÁ(ÚuìBt‹V„Gþ§ ÚE¤è °ˆˆH=Y÷ðÔ1Ú«ý`º"vo3|¸§OFNOÖӼyóÔê6}X7&66öR7·PŠ‹wÿS]«—.y®gÏž/ááÑ Ã°5òðHš?~iEóïƒ >x°,´Q#7Ç¢ÇÕññ¿Q½zõ OŸe˾ƶÊ#²ÕK–||Ø«W¯0»Õjšfi¾›[J¢EU_§ óçç·†1¦kll ¦éÞ&&zGuïϪ%K~=²¾UK/©®æCVÆÇ =žzVÅÇyV{}IÜj¯/ûøèxîq"*+-ÅĬ4 90¸1—ßp+[7¯gçÖ-ìMÝC³˜ìÜV~Ät‡ÎݪŒ³qM•#ŸëD^ÞAr²²ªll•–Rþ-@zj E4mJ“ðª+6®«rì·ˆ8‘°ˆˆÈ bë¬YÅÀ†šô­Øq¹ÆÇ Uœ£›P][EN«®mÙ²e{kzÃú×k1M<,³Úà_q–ð®3¶Ô­ø?çññ›/ÑûôÁÜpוÚìv;Eå“‚BBðöñ`÷Žm´nÿ÷þf)I»˜ýã÷@y@--µUY×[›æÎú‹¯¾ÑñçÒRKþü€Øþƒð©¨5+3ƒƒ¹94:l-ó¯?|GÚî]俍³:E¤æ€EDD¤Áë4hŸt0í–jø4\{öÆ»Q#Íû‚‚|Zµí@Xdy¹9,[¼€´=)ôê?_ßò0Ùµw,[6®eæÔ¯((È#<2š[˜7ëg®ºå~üúS²2öñó·ŸÓ«ÿ šÅTÙü_+µÙˆiÙ†µË——›K§n=±•ØX8÷öîI¦e›ötèRþt: 8˜æ­Û²k["“'Nàô!Ã(-µ±nå2¶l\ÇuwÜÇ;/=æ5+Y¶h>í;vÁÿ(l‰HÝS‘­[ï¾ßzœx›°£MLä2g×$ÇÇÇ×—G'¾ÁWLfíŠxV¶äÛ××sG]ÁˆK¯v\2üB2ÒÒ˜ÿÛL¦Q¾9yPpWÞx;ýÅ,³óÙ{¯3óû¯HKNfì¸'j­V[iù:äàÐP®ºåNÞžø ÿ˜½¬ Ãb¡s^Œ¹·ò¾j·Üó0¾6‘ÄëHܸ€6Neܳ¯Í©Ýç°~Õ2Þ}ùYnðqzö=½Öê‘ã£,""" š3Þ4ŒRÓn&º•¹¿´µÏÒ°…4 ã®ñOS\THÎ, ‹ Â?0‹¥òòw7«•«ÇÜÅe×!=- ‡8ú 8k±ƒ†Pxð ~¼2åÛjïëfµ2åǹն5hV¥­MûN•®=úâ›”ÚJHOK£IXîU—x‡EFñèKo‘—›CvV&!¡øù5r´ßóøsäåÄbXðñ­ŸM¼D¤z À"""Ò ó'9áxzyW»YTuÜ=`‘“À†5+ˆˆŠ®týëÞfÏî$.¸|4#.»Æ\“¶'òÂøûxgâ“Lúè[ÇF«â±fYáÍ¢yô¥Éx{{P\TÈsÿÍëײ|Ñz tÔZ¬îî$o߆›aá…w?ÃÓËÓ4™Žaô®Îsr¸ôº1–òCV«;Ýz÷ =-åß¼""""ÿHO€EDN“Ÿw÷Êÿ—]\RBvæ~ìv;îVw®¿óbZµu´'WlÒº}',–ªŸwv8µ³¦}Ãæu«9{Ä(Z´iG‹6íª­!0¨1ÙY5;ñÄÛÛ›Èè˜J×üüüh¯¯_¥¶€À r²u<¥ˆˆˆÔ `‘€ÕêŽÕýҵô½iØívÎuCοбØÑ^ñ$uýªå<óàUÆ´ÙŠÈÜŸQézjr ŸÍ¦õ+9™IQAeö2L»ý¸jö¯̇³X˃x@Pp•67·ŠI¦y\÷©)`‘À˜ÆW9éûÏ>à×éß²75¹Jø(ÈÏÀÃÓ_ßjFõ% [0>~W¶n^Ï+¡¤¸ˆö»Òõ´¾øúùáááÉî];X0{Fk¶}Ÿ¬cn¢%"""RW€EDNP\v ËýÉŠ¸¿X÷=ûž^©=¤â8¡ÓúžÎ…W]_£1¿þ芋 }ëÿ8ãœó+µ-ž7縰ˆˆˆHC£M°DDNPž^\=æ.¾xï òrs*µ‡4)À©)»k4ž­¤˜ä];p³ZéæÐ*í»¶'þÇŠEDDDœKXDäÖ¹G/zö=Üœl¾øà­Jmº÷Â××5Ë—•™QåµÎù…w_~–[6`š&ö²òµ¾ùó*õݳ;‰?ç”ï]X_G_ˆˆˆHÝR9Á]yÓX¼||X¶p>«â9®ûøú2ìâ+(+-eâøûذf%ùù$íØÊ¬ißðÅûo²jébÇÀž^D7o…Ýngê²75™ÌŒtýñÏ?|ç_r%»wl%#½|.‘‰Ö‹ˆœàƒsñU×óå“ùì½7hÛ© ~[ »ðR<==øîÓyåɇ*½.4,œko»‡ˆ¨¿*ºj̼ùÜã,ž7‡Åóæå;P_ríMœyî…,û‹”];wëh.»~ ƒŽX',"""Ò¦Ž›Á0Œ';÷ìýЧ3æy9»–ÃmOØ„­ÔFóÖmñòò>j?»ÝÎÖÍë1Mˆ" ¸ò1Cùùy$ïÜNjržž4iN›0ª9¸ ?Ÿ„ kÈÊØG@PíOíF#ÿŠŠ IX·š2{­Ûv¤Q` ‰›Öãfu£MûNØJmlOØ„‡§'-Û´¯4va~>I;·áç׈fÍ[VjËÉ>@ZÊnƒƒ ‹ˆúWïW]øòƒ·xëù ‰…ùÕ,"""' `nçS9yh °ˆˆˆˆˆˆ¸`q À""""""â€EDDDDDÄ%(‹ˆˆˆˆˆˆKP— ,"""""".AXDÄÅ,œ;›'î¹…?çüâìRDDDDê•°ˆH=(µ•pÃÈ!Ü0r…ùùÕöÉ=Å÷_Ç #‡ðÃWŸÔY-¹ÙHÞ¹ƒœYuv‘†HXD¤ÈËÍá¥' =5…á]Æ…W^çì’DDDDN: À""NVŸÏ¤'bÏî$Î1ŠQ£ovvI""""'%«³ qeEE…¼òÔ8’vnãÌsGrù ·µ¯išl\³‚¤íÛÈ>IdtsZ´nKL«¶Uú.øm&^^>Ä̦µ«X»"žVm;ÐkÀ Jýìee$nÞÀö„MäåæÓª {öÆÇ×·ÚÒSSؼn5©)»ñ ¤y«¶´jß ooïJý’wî`û–´ëÔ… àæÿ6“Ì}{yŵøù8ú¥$ídû–M¤&'áíãKdtsNéÜ ßFþU¿~»µ+—’²k's³ñkäOdtsºôŒÅͪg"""òÏôƒˆˆ“ØJŠyýéGÙ±e3Ï>—+o{Ô¾é©)Lyãe¶&lÀÝÓFü™7ë'LÓdÀs}ëÝ•Bà×L¦Q@ ž^^¼ùüãZ) Ÿ½û:ý> O/JŠ‹hÉÝ=CXD”£¯Ýngú—Søí§©ØËÊ jL~~%ÅE„6 ç>CDTŒ£†Õ|ýÑ;\uóXâÎg{Â&Î<ï"üü(-µ1íó˜óó4LÓ$ 0ˆ’â" ñäú;î§Ëi±Žñ23Òyù‰‡HOMÀÛÛ›¢âbL»à&Üýس4‹iñ_þ:DDDÄ(‹ˆ8Ai©7Ÿ‚-×ÒÿÌ¡Œ¾ín 趯Ýnç½Wžc×¶DF^q-Ã/¾«Õüü<>÷uΛ›•Ñ·ÝíxÕÝJqQ!?÷猼„n½ûÒÈ?°Ò¸qóÇׯϽý1aQäædóù»¯³rÉB>{û5|f’£ïŸsf2kÚ7´j ·Ü=ŽÐ°LÓdé_ó™òÖË|íyÞ|á žŸü1¡a|:ùÒSS8ëü‹:âb‚C›PR\Ĺ¿òõGïðák/ðä«ïÕÒߎˆˆˆœ¬´XD¤ž•••òÎKO³aõ ºžÖ‡ëÆÞwÔð °xÞvmK¤GìF\v ÖŠpéëëÇMw=@pãPÍ›ÃÁÜœ¿_d±ŸŸGTó\zÝÚt8•°È¨JãîÛ›Êí=îxÒëÈ-÷ŒÃËË›„ kÙ³; €¢‚¦>O/n{à1G(5 ƒØƒ9{ÄEäççñ׳þ¾}Å׳yÝjîÿ ½ ¢eÛxzy“ŸŸÇ쟾Çb±p˽;Â/@·Þ}9ó¼ ±—•ñów_8®oßš€Åbaä•×ÚO/Î<÷B®ºåN?k8e¥¥Çýw!"""®EXD¤ž}øúDV/`û–Mdf¤³ÿ–kèÛ¯J›Õ݃S{ô¢ÔVÂꥋ«´÷9ã죎۾ã©7­tÍÝÓ]º°kÛ’“¶“ŸŸGóVmªôèÙçt–/ü³J[‹6í lVéÚÎÄ óóiÕöš„GVyM¯~g°eÃ:ǵơM±ÛíÄÿù;¦iVê?èœ ~Ö‹ˆˆÈ?Òo ""õlýê\tÕ òËÔ¯yíéñ<:ñMÇôá#¥§í`ÃêåìÙ½³j{źØÌŒ}UÚÂ"«ÌCB*žä)(8(?/¸|üT òó˜úÙUúÛlåO^÷ï¯zÿ¦Uï¿ßÞòû„V ÓAË‰iš†Á—_Ã;/=Ãçï¾Á¯Ó¿£Ëi±t8µ+§tÏQ¿F‘Ã)‹ˆÔ³{žŽ]{`š&i)ɬŠ_Ää'pïãÏcqs«Òÿ@æ~–/þ‹£M”v·º;ëáU³›ò!AÕ^?ÄóórËïŸU~ÿ=ÉI¤ïI9êý óó±—•Uúüª¹vVæQÛ|üa¥¥6Š ñòñ¡Gì{ñMf~ÿ5ëW/ç_~ä_~ÄÝÓ~ƒÏæ’kn:ê""""‡(‹ˆÔ³–mÚåkho¾û!ž{8•MkWñÙ»¯sÝØ{«ô jLVÆ>yáuš·®zäѱ˜ÇX[\XPPýõü||üÊj``0§Ƶ·ßs\÷§šÈ\¾VAþÁj_QPiš¸{xVzºÓª-cÇ=A©­„ÄMX¿r9ñÍeÁììÚ¶…G_| ‹E+{DDDäèô›‚ˆˆyzyó¿GžÁ? ¿~ŸÅ¯?|W¥OH“0àï©ÃµåГå#å(’|è ñ¡ûgÖÒýC›†™Yýý+ž7®ØìêHVwNéÒËnÃÓoM¡Ix$»¶%²kë–Z©ODDDN^ À""NÚ„±?‰ÕêÎÔÏ>`eüÂJí:w þÏ?ª}ý’sY¹d¡ãßšÚ´nEE…•®••–’°~51­Ú”ÿoë¶xûú²yÃZÇôåÃ¥íIaÎÏSÉØ›V£û6oÕ//o¶%l"+3£JûÒ…óh{Ê©dìMcÖ´o‡Îϯ­ÛŸ@AaõO´EDDDQiÚ´ïÄèÛïÆ4M>xu"»¶%:ÚúJhX«—Å1ûÇï» —Ÿƒ;›_ŸÈ”·^ÆVÃc€ìö2Ü _¾ÿ&¶R›£mú—SÈÏÏ£}§.4‹i€¯/ç\p e¥¥¼óÒ3•Ž[JIÚÉ[Ï=Ê7SÞeÓºU5º¿o#†Ž¼„ÒRŸ¼5‰‚Š)×›×­á÷™Ó±º{0ⲫ+Õõþ«Ï“¸i=ö²2Çõ=»“ذj9V«;-*»ˆˆˆÈÑh °ˆHÑðPö$íä·Ÿ¦òÚ³òø‹oÚ7«•±=Áû¯<ÇwŸ¼ÇÏß}N“¦á¤&領Ԇ·¯/w>ü¾¾~5ºOiEPqù5¬_¹Œ»¯E“°HìßGnN6AÁ!\yó•^sÎÈKÈÚŸÁŸs~áîë.!¢YsrÈÍÉ`ð°œ~Öð­Ã.¼”ýûö²xÞî½á2›ESXÏþô4|||¹é¾ )ŸÎ7ÞÎ×½Í ܃Õ݃°Èf’‘ž†ÕêÎõwÞï16ü0Žì’¦?‹ˆˆ ,"RWŸr«éÏõïð÷\ÓŸEDDÐh‘:cÆr nšf†³ëq%†aøû€j@Ë)IDAT=¦i¶qv="""Ò0(‹œ@ ÃxØÓË{Œa`8»ùg¦‰?˜^†aì«ÏûÚl¶E¥6ÛUõyÏËjµ~äîá1¤.Æ.)) ±F©ÕÝ=».Æ—úaÚM{qqÑs¦i~àìZDDäÄguv"r\šFµhÙì²ënqsv!r\¢ëëFýþ+ËÿÕª¾î÷_YÝ=ZvïÝ/zаók}ìÍë×BXd3ÿZ\ê͇¯¿hKOÝÓØÙuˆˆÈÉAXäÞ,Ú>jôM ÀR­ýûÒY¾ø/g—q\Úuę̂Ñ7Õú¸6[ îîµ>®Ô¯©ŸT–žª#´ED¤vh,9))üŠˆˆÈ‘€EDDDDDÄ%(‹ˆˆˆˆˆˆKP— ,"""""".AXDDDDDD\‚°ˆˆˆˆˆˆ¸`q À""""""â¬Î.@DN|üòûö¦1tÄ(‚C›8»œZ‘´=‘¸siÕ®½úrv9rÙ½s;[6¬!ïàAºœKTL ¦~þžž\|õuvߤí‰$l\KA^>Ýûô§iÓ~øú¼}|yŵ”1í‹)•®‰ˆˆœL€Eä?[·Äëè}úà“&§¦$óûŒé W–Z³qÍJ^}úìee¸{¸Åï3¦ããë[gxÍò%¼ùü˜v;>~¾óûŒéÿ€m6~Ÿ1ÀàÆ À""rRR‘“ʺ•˘öŇ<:ñMÜ=<]ŽH% fÏÄ^Vư /-˜  n½oÍ–k9ÔU̘ú¥ãú„{nà /Ñ¡K7f~ÿ¿þø-…ùù•ÆèÔµ£o¿ç¨¡vÝÊe¼ýâS”9®µïÔ…±=qÌð!Η—›Ã'“_aõ²¸JÿÖÚuìÂõwÜK“ðHÇ5Ó4™óó4¦þ¶R›ãºa z—_?¦Ò‡)ï¾ü,;7óÊ”o™þÅϟ㸇a 6‚«o¹€y³gð×;^ûú³pÑÕ×3xØH{=>¾¾¼õåOŽ>¶RSÞx‰e ç;Æ á¦ÿ=Äî]Ûùöãw¹èª8ï’+úõÏ™1™ßåøóËO<Àe7Œ!¶ÿ™<2öz‚ƒyuÊwÇ|ív; fÏ`Ú—S*}ÿXÝ=~Ñe\pùh Ã8æ""" °ˆÔ‰ôÔ^{úLÓäîÇž#ºE+ üéIƱk["ýŸÍ™ÃGâíãÎľûì}&Mxˆ;~Š.={Óõ´>‘¸i{S«<¥ÊÎÊdëæõqÆðó‰iÓ–^{ÂÂBn½=uSÞx‘ ¯º–6í;‘sà¿Lûš„ k™S}0ç++-嵧dzck}žI¯þƒ())bÉŸóX³,ŽWŸÏã“Þq<ÝýfÊ;ü>c:a‘Q\2úfšÅ4'û@&3¿ÿš³gšœÄ¸g_qŒoµ–ÿýú£·ÉÜ¿±ãž¤qh’¶oå»OÞcÞ¬Ÿ8µÛit9-–ÓúNdts¾ýø=2ö¦rÕÍc iBDTôQëÿðÕ‰,_¼€f1ÍyÅu7fÃê¼3éÚuì €§×±×ïö8„æ­ÛñÕûo‘•™ÁèÛîÆ?0ˆ¨˜Çõ^þ2õ+~øê¢[´â¢«o$<2ŠýûÒ™ñÝçüüíçÌÉáš[ï:®1EDDœAXDj]î,^™ð0…Üõè3´nßÑÑöל_ص-‘±¸ñ®×›F4#,2Šg¼ƒŸ¾ù”.={ãfµÒï̡̚ö ‹þø ¯º¾Ò}–/^€Ýn§ï ³ !¨w[ÝBºôŒÅÓëïi««—.ÆÝêÎÕ7ßA×^}×ÛvèĶ-Ùºy={S÷T™»eãZnðqzö=Ýq­C—nÜãå$lXKÊ®4kÞ²¶Þ:©Eq æ²ck=ú àæ{v\?­ßL¸çV’vncÙ¢ù cíŠxºœKXDaQÌø®|–BûS»]>¹àˆ PþáΊ%au÷à§'9–´lÛ à>ž|胗c?u oMx³h¦12¡c—„†•OÍÎÉʪÑû˜‘žÆÌ©_ãÈ}^tÔN›S:2þŽX0g&Ã/¾¬Ê2‘†ÆâìDääRTPÀ¤§Æ±?#1÷?B§®=*µ/_¼€ÁÃFTym‹6íˆnÙ†]ÛIÞ¹€g Ç0 /ø½ÊÆVK–5`Ȱ¬ëîǞ㽩¿V ¿77¢*ìÞ”ÝU^çH÷Þý*]óòòvŒ³~Õò¼·8ÇòÅÐðÐ*mcîϽONä”ÎåÓã—-ú“ÒR½ r„ßC àÿá,]8¿ÊXCÎ鿇DUÌxÈÚ¿ï_Õ¾nåRL».={WYÿÞwÐYÿ«qÿU-+ⱕÓ³ßÀ*µX­îô?óL»EüVo5‰ˆˆü[z,"µ¦ÔfãÍç#e×N®¿ó~zĨÒ'=5€œìlX]5<úøù°75™¨- ‹ CçnlZ»ŠÍëVÓ±"Pg¤§±#q3­Ûw$,2ªÆ5¦&'‘¼s;Ùٙ؊m˜¦Ì}{°ÙŠ«ôoSí&?M+ÖŽæd¨ñ½¥~¥§¦Ð4"²J[XdT¥7ûÓÓ*úV¿9VÓðòé÷2÷W;Ö‘¼}ü()®úoª&ݧºÚݬVbZ´f]Ö²5öñÚ[ñ= Tû=[j³UôK©—zDDDþ `©5_¼÷)I;ò§¤G*-µ9ŽyÿÕçŽ9VVæßOΞ}.›Ö®bѼßxù¢ò§{5yú ±7·_|Ф[ò'¿>Þ>¸y¸S˜_pÔ×íIۡͯ*7X¹9Ùx{ûþcßýûÒ ªþïÛ?0€œ™UÚ¼ªÙ!ú¿î•s |z²¯_õ›¬…Ô`çòÚ²?½<Ï›õófýtÔ~*v˜iÈ€E¤Ö¤&'qæ¹2öÏ|Þ¾¾,]4//oNë?ð법Úxñ±ûÉÌHçŒsÎgØÈK*m¨õîËϲlQÕ©­æQζ•”àáyìMˆÄy<==).*ÄVZò}½}ÊCrña;}ÎV\>†—Ï?‡éÚpèŒàÒÃv£>\qQa½ÔÍ\>šS+Ö?WÇÃËë¨m""" …°ˆÔšëî¸þƒ‡ܘ©ŸÈ;/?Í#/¼ŽÕêîèÒ¤)i)»iZã³Gm†õëôoY¿ˆÖN!yç 9§Ú'ÍGJÚ–HfF:Ñ-Z1úÖÿUi?Ö:Íì̪OürsÊŸüú剡8_`pcrs²ÉÍÉþÇs››„Wl u ú¡²sʯ××ùÏÿ®ò¬¶}_ZZ½Ôåß³ž^Þ´lסÞî+""R´ –ˆÔšˆ¨ò]m‡]tºõd×¶D¾ûäýJ}¢[¶Ê7ù©NÒŽ­T’|h3¬ø¿þ`ñ¼9À±§?›‡ýwjrM#ª®ÕLۓ®m‰å¯±›UÚS’¶SXXõiÛŽ- åc†W]£) C‹ÖíØPÍFe³¦}øۮeÖ´oˆŠ)ßmˆµÕŽ•°~ ‘QÍë ÒªšF”8´uóú*m{SÙž¸©^êˆnQþ=»~e|µí™éì¯XG/""ÒÐ)‹H­3 ƒ›îG@p0sgþÀª¥‹mç^|%‹…_§çؤèÍkWóÔýcyøök±1õ³Ix$íOíÂæõkXyŸ§îKëö§°a-ö²2N?k¸ã˜.‹›£o¿‡ÉÏ?Éä‰èÚ«a‘QdïßÏŠ¸¿À0¸zÌ]øÖSðt·ºséè›ùôW™g aè—Ð,¦Eµ÷éÛO/ÊÊJé;è¬jûœ5âbJKËX½t1éi)X=|HóVmðòòÆÓëïÍÓ,nÚuì‚—OåõìÎFPHKÎgÏî]¸{0ⲫ9}èyLÿl îîU?(ªN‹6íh䈇Çß÷µº[i×± ~þï4íæVõ@ÛŽyú͘ùý—ìÚ–HÜ‚ßññõ£í)§2ðìátí_£:DDDœÍ0ͪkÞD¤a2 ãµg »ýϦÖì·Þ“̆Õ+xeÂ8bæ–{qv9 Ò»/?˧o¿¶´° ?ÖÙµÔ„—·Ïü+oºíŒ»Æ?íìRN(“'N`å’…ÜûÄ têÖÓÙåÔ©ËÏêS´eú ¦i¾àìZDDäħ5À"rB().âów_Ç0 Î>¿úéÏ"'‹²ÒR>{÷u^zü~2öVÞñ9??-ë×`±XˆˆŽqR…"""'&M‘mÿ¾½$mßÊœŸ¦‘‘žÆCÏ£yë¶Î.K¤N¹Y­ÌÎfóº5¼ýÒÓ y 1­Úµ?Ó¿šB^ÞAÎzÁCÿy0qP‘íÙqw‘“U~k>¸ìú1N®H¤~Üx÷ƒð:¬Š_Ä»“žu\·X, 6‚Q×ÜäÄêDDDNL À"Ò ]yãXJŠ‹‰jÑŠè­œ]ŽH½ñòòfìCO±7=»w’Ÿ—GpH"šEììòDDDNH À"Ò Öo ³KqªÐ°pBÃÂ]†ˆˆÈIA›`‰ˆˆˆˆˆˆKP— ,"""""".AXDDDDDD\‚°ˆˆˆˆˆˆ¸í-r‚Ù°j…å®Ñ£lήC¦¤í[ÝÀ4]G™¦9wæöm[6—9»i˜RvíÔï*""Rk óú=IÄÕ†q! säŸl3Mó-gQ†aŒ:8»iðf˜¦ù‡³‹‘Ÿ°ˆˆˆˆˆˆ¸­— ,"""""".AXDDDDDD\‚°ˆˆˆˆˆˆ¸`q À""""""â€EDDDDDÄ%(‹ˆˆˆˆˆˆKP— ,"""""".AXDDDDDD\‚°ˆˆˆˆˆˆ¸`q À""""""â€EDDDDDÄ%(‹ˆˆˆˆˆˆKP— ,"""""".AXDDDDDD\‚°ˆˆˆˆˆˆ¸`q À""""""â€EDDDDDÄ%(‹ˆˆˆˆˆˆKP— ,"""""".AXDDDDDD\‚°ˆˆˆˆˆˆ¸`q À""""""â€EDDDDDÄ%(‹ˆˆˆˆˆˆKP— ,"""""".áÿfŽÔBzHIEND®B`‚realmd-0.17.1/doc/internals/static/discover-method.png0000644003225100322510000011314114046520517023216 0ustar00sbosesbose00000000000000‰PNG  IHDRYCÈÓÄçsBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î< IDATxœìÝy|TÕùÇñÏsg’vP@Ü÷¥¢!&3P©Ú*VëŠÖª]¬]¶ÕÖ­¶Z«µµv±­ZµÖ.j­K]ªb[«T!“BŠuAÜQQö-ËÜç÷Ç`6 À@@¾ï׋WÈ]Ͻ3¹ç>÷žóswDDDDDD¤0‚î.€ˆˆˆˆˆÈG‰‚,‘R%"""""R@ ²DDDDDD HA–ˆˆˆˆˆH)È) Y""""""¤ KDDDDD¤€d‰ˆˆˆˆˆ‚,‘R%"""""R@ ²DDDDDD HA–ˆˆˆˆˆH)È) Y""""""¤ KDDDDD¤€d‰ˆˆˆˆˆ‚,‘R%"""""R@ ²DDDDDD HA–ˆˆˆˆˆH)È) Y""""""¤ KDDDDD¤€d‰ˆˆˆˆˆ‚,‘R%"""""R@ ²DDDDDD HA–ˆˆˆˆˆH)È) Y""""""¤ KDDDDD¤€d‰ˆˆˆˆˆ‚,‘ŠwwDDº“™ÓÝåõö¼»ßÑÝ…錂,ÙÖ¥J{õúÎAe‡„Ý]éš7^[ðþü ²DDd‹¤ KD¶y»î±Wó-÷=Ö£»Ë!]sÝåqÿŸo³î.‡ˆˆÈš¨O–ˆˆˆˆˆH)È) Y""""""¤ KDDDDD¤€d‰ˆˆˆˆˆ‚,‘R%"""""R@ ²DDDDDD HA–ˆˆˆˆˆHÅ»»""²arÍÍÌ›;‡¥‹1dÇ8h0/̨gåª 1’â’›d¿ÍÍM¼óÖ–.^Ìwfàvƒx~ú4VqpââEĄ̊L.×LYE3Û$eÙ)ÈÙ -Y¸€Ÿ]~!oÏy€Ã>޳¿ú-î¸õ7¼3w?»õN¶¼CÁ÷»pÁûüüßeÞÜ·8âØùì¹ßà/7_ÏüwæñËÛï¡ÿÀí¸õW³råJ~ÿ?‰ÅU݈ˆÈ¶CµžˆÈVh¿åí9o°ç>ûsܸ3ÙnðªÆ|‚%‹Ò£g¯M²ß§Æ?̼¹o±÷þrì)g°Ý h¿£Ž8šeKS²‰Þž‰ˆˆlMd‰ˆl…æ½5€Ožp*ÃI®ž~ì)ŸÙ,û=úÄq /¯\=ý¸S?»I÷+""²5Qâ ‘õ´jå –-]Òåå—-]B˜Ë­×>š›Y¾–}455Pºžo¬š››q÷õZ§}¹JK ó¦lù²¥ë}nDDD¶tz“%"ÒEÕOý›Ç¼gu?¨Þ}ú’<ì>}úÙôêݧͲóÞšÃ=¼™×f½ÈÒ%‹‰1t§]8ìÇòñ±Ÿn³ì#÷ÞÉSãæ‹ß¼Òž½øÛoæµ—_ÄÝéÙ«G~ê$Žw&A,Æ”I¸û¶›X±l·üüjâEE¤?þ N=û\~réù¼7ï-~ðó¸ýàÕû˜V3‘ñÜÜ×^¡¤G)û4‚ãO;‹…ïÏçö~Îè#æä3ÏYã±×<ý$÷þñf–ç÷{Óµ?$^TÄè#ÇrÒ™_àê‹Îãƒ÷ÞáÊ_ÝBß×z—,ZÈ}¹çꦰdÑBŠŠ‹Ùe÷½HvG{B×?‘-”‚,‘.xð¯ä‘{ïb»Aƒ9òØb1¦ÕLâ?>È+/<Ï¥?¹ž¢â(«ÞsuS¹ñ§?¤9×̘£c—Ý÷dÙ’%TOø7wÞú[^œ9ƒ¯_tùêm755²xÑBþ7£Žÿþë1É*IÆÂÞçé?Æ?¾ýðñcŽgÈШúø'˜–­æÝ·ßâc#Ê4d{î÷1–.YÄâE Ãpõö'=ùOþxÃ/ˆÅbzÔX†ì¸3/ΜÎ/¯¼„CË’E injZëñÙ1ÚïÔÌ3ÌgÃFV°ÝöƒØs¿ýÛîwoÉÞ{çm~ô¯³rÅrR‡ɾIJ¥KÈ>ý$ýý Ì}ãU>÷õ 6è3ÙR(ÈY‡¹o¾Î£÷ý•íïÀ÷¯»¾ýúpÚ¾ÊÏÿ*¯Ï~™gžÏÇž@†Üý‡›hllà›—]ňCR«·sı'påw¾Fmæ^œ9ƒý‡  b<ñÈœwéÚô±Úcï}¹å—×0ñßãùø1dzÛ^û²Û^û2oîÞ}û-Fy4ÃÊÊ×Xvwçá¿Ý»óÕï~ŸDrGwãÿþ7þ~ç°`í­Ç÷ÜgöÜgÞzã5æ¿3CËXïsù×ßßÈŠåËøÜ×Ïç°O»zú'Ž?…Ÿ\úmžþ÷xÒc>É>¸ÞÛÙR¨O–ˆÈ:dŸywgÔŸ\`˜gœû Æžt:¶Û€çê¦ðÎÜ9ìºçÞm,€’=V7‡›ðø?:ìg¿j`0<ÀóßÝ ²¿òâó|0ÿ]Ýiu€Õâ“'œ²:ÝúæðÎÜ9<;m2ÛÙ¡M€ÇùÔ)gðäcn¶2‰ˆˆl z“%"²¯¿ò2»ï½o‡yûx0ûxðêßßɵÇÞûuº­]÷܈šÍµ·Û^·ß§O_–/_¶ž¥ŽÌg^¾<·‹Å9à 22ÿ}bƒ¶½¾Þy;:7;ï¶'+:9žvÚ€7^µYÊ#""²©(ÈY‡%‹гWïu.ûþ{ï¬ñ QÿÑôæ¿×a^Ÿ¾ý;Lì«ÅìÔ¢…tHÌÑbÐC7jûëãÝ·ç0}J†ÿûìš\,|ÿýÍU$‘MBA–ˆHy>á„mdpT(- 0‚5ô¹jé¶9íµßÇ(«H¯u™\®™XLU”ˆˆlTƒ‰ˆ¬CÿÛ1çõWY¾lé:—Ý~ð,^¸ Óù >˜Ÿ_nHá ¸ýúGéÔ×4®×üwçm–rÀ‡çf»Aƒ{òé›m¿"""››_ˆˆ¬Ã£¾B³^˜ÙaÞ¬frÛõ×òÔø‡›ß½õÆ«nkÎk³£mÝiSµƒÛG 9ZÆöj-ÌåxqæôÍRø°ÏÕk³^êt@dwo“z^DDdk¥ KDd>~Ìñ˜5ÿýO‡7T÷ÿå62ÿ}‚¥K0¼<Éöƒw`Ö Ïóòó϶Y¶¹©‰'{€1Ç¿Yʾ߰ôîÛ7_›Í¬žo3ïŸß·Yû?í´ëîìÐæ¿;Ì„ŽÉ6¹÷N¾uöÉ<ýïñ›­L"""›‚š Šˆ¬Ã;푟:‰'ù;?¾ä›¤;’ž½zQ—­fÖ 34d(Ÿ8þâEEœ~Î׸éÚ+ùÕUßãØSÎ`×=öbéâÅüç±yçí·8¤ê0öýØA›¥ìñxœO ¿ó\Õ¥Œ9æxúÜž—fNç…g§óñ±ÇóÄ#l–²œzö—øÙ¾Ëí¿½Ž×g¿Ì~Ì’Å‹xáÙz겓èݧ/æÓÖ‹ˆˆl­d‰ˆtÁgÎùƒvÊ¿¾ŸGî½€ cdjg|é”öì¹zÙDeßûé¯ùËï®çÁ»þ¸ºi\ß~ý9ý‹_ã¨ãNÚ¬e?ö”Ï/*bÂ?áñî!bpð.»ö7ë¶²Ãf)‹ˆˆÈ¦bµ‹ÙV˜Ù%û ;øŠ¿=QÓ£«ë,[º„%‹2xèNÄãkVÕØØÀüwæÑoÀ@zçǼêN «VQT\¼:Ûàý¹ñü3¿|ûéÍZ–0 yoÞ\‚XŒÛ^ç¹lqÝåqÿŸoßаêØu/-""²ùéM–ˆÈzêݧo—¦ââvÚu÷M[ u˜V3‰·ç¼Á¡GC¿ÛÌ{ùÏ&÷Øœ‚ `‡vÙìûÙÔd‰ˆ|ÄM|òqž­Ì+/Îäì¯Ïvƒ†!Ý7¯¼ø<;íº;4¢»‹)""ò‘¡ KDä#îó_¿€ë.¿çê¦rá¹gÐoÀ@–/[JsSƒ† å‹ç]HÛüƒ‹ˆˆ|T)Èùˆë?p;®úõï©­™È«/¿Àâ… °ý vÚew*FNQqqwQDDä#EA–ˆÈ6 ˆÅ¨u8£ïˆˆ|äi0b‘R%"""""R@ ²DDDDDD HA–ˆˆˆˆˆH)È) e‘mÞâ… bÿ¸çÎî.†tÑ«/¿ÐÝEY+s÷î.ƒˆH·1³¯—”\nfÖÝeÙî˜YØÝåØÜšÍår_êîrˆˆˆtFA–ˆÈVÌÌvw÷×»»"""ò!õÉ) Y""""""¤ KDDDDD¤€d‰ˆˆˆˆˆ‚,‘R%"""""R@ ²DDDDDD HA–ˆˆˆˆˆH)È) Y""""""¤ KDDDDD¤€d‰ˆˆˆˆˆ‚,‘2wïî2ˆˆH˜Yðãv“K€†N?ÇÝgoúR‰ˆˆH{ ²DD¶fÖ˜ôXÇ¢s€Ý\x‘n¡æ‚""[ w_Œï¢÷)Àé> ²DD¶.÷hÙDÔ\PDd+bf=‰š ö\Ã"¯»û›±H"""ÒŽÞd‰ˆlEÜ}ðèZ¹ws•EDDD:§ KDdë³¶@JA–ˆˆH7SsA‘­Œ™•ï½ÛÍšíî{wC‘DDD¤½ÉÙʸûJà‘Nfé-–ˆˆÈ@A–ˆÈÖ©³ ‚Ê*(""²PsA‘­™•5웟ô²»ï×E‘<½ÉÙ ¹{ðp«Iz‹%""²…P%"²õºw ÿ‘n¤æ‚""[)3+ÞÞv÷»»<"""‰wwDDdø{£™=¼ÞÝe‘éM–ˆl“̬p^w—£öó»» ›Ñ¯ò}ÒDDD¶H ²Dd›df;óöØg¿†â’]· +WÙë³_.¸û¢î.ˆˆÈš(È‘mRKõàÄzvß{ßî.ŽtÁKÏ?ËéG¦@A–ˆˆlá¶ù>YeU‡`¾S‘7g§L™òNw—gK–H¦+€IuÙÌûk[vDeå¾Fìca¼0cꤗ6O +‘Jé¡õ.ñ¯L&³²»Ë³9”¥Óir .&7qòäÉtwyÚK$ÓG½ñuÙLSw—G>zF¦R„¡íĘ9-“yesí·<•JäBÛÕcLžÉÌÝ\ûÝH§Ë,ÇnÝu®Ét_àãÀûuṲ̀u-?2•:. -V?9óЦ/]á•—:4k® ,œ3-›¶¾ë'’éþÀáÀ;uÙL¶àÙD¶ú +‘Jc•­§94ã¼aج¸7ÍZÛÍbó Ý95ÄŽÙäÞJ%’éC€‰À$ºpžÌb'\‹…W?ÚÔåÛ$Ün2cŸæææ]9Ý]œÍ!¹ÂO4…ñÀgº»< ü¸ø¿n.‹|…aðY3¿ÌCû.ð‹Í¶_·o™qvà~JÇ¿IÅBû¦›ÞBû ð·n(ÂíÀ‰ÀÑ]YØÝî5£`›´T›ˆ5¥ÌíïnÁ_ÏnÀ&çG%’é1uÙLuaK(²ilõAapŒ›wÚyÝqš,FY*ý ç‚LŸ2éù«‡þX`öv.{uÓvë”H¦÷gÔe3¹n.Òfáî Ì75õZÚÝe)´Ä¡‡²ÆæËBóëëkj^o™îîšÙ VÄù$½.›¹;‘L|#‘L×Ôe3wuw™Ddëâîÿ6cq.ðÍÞÊ"‘L8øa]6óÄæÞ·pŰ_ãV»!«×e3žH¦Ï¦÷&’éD]6óna Ù–™Wңlj`[e`»Mr÷††U÷¸û-Ý]”[ÕÂøƒçì3‹[Û•½Ý‚qæ~¢á§Éôë²™Ë[¯V?¹æÏÀŸ»¥Ì[Ÿ»X›ô¶%©Ÿ\sMw—aS±¦¦ÑŽ} ³{i•þ»nrÍÍÝWª.»€è)ðM‰dúŸuÙÌ׬QD¶\u“3wwoîý&’éÝ€k—€«6÷þ»Ë´löYàÛ³ºlæƒD2ý-àïÀõÀg Q¶µ8pÇw=üð£?¥ k+ñŸG ç¼þê³Ý]ŽÖ>2A–aïÖM©žÞjR-€™]—H&Ou·??(«¬š\?¹ú±®nwܸq±Y³æ÷©¯ŸÐ¥NÖÃÒéÍAÐôâ¤Ië|ûaf6räÈí¦M›öo‚ $cÆŒ‰ÐÜÜçÙ‰vu²²1ýû÷gÕ„ V$’é½€//÷¬i½d2Ùw×]w]~ï½÷vù-×>cÇ–ôž·²´«ç¢cZ´ˆÞ­³Ïر%%‹õš™É,X×v† Vëׯÿ³™Ìü=÷•••ÛõìÙsyË9+´ƒG.\¸|æÌ™]]'‘L÷¨ËfVtº€[jCË“N§KA¼+ßñãÆ‹½4wîv]9ßcÆŒ‰/]º´WmmíâÎæ×e3ËÉôuÀÏ€‹€‹×ëD6RyyyQciiïõ¹¶–——o?mÚ´înʲuU"™Ž}ê²™M’@dŸ±cKbK–wõ:Q^^Þ³©©Éf̘±¼+Ë›™œN*Ä5¼³m9r;`Emmmç×ж˺Ðõr ¸¦.›éô{`fÁˆ‡÷]Ÿz6¬žØÔ¨>¹¾}gßa8„ƒG°²OŸÍkoX:=0¶|yCW?»5éB=ñ ð,pZ"™þI]6³Io¨÷>`˜ó²«dm%^yé…ܜ׷¬Fi[}vÁDeÕo0?ÏÌ®™VS}Ùš–™LÃáœùEäh¹ŽL¦nuìø;{z¶úßU}?Xø-7;؈á4¸ÙÔÀý—Ó&gl½íòòò¢°¨äbÜ¿F”°9æá Ë—^ßþ¢—¨Hñ#3rè,Ÿ‰ñ£ºššÇ! Z‰ÍÍÃkkk;$š™Jän7ÔLËfN\½ýdÕéà—EozH6´ð;3²Ù·Ú”%Yõ&ð^càŸ( íaÃG©Ëf>ÍOÿø"pn]6s[ÇóZõð‹=«g0Õ. Ç\\Q—ͬî“5f̘øâ• ßNö! ôß6£:gœßºryyùöa¼x¦ScMg†ñâß§ä×™iÎÓ&gnQY¹oÄnÂÀ<° ê²ÕmÚÚ———÷ ãÅßÎv%jß¾ÈzÀê3™L›sS™®ÆØ‹x¨›4éíüùxh¬Ÿ\sP"™üž» B3þç9ûFÝ”êîËTQQ±KsûX 4/›ù_÷Úe—Ÿ¶fÉôwï—¯õWä€ÿ·Õe3¿HŒµ#ÍaNŒ`Ðäæ—Ô×Ôü)‘¬úøáFp´ì¤ÕŒÓétéªÐ¯û4°gþܽéøSM}·u`[VYu¬™ÿ³⹦?7ñßc"`¥¹=Ðóo¶^§¼¼¼gXTrî_Ì61`¥áY7®kù»hu̽€·ˆnXv®Ëfº|³ÛBÙ·>›#»`YeÕÕf~Øwë²Õ«ûd™™•%“çöwö#ú>¿ 69ˆqAmuõìöÛJTŽ*ÇÂk2`°xÁÍY_SÓ¦©k"™þ3p¶™Ÿ6­¦fuŸ¬èo™sÅ´É™[ÊRUçšûUîþ›ÎÞ¸'’U/÷+&Ü7›Í.I$Ó}€YÀkÀÀ Doz¯6øF]6³QÉŸJ&‡Ä .±èú>„¨­ÕRàI¯nŸô`Ÿ±cKú,Xt1ðy`w ^tx¢iÉ¥­\•U¦O0ãfw~Ïþgðíñà³Xø `iÐÜx`mmm‡„8#+ÓÿçÆ÷ ÿû´lÍ7F&Ó×;œîÎW['“(//ï™+*¹Âœ/‚oOÔëàUðŸ×OÉÞÚ>@NT¤ ð«Á†¥À»µpim&ó\›e£·X³·=ë²™æ6ó£&Ü·z”£/Îl7Ùg׿ûÊ›o-zÔe3mnø×§žY™þŠWºûÅ1óÙ!ÁoÀJ°I¹̘Z=3‘¬: üG-Ÿ‡c™XŒÏ·ÿ~H§+‚Я;”(ѱùí+ⱟµ®Ë’£Æáí-ç?š–<Êîn!ÜBsø[àSD×ôUàÍM絿÷I$Ó§½…¼¯.›×þ³.3»ù¨ãN:÷g·Þlª}Ha}óìSš&>ñøMî¾QoM i›ùòLËfnŸ1¨‰Ø «g˜õ†Ä,,i™ÔgÁ¢[ÝìZ Ñáfƒó ø½áºñ÷²Êô®næñâq¿ |>î×·ƒ÷r³k‹{÷m˜$R© xãc¡Ûoˆnø ÁÞ¸/«L} ›Í.1|°£ÇKNêô ÜΆ€­¾M$Ó7ƒß ôtç27û²¹ÿËŒ“cSÊÓéƒÚmd °[qÈ5†ÀxÒáÅü¶Œè¢ðhûÝ'R©ó¿Ýa(øÝì|Ü^p‡ ?¸ýòcÆŒ‰/^Ñð4p%°ìþbØ¿Ý9%ynD:]Ö²|ciibήa¼ø`¹ü·À~nÜH¥Ž ,6÷E;þG`ð;+*FïÙæHãÅw%áX‚Ù¥ù ø`´…L™L¶-³1olŒµš8ØcD2õ w;÷?9\üËaþȰtz`§ŸWH§+šƒøs`'ö‡Kîvõ+o¾õ”™µþÛÝÐT½uü>QçêÝ€_'’é«V-ÇýOï8>÷?{1:d ñЋ[6žL&û® ™öàM‡ 0ÿ0Õ°/‡fß•ÿZ~£Áù¸ýɱ‘¸=šH¥Žo½|]6³x è ¹1ç[d]ÌÌÊ*Sáö wÜÜ¿ïæçb<~l˜óé‰tú°Ö딥RŸÅ eðœ/™ù1¶7·;Ë’éÖµßqãÆÅVå¸8üÎi“3·î½€!fÖ§ó5}0¤¹¹¹å¦¼‘è±'ðàPà7ÀÕÀÀI@M"™Þ~ýÏN$N—aÿ²¨YØ,Üfî„øÃŸr‚ÿ¶®† VÜgÁ¢,Q}ð†cÿ‡ùùÀ›ß^¼rÕ„òòò~-Ë›Y˜ïn„w‚/7k~ l.°OXTÔéµÀÍ> qk©Ç¬ÑùëѲLyyyQ.^ü”¹_á+îöcŒ»ÍŒÙï•©Ÿ¶ÞæÈÊÔEül¢&õç¸ñW‡{Hu¢"}D»bCôðèñöÖ°1czÓØ<Ùá°ÉŽ}ƒÀ~opø+o¾u+Þ1áÅÔEÀÌÒ!ÁøÕ8\h0ü¨XÌÿ˜°~Ûæ~1Æ4ÃGårü©õ¾ËS©D2ì¸ý ó¯»sø|°ï÷lïh½|`¹Ñù·þ«§yCÀ÷¥)|è \afW=¼8=Œ—tö72ž(˜<:‘LdZcÉGÓ¶õ5«ÅŽq(QEÓÁ°1czÙÀ² ¹ñ°ÖOQÊ’ÉßÁL3Î$Êpƈdò wŽžZ:pÀØ–WëÃÒé ‹C^Î*K¥n©¯©©®¨¨Ø ~Ð`‡ÔeªW§./ý‡0ž{Ñ̾_QQqû”)SÞÁüÜNpü4àÖÖå,//ïç±âc0VYsÃ=#+GÆø ðB€‘­ÒŽÿ~d*õw»' ý§À±­6Õˆ{ŒTF0˜·÷.»ü{MåÏÅ‹¿ePéνӧd?ÓòÖjxeå1‹½äpayUÕ-µÕÕ³+*Fïé] ö~XûOýäÌÑ-ûÞgìØëû|°è©|«ƒ6‚Ÿ×ñâ 1z¬ IDATжžp¼ ƒ/…Ø1Ó'W·œ‹ŸL¥Ÿs§ü–\.(kveøðá7ÆJ{½mø¨ŠŠŠ]¦L™2'Ú–]ôt÷Ëê'g®iµïÃxñ+À§G&“çûbuÊæ(t´qØÏëkªW7ûNTUý‘œÏ·ÿ¨Q綮겙%‰dz*ÑßZ’(ã±Èi›y“€Û ùÿ YÓ"=—/@t^ÞŸ6mZ›¾=õÙì¬~¥%½ê²™±-Ó,z›„™_ߺíòÌLf›ÝÝ~la4ñsžwµ¥¶vâ›DÃÒæ þy€†¥K‡”L¶)s®¨èÄèÂëµô]q ó¯HíGíÇuÊ7?ùØ1åUU{µ9h£Ä±[:'ìüÏãRx¬øãDÍžm`å÷õùŠ´Í:u|µÐ®iߤ£iÉ-Ñ±ÚØòòÑ»¶[5Œ6O̓–®¹ÆÅmÞŠà«SïÔ2)ÞØøR.gá±£Û·±÷ÿÊoõÀöe^3¿º“6óO¸±{×·ÓÖÈdrdÔdÓæô--¾½õ¼ÚÚÚ&Ì~•¯µšÕR‰¿M»à.?ËT Q“½ ñ-€ àGíÛÉçâÁ/fÌ?W^^Þ³Ýz‹ú•öøq›cˆšœ¼‹V®Ü 9˜1ï¥êêemÊ?yâŒ~¥%=ê²Õ§wR®–×C:™'R@Qów¿¶ýµuz6{7Æ›`É–7ñ±½ZšËý³u€QÝþ{ÀðØW״Dzʪ«qÎqçÞú)™¯lLéë²™Ö·?k °òó‰šlpó«ß€€c‹ÕOÎܳ÷®;÷˜VSýÖiæœ@<¸¤ýòASã•€ãþfí²»ý|UÉ¥mö³»‰†n9aذaÅmN~rçÚú [`b×µn8còä×0ÿøÕ¸÷ȹ¯=ÌÂëÛ×›Ó3™)8”%“­ßfµ\§Ú|¢°3󥸹õ¾gß`ðóö‹L&G£×TO˜ygõDˑַtháN5€¶×2ßǪ6:æâÕõi,×üÀ<Ù³6‰’jkkW¸31ÚfÐÕútY¬©áÊÖꪫß0x°´¿€ïItí—-Ú6õ&ËðUýgÇ=eÊ”9‰dúà€²ÊÔ“eɪë›J‹Ÿœ9aÂ2€ &4·[¥ –ËMm¿­ömîÍm?7ÇB:,Í§Þ pÛ `æÌ™‰Túœ¯Æ‰ ÜÔj[QÅXë̈û¾\V6¦?íX‰? ö±0GQÛðÕ 'tR¤–¦#eÜ=ÿsFgÇâx­a«›†Œ7.ì °¼È:ÿ„ V%’éTsÜ÷Þl5»iZMÍËm·oKòÿ™ÓòÙ´š÷Eí+ú¶LËV3!ßî>ß) ¾]h¹f-ýè:œ³5 Ýë:s´_Œ.o§ãvƒýò·õ|׈‡A}sØ«ý< n ôN*`ýƒ¿üÛ×~À²ÚLæÅöógTW¿—H¦ç»5Y]ˆ²fàØÿ:Ob À÷ð P?yò e•é9î>¬¬"5¾¬²ê†X®aBK0ÜÙyÈkù^ZßãY?¶8ÞáÚåîaY*ý¬Á®Ah{õfì—j:¿Öõý32™þ†—Çrg8YFÇ›|˜’ÿ¹Û†n´È›'6[|¥;§&Ré?‘³Ûƒ°¡¦¶¶¶)ÿpfu€sðèÑâQsì÷|yÑŠŽõUŸf‹7¼ ìvp:=x¯ÕÌéípͨ®~od2ý/‡cKúôù$mÇr< kÌ"œo™q0ÖO©î0Xn]MÍïZÿîùïƒ{ðbçu-3ãˆÞ ý'?yÍõiþÁœÞ¡>m¶pj¬ÝóðuÕÍaX³äëܶ¼ÃP6Kpç…ŽË=löpuÓÍü­9ff%“Câal(qï䂘µ¼u ¼«õà‹%ñü~ãAó€NÖi9‡ܼUdsئÞd…Q“'ð6ìÜ|,Ñӛà ¨xeÂD2=)‘J]кø˜1câÀ@€^½z­³¶ã{xàó:߯Í0ó]?œÆ5¢²D—ßÞk矈Ö1#ãºM³’†…íÿA>0Ãwn¿ï¦x¼³ÏÛåv8_nQ‚k¹wX x»õ¯¯Ì»3QP¿|-Ù¦¢ã÷\Û'W΢ö7A,ýtÜ`a§7$‰ŠªCG&Óÿ ãÅKŒàe'¬1·If0ðgCéüûuÏåË»ÁÙˆ‚ úŽ@çß‘x<×2}‡òòò¢v³ßn¿|^KRˆÁë[žf+Ê—‡NˉÊÄšÛ~næÎQ~ù6O“ÝÝs9; xãh34Œ/L$ÓO'R©ó†Ó»óí0Ÿè-Þvk˜/²Ñ¢ïŸoпGNCžÿ{µpW&¯áZùk½uxJ†v²Gý¥ÀüæÎ9l¤ÎÆÀk¹F Ê÷Å]oS¦Ly'$8ãMœÏøÓa¼xA"™zld²êÌ|} @Ëí“ÿïàÎꪨ¾Š¾x.·KÛ=YçÉ9Ì£~@a°º®Ì÷³ýØ´ÎÆÉlÑ·´YÒµL…ž/¿ß¿†²çß´Eum"™.%JŒ±8ÿæpµüÈ! Ô§KKßáÃÖ -ûß=ÿ³ÓïW¯X¬å i_Ox'ûh©_;›Öáí_yyyQYeÕÕe•©7‹Þ±Àë-¤Ú-|øtgeZ‹®ãx'ûm¥åžD×~Ù¢mco²È¿¾¶OªZËÎzHY*uxàv¬Ã'€4nUa¼ø²DEÕ‰uSªŸYºt©Z&444¬»b2À°ÐÖúTÒ[ ~WŸÉd•éÙ££FíX7iÒÛ45w³55¸‚Ûàw²ƒ Ãñ÷Îå:K?ÞÒ좳®Ea‡‹Äã´Š5rÍÍAÌbX”=jí‚Âj_–JUY`ÿt(¿㟄±ùXóŠ† ½Ï ážï¨ìkÿެZµªýyZSªá N!êA˜[—>7'¶ÁŸÛŒ©“^2³eÉäîv¬EýÅíÐâ• —H§ŸžÉLi·Z3ÑÓñöÁ¦HÁô^¹2hÌ?œ?þÚÿ%}ú|ÊÃàÌëøØÅ+.-/}L¾i|‹y´”kÐìÞæÆßÝ;*£o/^Ù°óãÇŒÓc„ «¼¥© ûŸºxëy ó߀­íTK»5Ö¥ÿûßÿbŽûE+K:|o•–Æú¬l{a½¦ÂÖ}m爛Øh¹Xñf>x÷±ç±æÅ9÷U1â—»ùg ½ÏvZÎcñZ—éfÛL529* äœ\‡¤ ©¯©ù/ð_àÂDUÕnäürà‹Äü`·ÚÚÚ¦D2=¼*jú´rÍ[¢A_“aà;t6Óñ-úùZ»éwöCr~ ðÜ>`ž[ÝüÁÝ}d2ý†Ã~ñ0vç”) 1X@KåÖ¡9–Á\~vþ$Élhë_öì9gñʆœCŸòòòžk{dçhU{­“yÅܾ ”šûÅÓ&×ü¬õ¼²Šªl)CØëQ˜íC;›»2 w¶èþííNÆCÙq mi¶±Ö7¸q³×Í!Ê ¹&}nä6êsË?AþOþåUU{…9¿ øLr;QZúÖ]ÃÖû¸Dº*Ÿ}!0 gÏžC€9í—ñ–¿ £¿·×1ÇYǵÞèìoæþ¥ûŸÙgÁ¢—„ñ濎7îÈN¨¹w¸Î7}[ÓÛß|F·o½[®óÛõßZoùëÒù”§R‰Ðíz`t.–»8Í-ºÎ^—Íüt[&LX•H¥ïsçœ%+Ž!Sét 1Nn­,-}gñʆè;nܸغÇ{ô×ÀpüÑúlM‡DXBô@h»D2´#kæÌ™‰Êôûƒb=·Ú´Šé³xq'ß¡|=átúýjUOÌ[Ÿq³º¢¼üСg°ÀJFµoºYV™.Ú KµÜ“¬sLL‘î´M4,//ïé„¿#³ã—õÙ쬵-¿Ïر%­›6@Ô³.›9xg×ĨQ;8ö2€7…Uí·“HVU–LÝ>2•:À,xÀ CzóˆÜÛô—*òxÔ ÂùTEEÅ.À(Œ©í³R…Æ,€fËUv¶õöÇÔ-+vhfb-ãm°†u+Zÿ’o7e&Š÷è,½{¢±¶È…a‡ñf ê kþdûøÑ›`ăè³w8°C‡oÀˆ ¤³s´¦ŽÆÃó?ßXßǫ̀©™Gôð o' IZš®š— øfûù]5f̘íÒ S[]=»~rÍ™`ïî?jTûtÕ-ßËu *²±f4YQ‡kWô½µaÆgGÓ<ÿ«ãPùµò×úŽÇf~߬ñãú•–ü'C”ÆûòÖË„æË¢eé8\DqñþD©Âפýà ؈kD› Þ«ý´Úššº 9~€Y4úŒêê÷€ÅÀ]W`ƒê+È7¯wãS‰ÊªQ³ÍG×5Hð„ šq^löo§ÛÏO¤ª¾™H¥okIÓoجèxb]ªkóë¢Ï¥ãgfùº1 ?ÖaVvØGê‰è{ç“l¬°¨©%ÙD]û«¼¼¼§£ ½ÏNèÚ/[…|U–JÆŠŸF8¼ZpÅÚ–™L£Ï‚EK¯h¼¶ý¼|Ö¢Rœ†`Õªù…7˜ñ­| DÜaØZ¦yÀ­8 ˜¡¢¢¢Í¨éôN†}XÞhÞ¦ƒnþ­T5øa¹XìlÀÌ騉×Ã|;~¾Û¾²žLî¼xeÛ‰Êtuër®CK²‰TSiñ“DOçÊÛ/52•: Ø¿ÃÖÌ àÑ@Ém,^µê\ ?Ø?Ú˜\ ‹B³²ÖË*ªFçE¿ùöùöñ•H¦?“H¦¿šH¦wZײÓkjjòÍY÷I$“§¶ž7nܸîçx4àp{&’é·Û÷þÀh¢¦„ã[¦»å›æXk™Ü=´ü¾Âxî{hl>ˆaÜÖ:»æúH$Ó—,^Ù°tDEòíç¥R©ÃK€Eí3òá÷òeD6!wÏ_çýâöFT¤NßűIu“'ÎJî€02•jsýL&“} ÿ2³€6ÙÙZ›0aBsÜ›O¶Ã÷ÛŒ»”ïÓ娍Ö7ÙffaÈå6ÖÖy­û]åÿnþ×û×±î%Ré?ÅJ{--«LŸÚ~^s¬!z@âÞú-ào€ Œ…þîG$«>±xeâD*ý»öóÖ¦¾¦æ¢@ñX,<€võ隘EÝÂï´®J&‡àþSœsÈËrž» ÈáþµáUUmBî?jTŸÅ+¦'’é™#Òm®ùk¬O1{ lu¿ÑßÐí‚ö‹w¡ž¸ÖXOl³ÅùÿÜú<™Y‹ÿÊZ&vëô-[èÚ/[…LsAwNI$Ó>ÉwahX¿¨•µÿÝûVûô»íå B®ÆüüD2µ#ÆT÷`và¾CQï~g‚û]Kgä½vÙåþÙoÎ™àØ˜Å«žY™ºŸ èéñâqD¯´ÿU—Í> ÑÛ°D2} pesŸZ–¬úI¾yÉîÛeDƒ¶^ò\M¶Cö!sîp£ ·‹Æ†€Íê³Ù'ɪ€+í5ideúÀ\7¯Šœ µÀþØyÆ·NM$jû<*‘L÷¨ËfV¯7s„e#“é[¾ëO$’é_ÍuôÁýÚN:¤· <úD6¡éS²Q™þ’á£Ë*SOŽLVý »Û!f\ ¬4碖åëë',*KU]bî·¸ÛÄD*u{ìEóp(»óAà¿©ÍÔtÈØÙÚ”)Sæ$R©/àö0w”L.›}7\µì¿±Ò^ï$*S$’U`aïü¸HÁKžÏ6ÛÎR¢vzÿH$ÓQÚs88ލ á¬Ó%îá]Fp–·•%ÓGN]ïšÙ^­NU¿zˆ‰ ¹ña¼ø,Ì¿”HV v  Ù°1œ ôðÐ]¿2¸—UVÝiæ—öewæ÷+í1~ÝkBóÊå¿÷èu¶Ÿ~å·žY™zØaH‘㈒Vü¥nò¤Z€é“'¿\–JÿÆœóc9ŸœHVÝàðŠ–÷2;Áá@°{¦gª[_ïÿC4`ü‘Duëjñ\ÓmÍAüBsNL$S÷Ác!Þ·œ 6| Ÿ™înd=±QrË—×ÆJ{͆Î~ó­ûG¦RwÚà²ÊÔ©Àà»Ä¢åO™JÕ¹?MÇ—m,‘LÇ€1DýŸ*؆E6Л,ß—(«Í§O›qËÀíNpl]¶æ”é™ÌZop¦g2ss9 < v*n¿0ü!7n¶h—÷ëYüÍ–åï½÷Þœ57}Òà×8»¹Ùµî~°‡Ãõ+âÁ©­oë²™™ùi@ÎðqÛ8«Ü9±®¦ºÃ4€¦âؽ8 }À‰ÆZé¨~ræD‡ ÁnüÖÀ¾ƒ˜sÞ´šê˺zFë²™•Dýõ€ŽMê&×\D4Ò}/à'à68:ÄN'Ìå¾zÅ™3g6ÍI‡ ñWÃrç<à?³ƒ ܬ¶l`ÿ_z4 óŽ×€ßçØiîþõúÉ™¿b~%ÐìîWAîû›¢ t1Em6;) ƒrœZ3¿ØGÌíN¢Á¡¯ rG­!Öt¢´¿@”Âøz 'pu]6sQëcaóßÿºs Áuð©5•§¾~¢æxl„ãwŸ¿ÏÝþnp–÷åâ6lc:æOËd^Áƒ18“ ;ÃàzÃÂí&`gs¿¸~J¶Mðmf׆ax|þ×®ô‰Ù`îîMËAt½áÑÀºÿ.²A@¢nruMëuêkª4x·Ÿác·÷4ì‹uÙšoueßu55ÿ0ø5Ñ ÿ]f̘1cy@x*0Ëáð¿àv#°¤1à7–4•”tÄ–h,¬Fà÷À=Dzg€ªºlfƒû7Ög³O`~¢9³ ¾ìÆÍf<þs É°³ê&gþÒ²|mmíâbÂá¸Ý~¨™ýÉÜîÄ9ã%sŽ­Ÿ\ýØú–# -j2}ܸk-C@´1cÆŒå–keØŸ0r³_bv10ÈÌ®\:°ÿ—ÛoMæÃÎò(ÿÓu†?ö}w†šÙ•AsÃYívÑ26Õ'Úï;k+LÏìøí?Âx¹qÙâ³1Côf¿e¨'6Jþ»7ŽüwÏÝîqã×8‹ãaó˜•q»|†Ã~îöF_¡¶P!êCX[—Í,\Û‚fv­™¥:kR)²9Ø&øüÈØÔ¨>=šš†šÇ{ÑôÎÔ©Sß]×Ekx2¹s<zÔÕÔ¼º®±MÊËËûQ\¼ëª’’×ÚõTÃÒé%a¸sÜ}îºÚ¤¯I"™>xx¸.›9¡³eÌ,^Q±wX\<ÿÙ‰×zÑk­¼|ô®Í±Æûî¶Ûìuw4.Œt:]º¼Éö*±¦ÅS§NÛú33fL÷W®ì7sòä÷ Y9%’é"¢'ȇÖe;dÈ[«aÆ÷î½w|ð\¶ãÎüöÏ~ ü¤.›ù^~Ú@``]6SÐ6ùfrȨݦNôzÇï!™Lö]™‹ ÌKÃ"Þ~6“™ßÙgÑoÀ€Æ½ö; hÙ’Å«f½ð¿›€{ݽ³ñÖÈÌvæ=8±žÝ÷Þ·P‡ ›ÐKÏ?ËéG¦¸û:‡ÍØTF¤Ó;Å¡³»’b}ؘ1½{44ì‘[Y2§“AÌ7Jyù¡CØ.¢ñ­µ]çÉ´ uÙLüï1``NëÁ‰ ¡²²r»&³!AÄVÁÜ5=l­¢¢b—æ è“[¹òü ¸ÝjxeåAøôlöuÕûÕ§WsóðӉdz*ÑØš#ë²™c-”•é+mØaZMÍË]½¾v¥žØ£Fí„ávË‚àõöC³$=tPc,¶²Ð÷6‰dú.à à̺l段-kf«€¢þà÷±õ„™Ý|Ôq'û³[ïø½ŒøhûæÙ§4M|âñ›Ü£Áã· ²dÉô¢Šáàºlffw—gk“H¦G5Ù¾u“½n¿CõQ·ß°ƒs½z÷^šù+–¯>¥oðaEÚé °­)ÈÚúl)AÖÖ¨}%›_"™>†¨oìuÙÌÉÝ]ž­M"™Þx¨•ÒA­³4v¦UÕZ—ê Y[Ÿ-1ÈÒ—Gºâ|¢ô³×mè@•Û¸Ï7oŠk[”H¦OíÕ»w°àýù­,ˆ/ý.0ÅÌ^Ë7Ù=¥i«.›yœ(È:1ÿðMÖÏuùŸç¯+ÀZ Õ²Ù|d_ȦS—ÍT'’éï?#Éþšn.ÒV¥.›9wÝKIW$’齀߯\±Âç¼öêÚþÝ‹€‹ÌìUà^¢'—õ›¡˜"[­Deú3À×k%£º.›9bÝ pPÜ“H¦uÙÌfkÞ·5Ë·Ø8¸¢.›ù÷º–ï¢ÝQ=!›Ðd™Y1QV4Ùí¼û Š‹‹/..)ùbScc—:˦7`»ízo7hð²E |ÞÌNêîòlJCwÞe`iÏžÁÜ7ßð0 »úVuO¢—˜Ù+Àîþ×MWJÙ ¦˜YAû~ÔíµÿËÜÝÍl­ K{ö*é?pà’õÙvccÃëÚ®|¨WŸ> ºSŸeK—Ì035{]‡x<Ûe=775-˜óúkg˜Ù]\µh=vÓ¾žØ¨1ãD` ²€&¢Úe ôÖë¯uw¤ ?ø€…lc2Î{kõ0;“âõXuÑ@÷»»n·~ç%“‘.šýâ ]ZnåŠå¬\Ñíy'>Ò–/]Ê«Kuêªææf^›µACbmp=|›(U¼ÈÛ¢‚¬|ŸéÝ]Ù²™YW2öLãÃÀª Y¥Û=§Ä"²6SO(ë»Âd‰ˆl¦U˜ww½z‘ÖTOÈf£ KD¶fN4jK…9gË‹ˆÈ¶Eõ„t Y"²5zxxÀÝßîÈGõ„t+Y"²Õq÷OvwDDdË¥zBº›#) Y""""""¤ KDDDDD¤€d‰ˆˆˆˆˆ‚,‘R%"""""R@ ²DDDDDD HA–ˆˆˆˆˆH)È) Y""""""¤ KDDDDD¤€d‰ˆˆˆˆˆ‚,‘R%"""""R@ñî.€ˆÈ–äo·ßL.×ÜÝÅØ¦—pêçÎíîbˆˆˆl0Y""­üêÊï1xèŽôìÝ»»‹²MZ¶d K/T%"Û´™õµì²Ç>477ñîÛsÈ>ýÙ§ŸâèNeÜç¿RÈÃÿHP%""""²úØÁe\pÅOWÿ¾jÕJæÏ›Çó3¦ñØßïæ‘ûî¢ú¿Opåõ·Ò«WÇ¥¥¥,]²˜{þx _üæ…ëµï¿Üt=o¾6›ÊC?Îç¾úmzôìÙfþÌúZ~÷³+ùçC÷±ï3âÔ†äG”_Èÿ³wÞaRéÿÔl€%眣 ‚4½ * žÊI0€x& §˜³¢ç9*f†3ÈNÑS1 ©i  9%§MS¿?ª{wvvvYtay?ϳÏHWuUuÏØÕߪ7‚ ‚ Gå˧Ѹy Î8ˆ'^űÇwdë–ͼýâÈ„õ»öèEíz ˜:ák~œ?/aÂøqþ.ºúÆ  }§.ôr)Mš·dÓ†µ1pDd ‚ ‚ ÂFù ¸âæáT¨X‘YîdfOŸR Ž.vïüß3deg«í¬ì,öîÞ…RŠœìƒA>à<îúNï?è7]ÃY‚ ‚ ‚pR£fmNùÓŸ˜9õ»åYY™´;¡3é§œÊÆõkøüýQÅj7%9…M𡵿?¯¿DfÆþ’öQˆ,AAA8Biи«–/-X¨5C®¸–J•*3vÌû¬_³ªXíž?ôjR’S˜1y·^~>o¾ø3&O`ÛÖ_JjèhDd ‚ ‚ Â\(›ò IDATJýÆMصs{¡u*W©Ê ¡W““ÍÛ/>ÄWQ´;¡3w?þ,ÇvìÄÞ={˜2îK^ù(·]>„á×\Ê»¯½ÈŠŸ—ØuüÑè‚‚ G9Ë—üÈöm[iuL;ªT­VÚÃA‚Œ}Æ”/9©è×ú§žŽ;q‹ÎcÒ7_Ðóô³Øv³Vm¸ã'غe3óçÎbÉÂX²p>›7¬cücÿÅ:Û'qÅw$ Žq4#"Ká2sÊD6¬[“°,­BêÔk@‹¶Ç•ª¸yûÿžfÍŠå<òâ["²AŽ06¬5æUkÔ,²žRŠK®½…ûoú+þû5¬®Uª×(V5j×á”ÓúrÊi}ؼa3¦~ÇçŽf¶7…´Š¸ü†ƒ ÿGGD– Â!äÓ÷ßaÃÚÕEÖII-GŸ³rîEW‰^+î¬ì,Ö¯YMùòiÔ­ßà°ö-‚ ü~V.]@›cÛ°ný†è{Þ|úÞ¿y÷_/rÍÿMóNú é7èBš·jËȆ3}Òx†^{+‘¤¤ƒn늈,A„CDfÆ~6­7¹Cî~ìiÊ•ÏoJ±g×.–/ù‘¯Æ¼Ï—¿Z3èÒ«ëׯZANv6-ZsØž ‚ðûX»r9î¤o‰D"8½N+Ö9}Ï»€™S&ðý´I8½þDrrJ:™ûY½b5jסFÍÚ…¶Õ®£ERr29ÙÙìÞ¹£Ø;cG˜U)U[)uEiC!dÍŠåD£QjÔªCëc§Ió–ùþŽíp>﮹ó|ûÙ²‹Èa²ÿ>²23ŠÝ¿ŽFÙ±}:-´ÎÊ U“–­‹l+cÿ¾Âǵwo±ÇTZ(¥R”Rg*¥Ž)í±‚ ”;¶oãž$š“CÏ3úѢͱÅ:/%9…K®½€w^y–¨.8G¼÷ÆË<:ü&>õF‘mmÚ°Žœìl*V®"+Ž#z'K)U 8 ô²×KuP‚ «V¦E«"ëÛ¡å˧±ÿ>6®]C£f-rË23öóÉÞfá¼Ù¬[µ­5ÕkÕ¦×éý8cà ’’ó?Æu4Êø±Ÿ2é›ÏÙ°n-Ñœ’’“iÙö8λø ZÓ._ýÕË̛ƌqÔ+Ï1{ú®~?KÎçËO>`Ï®4mÑš“úœAï¾ÈÎÎâ£w^gÒ¸±ìß»—Š•«pî…—ÑóŒ~¿ëž•$J©$ 7p>f®¨|þTšãAø­DsrØ´qKÎã£ÿ‹Ý»wQ§~CνøÊƒj§m»ŽœÔç ¦|û“¾[ üÔ?ŸÍ”ñ_áNGZµ9}à`*V¬”¯ÎºÕ«x婇pzöùíõåˆYJ©p’Œ™}iѶxfŠGeV¬(¥ª0Âê4  Wž B%;;‹ukŒX©V£&;·mÍW¾oß^¶lÞÄôïÆáMž€ŠD¸èªs˧÷-kW­¤wßù˜ÕË®ÝOaÕ²%ü¼haîDܲíq<ùÚh²³³rVH‡ÎݘåNfÛÖ_r­_»†¬Ì š¶l“kv¸~í23ö“’œÂe×Ý–+°4jf®-'›¿üõ†\[–™‘ù[n×A+#¬Î–ŽAí;u¡}§.¿ùüFM›s×#O°^çdº8'Z^µZuÎ<{0gž=ø7åh¥Ì‰,¥ÔÙÀåÀŸ€Ôƒ<=Y)õIÉJ„?h­çêNÖ­Y•kÒñð×Y·QÓf\zÍ­´<æ¸Ücc? @úɧ²wÏžç” DÔöѤ”¢Fí:èh”ÍÖ±oï²³²É‰æðóó¨]7o“gõŠ‚þXá±vºP«Nþ ¡_6o [^DÜæ ë¨Ûà°h‡€þ@“ßpîÝJ©¡%;Aþ@L)í ʜȾ4°èT9ˆs£À{‡bP‚ üaØp8: JÔkИã;Ÿ˜kW³`Î,ZsÃnû5k×ÍWž•ɦ ëxdøE¥óŽŸÌã«1ï³è‡¹dg%ÞQjÜ,OP­Zøcµ,x¬Cç®Î]³r9Ç'([µ¢xþg%Ä;À`pàÄ0ù™Ì*ñ ‚ðGaPt¸UA(eNdi­÷ŸŸ(¥ÊaLÏØV;ÀéQ­µˆ,AJ0 Dçdιè²|e;wlçö+.`õòe”+W¾À¹ׯ'R¯aczô>½È~:té€7iÿzöq"‘$N9ý,:t>‘ê5ëššBrJ ÷ß|5»wï¢YL€‹\‘•èXË6…^S³8³0¡qZÅŠÔ®wX/ÑZÏTJµÅˆ­A@‡bœ;Uk-‚ ŠRêÒÒƒpäSæDV,Zë àsàs¥T p*Fp j–æØAŠbuªi«‚A/ªT­F—î'áMšÀį?§ß  ó•oýe3`fô=wÈûÒZ3úõ‰F£‚d€1åÛ½{Uª× j¹ç¬^¹‰Ð8T‹$%ѸYó|mìÛ³‡-×S£fí|»g—иé1í0®R‡­õbàaàa¥TÌ18á°DAb8b’k­³´Ö_i­¯ÄDŽ: xØ\º#AÈO4ˆÚФyâÈ‚½Ï4!yÇý´@âA÷[·8LbàØs~Ù¼‘Ý;wP¾|OL/Pÿ»¯?òï@ý²iûöì¡A£Æ¤¤–+p,9%¿KìªKÑZ'Œ”¸*”- î~N´ÖK´Öj­;aÌ}îüR” ‚pTrĈ¬X´ÖÙZëoµÖÀ˜DÄ/ëKwd‚ fç(cÿ>*V¬DíºõÖiuL;š4oÉÎm[™1yb¾²z ‘V±"Ë/Ê 6’“ÍkÏü“;¯ºˆ_·l %D™Y™ìÛ»7_ýYîd¾ûæ €|¡ÕCa+W. CÎtGXµ¬ðpôá®]“»v¥…Öz©Öúq­ug %pÆK—îÈA„£#RdÅ¢µÎÑZ§µ¾3‘ ‚ ”*+ÃüX-‹½úšÝ¬o>ûo¾ãÉ)©œ{áådegñèð›øúÓÿòÃì™L7–‡ï¼ß›Ê ]Ü€ÕjÔ¤õ1í‰æäðü£ÿ`攉Lû)Ï?ö>õ&>ç–ýô#?ΛC4ÍKBÜ2OP%Š6²jùsM ÊVæúj•M_q­õr­õ­õ‰ÀÿJ{<‚ Ÿ2í“u°h­e…R„R'Wb*’~ro>|ëÖ¬XÎ?ÌåØynD½ÎìOjùò|4êuÞóåÜãµë5àâa7ÒëŒþùں궻yýÙü´`‹Î#‰pBW‡á=Ήâ~7ŽÅ çñ∥¼ð ¢6Iô"¡IàRsMñLG£¬]¹‚råÓ¨Û ÑïMi#ó„ ‚p8øC‰,A„²Àù— ãüˆ°^j¹ò¼ðî§ Ë”Rôè}:=zŸÎÎÛÙ¹m+ÕkסbÅJ ë׬]—;~Š=»v²më¯Ôª]—ò*ä–?òÂÆo+8vë}hãÖû/t¬¼øVâqF"¼üþç…ž'‚ G#"²„ße;­ë€E¾ç¾ZÚã9”X¶spð¢ï¹?—öx„£ƒ*U«Q¥ê2X*V®BÅÊ‰Ó ÆGAáÐ "«ŒcÙNW`D!ÅYÀj`ð¦ï¹‰C‘zú7OŠÆ-Û¹ “˜ú ßsÿ]H¡ÀP`?p«ï¹‹ÅX0Îó-(ü;AAŽrDd•}NN20"–r@˜Éô>Ëv®ô=÷ƒÃ9¸€NÁçœCÔþ9€<_`ÙŽÈŸÍÀÙ‡J`Y¶S #°6ûž+‘,AA„„ˆÈ*û„æï¾ç>_hÙN]àŒÈxÛ²E¾ç.8œ¬à³ÄóÑX¶:ÿœWVx#Âý|Ï]YÒcˆ!ü.$ïŽ ‚ ‚P("²Ê>¡€™›¨Ð÷ÜMÀpËvŽú0‚##¶“´ÕøXì{nf¡ÚN ÐhŠÉ+ó“ï¹K ©×ØüK ÎÛá{î†@ZÀ ßsŠ;¿1ÐØ |ï{nün] "°Í÷Ü1ç5À„bî Œ†øž»«ˆë©t úYœh'ʲd °×÷ÜÕ–í4 Ιí{îrâĤe;m€ãÝA_Šè¿¹9¾çF ¯ ‚ ‚ðÛ‘U†±l§"FdÀMñfcDVó¸6*/ç“gZ°Ê²k}Ï› ß«û€úqÇ'ùž»!æðq³Å¾çæÇÎ>ž±lgð´±8X <\ $ç-·lçԸݨ"Ó²NÀgÑð p{Lßñ×r2ð/ uÜñw€›ãüØ:`îã'–íŒ^ Æ=#d:õ~¶lç?±}–í\ï{îqýT úï8!‹-Û¹Ê÷ÜÉqCþ 8!ËGÁ¸§ßí<œwÞ*Ëvnð=÷³¸þ/ÂÜÿfqõ×Z¶su¢ï_Žf?ØÛ1‹Ë}ÏTŒsÞÆì¸‰_H:°l§;ð"0Þ÷ÜÛc¿éÀÿ}Ͻåpõô„yÞïõ=×9œ}—,Û9 xøÈ÷܇~g[÷gwûžûeIŒ¯~÷¿_Ï6÷ BYàˆOFü§#æ;Z[Ô.I@("rw›,ÛiL.ÄL f§æ2ÌÈ'–í´mIJK€0)ÏPÌnÖ`fWåõ¸~ùc|v.®Ä«O0¢ñoÀãÁõ Â<œ'cüþ^HûáîÑŒè¨ ó=÷–"Ö0`<™-1»IïoÄÒ!øÌþ‰ñõ„y˜Cžà»ó½ôzoa„æË–í´é¿5ð=ðç˜ëmƒ‰ÄØì–…õ“0¢u3&ˆˆ\ ÊÛ.Ð3Ñœ´®Çì}lÙN‡˜öúÿö`¾Ã–@· ½ú˜ï¿q¢{'G#–í4Ã<‹až‘ó‹yjkÌÿßi‡fd‡œ*˜ñ7?PŦrÐo‹ÃÜoHGòžûG50×_ÉíšmU/¶Šb3°3ï> Üsˆû„ß…ìd•m—ú"w±,Ûé œ‡‰6›°æIÌr•﹯Å_fÙN6ÆŸéà/1eý1æoçøžëÇY¶3³›ÓDzò1f}‰ü±BaÔ°|ÏÝŒó` p)æEæÔÐdβÍÀ4òv‹ ÜËvnÆìâìøž;¾ˆ{Ò(c%p’ﹿEË-Û¹8`ÙNGßsçeÇŸ}€>¾çÎŽi¯yBv¼ï¹WÇt7ɲŽÁu÷Ç_Ä›A¾ç~SÿçÀ|óià6àÆàx+ÌÎY5`^슲e;å€O1¦„ƒ}Ïý0¦½%AùSÀ?0¿‚O\ã{î”ðú™–íìÇLе€5‰î¡Pv‰æä0w–GJJ Ç[]K{8$ÎÁ,˜|€Ù•:Zü jB.¥ï¹.p–e;=‰ÀŒ¥† ”IDd•mB±‚e;CâÊ’0+Péaf«~QPßÂìÞÌŒX!ãûð=÷¼uñ=w•e;;1 v4ÑNV(Œn VÀ¶˜±ßç“´=øÌˆë:lÿ\ÌŽÀçE ¬€‡1æywŬðZ¢–íLˆŒN@(²N>ߊX1eŒ™B"sšÉA[M,Ûéƒ1é'°B&Ä]_lÿÛ0»e±ôǬöNŽX!¡ÏVǘc‘˜cSb+ûžûl‚6„ðÅÿCvv}Î:›Š•*'¬3}Ò·lÞ°žòiiœÚw É)) ëýÖ­YÉ ÝGóÖLjÈ*YêŸã"Eð,Þ~ÀŠ‚P6˜ŠY K ¡L#"«lŠ•~ä÷ÿ‰e/frDœðø+fcA`ÇOÅà³À›b`2Ó³•†ùTÀ¬µ¾çî êE0 ›À¬Æ²A/0)bi|.H1ÜEú1n¡ùÁ@àÌ®ÛÅ–íŒñ=wL‚벪¹ˆrý \x¿ÿ/Q³Áç§¾çîNPŠÃ0˜D¸Óµ¤þ×¹Dý¿í{ú—Ÿï$h ô-ksì`0ðœe;§£€/ÃïO88vn߯G£^'))™?Ÿ÷—åÑœF½öß}õ5jÕæ¦{>$ `Õ2“»iËÖ¨)$áÂĺD…–í4ÎÀì„/¦(e„e;ÇbRP´Ç¼.Àø mNPïÀÃ,üœô¸¾çfÁ†a‚òì ÆÐ·Ò²V_ݦ˜Å­¥À±A„‚z1fÍË}Ïý&8Öã_»À÷Ü©–í‡Yèjˆ1Ùë{n€L%ALÿÙÀ¿cûX¶Óc2ÖÈg60-þÙfÙN7ÌBÖ7˜9éjÌ3òNòžÙ:¨Û4hÓÂ|ÿS|Ï^ÈØR0 _ÇcæÅ9¿äøÀNU0sÖjßsÇZ¶s>pÆjbL½:süö˜¹v!æûþ‘–}1"Cc¾/‚M¿›ÀÔýTÌïë0HR0ξ˜ye0Æ™h«fjŽY¤ô1óh4®žÂ,Lv˜³oÇÓúÌ÷Ü=±uƒÿ67 B™DDV%0'küó"Œ_M,¯aL½º²=ô º<ø+ŒÜ—‰`÷ëeŒßAŸ»0“Qèk»cÕ c¾öƒï¹á„îÌLò=7+®¯°,Ñ.T¢ðèá±Í¹I–íxÀ›Àk–íÌô=7ÑËPŒÀ,$Úõ‰e€e;M0~M+EQ$O}–  òìÚןáý¿9ø+²ÿ¸>¾Î×±™|zÿüªvBÑ–ÈÃ÷Ü)–íôFbDê@`—e;oÆïð E³jùR6iJrrþGç¾½{xiă,œ;›æ­áÆ{¤jõ‡|,M[ˆÈ:\X¶ÓyæíļüW³lçâBê'cÝ8›0ÏÑ*ÀÖ ðÌcNé†Y๸ã7º;èïÀ“–í<Š 1 l1Ñeñ=7ßî·e;aÄDø5C5à)Ëvîö=wdLõöAßc‚öÁ˜Gÿð†e;1æÍû1ÉÀƒ–í\á{îÛÅ»ƒÅ'X¬ûãß{y(°‚yñ Œ_«Â¬Z˜gý"ËvΊÆøù^ÜAÞbÞ䉬Ì`î›´“|jËvþî{î#qc³1þ¼ÇbæÇ]ÀMAýûâ‚HTÇÜÃñIù£ÁñµÖ$–휋Y«‰ù]íÅ<Ïs,Ûy¸?ÖêòkŠH0ÖLÌïàYËvFøž;üÀw¸pq;#tÎŽX&¢oCÌï`Pײ‹hëàÌo&‡¼ Wó,Û93 ¢eÙNmÌbqh‰±ó$Û,Ûéç{î´ßs]‚PHà‹²K{̃iƒï¹ïúžûIì&bÀ5…œF%ì1),ìï"ÈçðÝãÛÓÊ÷ÜJ¾çÖ÷=·f€ü"(‘?VQ~dE•%Y±»G“|Ï} u¯&ðï@€Ä^ûhоötòMØWa«r¹‘ )ñ÷Á˜Za&ßõ}L0«’³âÚ®ŠyÑÊð=w-‰ ûÿ!ö ï¹Ó|Ïí†ù=ÀLŽ7nð"#“UËïmÙ´‡ï¼…sgÓµGO†?2²H¥µf÷ÎÕwNN6{vçe(ÈÛÉj•[¾sû6´.ž…[Æþ}dfÆ[æÍ®;ˆFGýÏØ¿Ÿœœ eïžÝdg¿~iìHŒÆˆ¤Ë€j¾çÖÄ<_$oQ%–ë1f¿óÖ¾çÖó=·*f‡ àƒ`G&$Ü©¹ó‚ÛÈ÷ÜʘgÏvL>Ä0»µ|Ï­„ÙUÐÀm–íÔŒïY˜7k|Ï­å{nõ`¼™ÀˆØ 9…Žç$ŒˆèÙy/‰¾˜ü3>%†eR€|†1·ÏüÛ1ϯ¾ç6ÆŒ«0Ïý©jü5\„Ń0»Š±ÿ¦bîëM˜ë«‚1O߯ÐË€ª¾ç6ʉOÆÏ[ô_#hÿNÌsÿ?A{0  ¯ï¹U}Ï­™?~À‰Êã-ÛùF,®ÇˆòÊÁïÀ êßøhÿ&,Û©ŽYÈk\â{îçÁq…ùý7ĘâWö=·æžÿ³ãßÖ@Ìœ³6¸æòÁ8ßLj©ÿÄT:8öÐ2øÝWÂÜã ÀËA8¢¬²Ëß¾Œy`µlç^ßs·Å•ײbõçzÌdõ–ï¹·'(܉všùc%R‹(³0¦v±æ'aûñþQWc&ÊÞ˜ gD\yø²±"&xÇ(4¡r0éü³ÀîO° ×3qOÃÜÇ4`cqûLUj?Çù±Fcú‰7³ÃL¿—¨}ßsb&àû1Nýgav8Ÿ,ÎøXì5iÞ*÷ØÏ?.àùÇîc÷Î r ýÏ¿¥é~X8wã>òŸ±g÷.Ê•O£Õ1Ç1äòkhؤY¾ºŸø.ß~ñ —\s3[6n`Ìè7ÉÊÌäùQcH«P‘5+—‘’šJ¥ÊUxuä£Ìr'“M¹òå±OîÍ˯¡\ùüî232øä½·Y8g6kW«¢µjsÊégqæÙƒIJÊ›~Ù´‘‡ïº¶í:pÖ  yùɇٰv5C.¿†?õ?€Më×ññ»o°xÁ»Ô÷Ü¥1ç|mÙΘè¥#/ðPØgCÀñ=wKPß·lç#à ÌËýé¡•€ï¹_Z¶3 #žÚb¢‚ÙÝùØßs§Y¶óæyß›¸E™8Âñ´z† ]ÁõĈ¾†SÄŸ ËDX}ó|¿/ÖwÔ²z˜ûµ8?܉ž‡¯Y¶s&%È_0Ög¾}ÐÜÉôæ{}Õ÷ÜØÈ¹[¶s"F¨^‰´KÐ}àñ¸ßÁËvþ‚¹7[¶ó\°ûöß î{îq—üfGîa?&ô¹ï¹Ë,Û¹ ö.Ëv^ vóºU^5Óó=wŽe;—bDwü»@±ˆ·í0‘{cEЩ˜ß×Rßss#ûžû³e;CI…óîàóÒ˜ypŽe¢þžœdÙN[ßsÇ\×ý¾ç® ÚÎÞ²lGc+b.cI±lGMþ“‘…¬ ”]ŠŒ,<ˆ>Ǭò\ ÊR̨I†m'Ù²¾q+CáJìÔõOÆ„ ‡ïd%^±þ[À¢¸²ú˜ì?Çù;%>Áäzæ%àáÀ”%–pÂo-A¬˜ÐéEõÐ<3‡Dán/ÂL”_úž›\ÃŒ)E¥ý§+’Åêß7‘Wcv6}ŸÓ1ÐGÁ± ÙG|[û€wƒÆß¡âý ÜïÆñÄßo'cÿ>®¾ío rIB¡ µæóÿŽfäw³aÍjÎ8˜Ëo¸“OëË’Eó¹ÿ–a¬Y™ß•bÙâÙ¹}ËÿÈgŒÂ²{pÆÀÁT¨X‰ëÖ±?ÕkÖfĽ·³í×_è7ø"Nês&Zk&}3–w_{1_{[6mà‘»näëO>¤Aã¦\rÍÍ\påuT­^“G½Áÿ=ñp¾ú«W.cçöm$'§ðÌC£rÕjôî;€v'˜ÿÕæÍò¸÷†+˜÷½‡•~C¯»•ó.¹’¤¤$Þóe^.ÿ»äÿÞ‡WŸ~Œ½{ö0ð‚K¹âÆ;8cà`"‘$>~÷MÞ}í…ß÷å”að™øˆ›éÁçÿœó1f!$–Ž@mL”ÐDBæýà³g‚²¡ÀŠ!4+þ6öªà34Æ÷Ü·|Ïíçc§æ IDATÇåí X|7lúºX´¯1>9P²~1¯`üGúžo†v"f¾›Zˆ©sè£{~‚²ñ~‚ô1ŒJp,ü®»Ä;9®¯\‚ög`ü¤ÒãË1é4âé|ðµõ=w&lCòü™ÃïúÏ–íÔŠ«?Ï÷ÜÇ|Ï=PNÍ‚ó=Ì<—﹯ÄU)ô÷¸+äY îŠñÁšW;fM Vìu]¿cå{îÛ¾ç>ç{n¼ÀÚ€™ÅfZ(³ÈNVÙ¥¨—þ1η×[¶óTÜäû5ÆDìnË${“1»`W`ìÚ_ ê‡ †»“ +ðéy #h2ãÌÕBó¶¹AÝ0Ìù¯¾ç®ŽkÌŠál?TÁ„×<¤ëclÎ ¼¤«Á/7£-Û±ü<çØ™óš³-Û9ÎqLìâ¿ þ»…Ÿç(]ÔýË20«”—ÄÜÏc09«20¾!ß`V¿ïƬ~†ý—ÇL¨çZ¶s¾ï¹á xØGü®]Èÿ‚k½“w,l¯"f=¸Ç÷ܽÁäû3°Ò²“c'§`;'æ> Å`ïžÝlÙ´¥›µ`Ìè7ùìƒw©R­:7Þó -Ú[è¹3§NäãQoж]n{`D>®ÖǶã¥òþÿÇíæ “õkÌ;Ç‚9ßóÀ3¯P³vÝܲ•ËŒËàæ ë<ô*Î88·ÌéuÿüÛ­L›ð5¹òZʧU@kÍ ÝÇÚU+¸~øtê–—wµ÷™ýyøÎëñ½©ü4.ÇB¾þçÏùžs.¼Œž§çYm\¿–WG>JRRÃ}šf­Úä–õ:£ï¹”链¥wß´l{,ZkÆ}ö1•ªTåïO¾Hjjž5WŸ³Îæá;¯gÕ²Ÿ‰F£D"¥³î?Z¶ó?ÌäX3S[LäÇÿèEHÈêfñ¿v½Œþ×KLùÖXö\w×}E ¬œœl>õ&ÉÉÉ\sÇß Ìèœ~)©©,[ò#Zk”Rìß·—_6›w™þC.É'° oG­Ý ó ,€–m#5µ™™lÙ´‘ÆÍZ0}Ò·¬Y¹œ^gôË'°"‘]{ôdåÒ%üüãÂ\‘µ&¸Þ–mŽÍ'°¾üø}öíÝËÙšO`”+ŸFçô“˜0öS–þ´€–meÿ¾}ìݳ›*Õª“gBX£VmF¾ñ>e€ ½1‹#ñÔ >ãMyC¶’_d…Q>&‘÷=7ò0¨Emò^èÁ,,F±^"-ÛiL¼ìnÇD+ÜŽk‰sÎáÈu2y©HËvêúž»)®Nø¢ß<Ôx20¦’ñä'+¹=ä}×Õ!7WahŠ>´ˆö2È/Ì ë¿~1Æ–Õð=w§erD݈¤gX¶3c’hÒy(uŠÒª@ú–ìÔÔqä d0¦æÕ‚ÿ>Õ²Ê vŠóû%tJM‰·¾çN|ßþ†™#¯ þ2-Ûy¸3þ÷à{îèÀWì5Ì{Å%}WJ1,›ÔÅØbÚ''"X!z3™v‰+Û…™ŒÃL’a^°aœz/ô=7'¦þ˜‰n\ÐÖŸ0Iu»ùžû=få;ÌjSf‚˜DžÙ ˜ÉhFÅS!(û:A™ Ê&Ç«+4:``úvQ0®V–íSö:fUúkŒÀ»³ºøp¼>3yO¢pÑ úø3ÌÇDê;³ŠØÃ÷ÜçâÆ¶ Éꌸ½Žù{Œƒóuq}ì ÆPdùž»ó}ŽÀÜË¿bL¦bü7nŽ«3fÒùã˜|+p&F_„‰uäD(eBa³eãz¦Žÿ*ׇê£Qolâû©“زiºØ$§¤°wÏî|ûöî¡BÅJdìßÏÞ=æ}dõò¥h­©S¯º:Ú ÇÒóô‚Y’““©\µ*9A`‰/þk~Öö)} ô¿wÏnʾ[Û¶æé0záéÅ6Off³ÜI(¥pzÅ[¼ªÕ¨Ü+³pŸV¡mÛu`Ƕ­Œ¸÷6æû3*HÆaâÌÿ{ç`|â _"«$(ƒ¼Œð…0a”`—©æÙRØ.Æïá=ŒÀz¨ã{nOßsúž;„ü‹qe…j˜E¿g0eT‚@áNÐS¾ç–/â¯)Êg'%ðGЧjð¹ r}„Â\bu0†x_×Dý‡¿‘ê ÊBBÁ˜»ƒä{înßsõ=·%fô:ÌÜÑø:XÔ#I©©h}MüŸÞ³'>Z5LÀQ˜…ÈxSA8øß(‹-è}Ï]ä{î…!{ ð8&²ð% h yµp$ÆTSʲ“U l»{³î¿IlëM`>wO¢²BêOLj«DeøûÄÐ3®ÎgâÜ7 ‘%EÆ7!oŠ;ö>ù\acö1â%QÙt`@1Ú˜M÷Û÷Ü¿ÆüsÁŽY1ÚÝFâ¶Duã“M'ª³³CV,|Ï}YÙ+ 5ëÔåŠï¤i‹Vüãæ«X²ð¾øïhÎtaâóVš!ß›ŠïpwÌ%))™´ &u]ŰC—n|¼´Ö¬^±””ÔTÚwêR ­5Û·š÷¡ÊU«’•ÅÆuƽ豻o*ò+W1ïOûöîeËÆõ¤U¨H›cÛ竳dá|öíÝK³Vm¨Y;Ñ»,¹b1%Æ,ðš;ÿÁÏ=Á¼YO?xi*ÒµGOÎ<{0uê—~ªßsŸ·lçUŒeÀ}–íü+μ+Üi*pÑ–É™¿s±2ø¬ObBsªu%mâdÙN‘p?Æ„8¾ýD‘K›ñ¾ç îe:ÆBáÌ"bÈÊà³Ù!è¿M Ãï4ÖDnÆÊ¢E ) Ò£X¶S5XH‹'L¶»2Q¾çþŒ÷KAP£û0Ö+ãg¹îO˜i<“¾ù‚i¾æÊ›‡ÓµGÏ"Çv8Lø&`v'o猹Ýy˜½ø`ƒ0aÀcùcZeY¶Ó:xŽ?òûí”u1V*{É‹n€e; 0!â¡à˜K“=`^°-Û‚1ÿºß²)~^Ð #ÿœH”X¶Ó c½ð©ï¹ñKÄ FZ c­ &`DÖ…$Y–íÜ,ÁøHåÄ—Çâ{®"Cö†·ƒD7lŠñËZ»³{õ€“œ9` Fd¶ÛT»ƒñì¶L²d“sË‹ñM #T†!äcÇÙ‰¼è»áµm°lg.Æ… 7ÆB&¬Ÿ†ñ+«‹1 ] \@®&®Ý–í|‹Yñ×uf‡ð¡Œ"æ‚‚ E™‘‘»›#«õ±íè{îDsrxuäcìß··À¹¿nÙ @Ÿ?¤ï¹C ý‹õ{ ]³–m ´šñ–‡ë§ù&B»:£”â×-Æ"©q³Eöß÷Ü!4nf‚ͅ戉ú‰÷- ÉÌÌà§ùs‰D"tD[,Mš·äüˆñÔëÿ᢫oDkxý¹dìÎWj„6“ñÁÞÀäY:Û²ÜÝñÀäQâüj|AíQÌûšeÒ<„çtÇ$“ÍÆÍ)iVbDK ÌË{Øo;ÌËnh*ÝÁJœgð7cÙöq–íl´l'QB÷bá{îJŒyw&¨QíàøzLbßJÀû–íT3}:*ˆ0û)ðÿœ ƒ}<†Xó1‚n?&×Ü›–íœiÅä]³l§9Æ„7JAsÀd`_>Û‚PêˆÈA(‚5+—F©^³6UªVËW6`ÈÅ4kÙ†Í×3êÕç œ[£¦y·Þ±=qêšØÃ`Dʆµ«I«P:õ¨¿r©yw Mòâñg˜÷«Ž]lÓ-cݳc[â]™’LJª¥v=3¦m¿&öÕŸ3cûöî¥Ý ]¨^Ó¸“$òYKJJ¦÷™ý9æøÈÊÌdíªÂØ• ‚üÛ0/vŸX¶³É²õËÇÉ‹ »;ô fwâ`•e;³-ÛYŒñŸIÆ${-‘üRqcÍÆ¼´‚ñmZaÙÎLpé˜è¤û0‘dY¶sFâ–e®«nð÷›ñ=÷cLôÜÀ;1bð~ŒOÙéÀËv~Àø´Í˜ü=ì{î'Åì&Y1A‚¦Z¶³Ø²˜ˆ¹u€ÇŸäp\[0>ÍÛ1Bos0†_0æk«süĹ ]ç,L –ªÀ Ëv~ v€–a|£Ÿ"/ç˜ßàϘ|`¿X¶³2èÿWÌ÷:‰ ÊÆô=#D^À˜Þ}‚Ib|e úÏa­Á¼¸?@~?Ø5Á±· ¹%ïåaÞ-2M0‡SÌ(ˆÁ¹8èÐm˜”AÎCßswúž{&9îC˜À>_mçÇ$Ê (ê¾Eƒ²OOÏ`ì 1;Rý|Ï-àÓì{î7˜ô(Wcî×RŒ  ´‰λƒ>…œÛ{ “Wmxp­ 1(Ò}Ͻ=.@Õ*L$Ú‹0¿¿ÙÁ=x8#pRÜmáyÁØù3]‰´Ëƒ]µÐçºÆ$ñkLp•À͘ß×Ä™PúžûÏàœ;1»¨¯cvÜŽó=÷ǘzï`DÝ=˜ßÂrLP§ûVñ¥áHAKáŠRª°aÌ”9ùB‘wkZƒ§ßz§×i¼õâH&ËÀ .¥ÿù'lk—ÿcÔ+Ï‘V¡">ûjnØõŒýû¸çºËÙöëì“{ÓñÄtRSËñÓ‚¹Lüê3ÒÒ*0üѧ©ß¨I¾vþÔÿ\†\~M~n¸èl2öï£ÏYç0kúdúž3„5k³zÅR>ÿïh²23¹ùïr¼ubî9¿úŒw^~–j5jò§þçÒ qS¶oý•ï¾úœ•Ë–Ðóô³¸äœ23#ƒk/èG¹òi¼ðî' …Þg¼Ë˜ÑoR§~Cú ú UªÕ`Óúµ|ýéùuË&þråuô9ël6¬]Í·^ N0ˆVÇGJJ*›7®gÒ7cYñóOô>³?]}c¾ñþ㦫˜²xC¾/ü!}Òªk­ã£¤ýn,Ûyór›ÃN8¬ôôkÐj˜ï¹K{,—`'¹ªï¹Xù7 ”zù´~çüuÄ«ïÈfÄ—œ—5eÜ—/i­o>píþA(‚0²`Q>J½Ïìϼï=æû3yuäcÜõÈH"‘åʧqÏãÏ0ú_/2sêwxÁŽVRR2'v?™³/¼ŒÚuóÐeª·qýZöìÞE›v8ï’+Ùµs;¾ýûöš\´›µàâa7Ñê˜ü)„zÑÔÔr|4êu>xëÕÜãµëÖ碫o¤÷™ýs­Y¹Œh4JÓ‰wÒÎô*V®Ì'£ßâõçò(7kÙ†K¯½%_ÔÃúšpÇCOðÁ[¯ðÙ£òµS§^οlên¡÷µ}²ºb’| ‹VC•RŸ—ö0„?.¯V}Œy¦ ”Yd'K„£’âîd•ÙÙÙlÞ°ŽÔÔrÔ¨U»@ä¾ßB4eÓúµT¯Y‹òiXçŽíìØ¶•µjS±ÒÁæ¤-Èö­¿²g÷.jÕ©—0Úa,ûöîaë/[PJQµzBû/嬳m°ÿÅúäEcÛv• ¥ÎÉRê \7±#  üF,Û©‡1u½c†øn`>ZâÈNÖ‘‡ìd G'tëÖF‘tœ&gÑÜ3Š-ªS7g`$¢sfOŸ.y+ÐÙ¶;Du¤ERN’?kÖY…;ŠHNN¦Aã¦%Úf$É55,UªV+¼ã÷P­FÍÜäÃ"­BE69$–=%†ï¹S-ÛyãCr/&éøñEŸ%„xž·x«´Ç!üaé‹ñëm°Øy@¡4….J$’Áä)kà{®í{®,T eÙÉJe¢27²T‰Ð9=½ŸÖªï¹Î~‹Âqœ´Œ(eç¨Íû~Ú‚Ò ÅÇ÷Ü}˜h‚ ”|ÏÝ ˆªpÄ "K(Qf{îa·…ÕZ]4Åä«)däDºh½)’ÄDL~AAŽöîÙ››P(ûìÛ³§D“«—"²ŽblÛ®’–––9qâÄâæÕ W¯^É»víª8kÖ¬¿µßnݺ՜9sæ6­õ6*¥TçÎkfeeí›7oÞžD庥ÛÄä§9X‚>ª´hÑb÷|s ú­ûö-WaÇŽªó¦MK”å> 'ÝäV<0]ºt©š“SYÍ™3ñ€Žü]ºt©0kÖ¬½Åj\A„ƒfÚ„o"Ó&|SÚÊO™Ó4]ð(Ã:ùäÚdf?ª'èÆ@¨eèè˜]5«ß÷óر¹uӻߋÖi¸'Bd¢ÖÑÇQœTVjxfŽç>›¯}ÛÙì÷=·Yìñ.Ý»·Ô9úIm’yVÇ$iô•Ò/Ξ>½€—ã8iû£üÍ•(jX©à©–M½üÁätêæÜ¡·uÌu˜ðË‘ìÌÆ³fÍ*Ôd±³í|­¡cÑ.I$Öw}ì|aø×ucÏiß«W¥rû3oךËA7Â(¨½€QúÞYÓ§ÏèÕ«Wùû2Vb|:Ò€í@¨'|oÚSlç×WDQk#è§ã‚nÖ+­Ÿœ=cúÓ±}wízR‹¬Hö½ Õ£ lÕè±II‘ûgM›¶ á 9ÜÑ…âQšÑA”RU0ï:‘Å­õ®ÒDH™S}¡ã„nÝÚDTÒd .ð>JORZ•ÓZD©»*oÝ~¦ã8¶ëºûbÏ‹ i¢Ÿá[å …jŽÒC<Ó¹[z¹Ù3¦ˆ©^È·3Ö¹[“´Òß QDx Í !Š+µVï[¶Ó"ÖŸªW¯^Éû£Œº£˜©µzmªPý5¼ðóêµ­€[Pѹ¨ÈÇh†ÛÑú-€-Z¹C¦¡"P7 uèË•ÒÿÖ*²­»T”ñ–ãœá»î¤ðœÔ}ûßר¾À\¥õ :Â.¢ ¥‡F£j’eÛ–ïy‹€l´~ ¥`2ØO@ëŸÑ̃BwŽÀóh5ÅŠh[ª•Ù©›³iÎ w4@ÇîÝë$Eô$…jˆækßkØî .ŠæèÓºvízÂÌ™37ã' ‚ ÂÐZïv–ö8„#YG•ôFýÃ÷¦=WJ=ש›3tÿŒ(WÏÄž§Q×j­‡Îñ¦¿³º:á[­"wôêÕë¹ÂL{õê•L$úšrZEOŸ3Ý–uéÒå¹hrêà¡®]»¾;sæÌ5;ög^ t׊1­7šðuíÚµqv$y©‚›»8Î+s"²ŽºvíÚ˜Hò¹ÀÎÌ´rùÌÑ´ÖÑNéé#”Vý5êâD°rîLïØþLw|çtgÖºýν}€Ïõ»cÿþÓЪ=Šñ± `Ö¬Y;:wK©•™“”2 ø[0 ‹TT=ë#5sæÌ5íî7h¢s²#Eg>-ÒZéѱ ‹è3)DîTš3lÛ®âyÞÎì}»æ§T¬Ø ^LF”þ:ªÕhÚÜ(ÔDZ G猋¨$€–¹µÐ55 P?Ç·0wÆôk±ù-QÒ{žÊî;X¼à‡ÒÊQK·“z—öAáw!"ë(!G¥´­€ŸLœ¸;¾<)+kN49ÐÍ•R‘|A)n¢ ZãíµñQJˆÒª­”fA§N½ dAUåù ZëÎJ©H§né"9³âëÏö¦½Z¬ .­fÄ›ïy›,ÛY4ÏRª!°3¸1 cÇŽUùò “TJ¨ÊI"ªš*ßâ 2¼j­g8–œ¼ ¨Ü¶T„oµ&ª´¾­“í¤*ywÎÌi¾Ö:ZœÀ!ÂÁóÌÛ–öAA8‘dÄG Ý<øÏ„QøfÍšµWÁ. ¥czzý|…Q•ÐßG+~P‘H½ÂúB+Ó?7©rÛâÿÐjlPµ@Ç©${‹ ^Q"DôúD‡•f;€VªNxì»G/+Ýù6)­âΈJZ¬‰NWZMUŠwK×*A®”ŒŒ¢iÖôé>¨ í nFE¿ïÔ-}‹e;Zééý•Re.d© ‚ ÂÑŽìd%舊(­ÑŠBw?´‰àW!¡¿•ŠªÐò®P"h¥Q(øBÃÔÂê)MݵCÎQ àk¥¢±·ÂrœS"š/$ ÏE"|M4ºEÃ>¥“êi¥ÇÊqúÞ´÷Ú÷êõy¹}™Ñœ¡•Vçuê–>¥S§^ý‹þ]AA8<ˆÈ:ZÐ9+!‚Ò$Üu:¦GÊLØñÌyÓ§çÛíŠêhýDçh­£Pèh´ÐÈvQÔ hø!6‚`aüàº[:uKÏ*´îÛ·\lHù’FETÂëBëj(PZ›éÕµÖQSA(³ˆÈJ # ªd{|Ï­TÚã)ŒD"K8ú‘uä!"KA8RsA¡ÄH­PŶ’ ‚ ‚ Âш¾~7]ºt©MN]L„ÚJó~iIAAJ YÂï&555s”o4ZE´šêÏœþZiéLv%ÁÖÒˆ ‚ ‚ðÇCD–ð»q]wpIi£¸øžûÒƒ ‚ ‚ðÇE|²AAAJY‚ ‚ ‚ %ˆˆ,AAA„DD– ‚ ‚ B ""KAA¡‘%‚ ‚ ‚P‚ˆÈAAA(ADd ‚ ‚ ‚ ” "²AAAJY‚ ‚ ‚ %ˆˆ,AAA„DD– ‚ ‚ B ""KAA¡‘%‚póÚ3sß-W±qýšÒÊÿ·w§ñU”wǯ³%9I $d'€,„°C@0lRE‹‚ÕRK­E\ði+´¶XëúÔJiQW•źðà‚ Â@€° !…ì YNrÎó"päxHeb$þ¾ïÎÿž¹ç?ó"ù\Ÿ™¹€fÃÚÔ @sµèŸÏiç«ë3™L  Uhd”ú¢á?½^V›Ï÷Ü¡”}2SGÈQéøÞ @sEÈ€FÓN‘mb «FŒQß„¡2[,²Ú|Üïœe|}ø®Íw² ‘íØ²Iù¹¹5§Ó©¼ÜlIß«òòrÅvè¤ ·ÿÒc›i»e6›Õk`‚לºöP‹–AJÛ™¢ÒÒ¶Pd›¶úíïÿ\g‘m$I§³N5¸ï^ýÕÛ/Ï“ÕjÕð1ãÜö“ŸwZ’TUY¡u«?¨wn›Õ¦¢‚<©ýrÖÔèßÏ=¡í›¾”ÉlVl‡Ž j,»¿ÿwêÛr2,þ}PþK@#³ùúÈ? À£6bìx%oX«Ãû÷jõªw5vÂ$ñ Úƒ[‡éÙW7è8Ÿ|°BÛ7}©ØôÀŸžpÏ!Õ¾ûµmãúK<Ð,|MÀd2éÎ{”ÙbÑû‹_SVf†Çx«àÖ²Zm*,ÈSuµ£As¦ïÙ)IwËd€%IY™Çi\! šHLl{?QŽj‡¾øŒœç½/e2™ô“+{ÊYS£mIÞw Õ}¼|©íOs× óò$ÉãÝ®s>^¾LRí7­@ã"d@?éçj¡Ãû÷ê³WxŒÝ4¥vµÁw^[ #éûÜõÂü<½ögõÞ›¯èÓVºëÑíb%IIŸ¯‘£ªR’TQQ®W_|FÕ5ùøú©âÌåf7|…Aðßã,hB>¾~ºýîûôÂãÔò·©Wÿ…GÕ.·Þ¾SÝ9}¦–.ü—ÿà …„…ËÇæ«¬“îñ;~û€{®ë&NVJòFmMúB©Û“¡ÌŒãŠŒŠÖï{N¯Ï^»¶oÑ£3£Ä1ã4ñŽiMrÎ4w„,h$½û'(¤u˜:wëyÁíâû Ôíwß§’¢B:‘áY’tõè±êßG;·nÖ‰cGu¦¬Tñý©s÷ê5 A¦³–¤è¶±š;ïU­ûäC:‘!»¿¿FŒ½Q‡”Ýn×/ïû½>ÿh•Š Ô6î IÒ°ÑתGŸþjìžçª‘cÔµG/·ö^Â}Ì 7ëLY™|}}=ê&“Ião½C6_¯}ø±1¹\®¦î¾w&“)RÒ©•v(®cç¦n ž–ª[G%HR°Ëå*lê~¨ïd€Y` Bˆ"d€Y` Bˆ?•åZ²p¾Þ_úFƒ÷IZ»FKÎWæñcØÍ‹µ©€ËÑ3<$§Ó»n¶š©ˆ¨ :\!aáßsõ¨ªªÒ§¬PHh¸ÆßzGƒöÙ²UÛ6®Wמ½Õ¦]l#w@ó@È€ï =m·œN§üüýe2™ÜuG•Cûví$­Zòºn˜4Eã&Niª6=Øýýuï¬Gåãë×ԭЬ²àÌ·H­BZ{ÔŠ‹ •ôù­\¼H+ÞZ¤¸+:ëÊÞý›¨ÃoX­6õ8¤©Û Ùã,0XË V;a’ÆßúsIÒ'ÿYî+//WVf†JŠ‹$I™ÇiÛÆu*+)ö˜ÃårétN–vmKÖžÛUÚë8ù§s”•™¡ò²²z{9“¥¬Ì UT”Ëåt*+3C¹Y'ëÜ67뤾JNÒ‰cGå¬ëYÈ:äŸÖž)JMÙªâ‚ü:·©¨¨=çâ¢BIRVf†¶m\çþ @sÃ,h$=ûÒŠ·éø×Gܵ}»R4ïostí„I l©wßxY’4ó/Ó•½ûI’ïß«—_xJ9§2=æ‹mßQ¿zp–ûݨµ¿¯W,ÓÈënÒ”iÓ½Ž_YQ®Gî›&GU¥ž~é-9|ª4{úT…„†ëÙW»·+).Ò¼'çèà¾Ýîš= @3fýµÞsËÍ>¥Å/ÏÓ®í[<ê‘mÚjúæx¼¿uh_šžôa¼îFEF·ÑâWæËåréÞ‡ç¨Ï «.z¸Ü² ‘8kj$I>6wÍb©ý³›—“£Ï>\¥„ÄQŠi×^¡’¤CûÓôäìeµÚ4ùWÓÕ-¾œ55Ú±m³Þ_ú†}è=ñâB…EF)!ñ}¼b™¶mZ¯ÛîºGf³çà »¶%«²¢\Ýâû($4Ü}÷ìÛ^xì:rp¿zõOÐu7ß&ÿÀ@íKÝ¡—žŸ«€À@¯í+ΜÑÜY÷«¸°Pc'LÒ «GÉl6kﮯ´òíWõÄÃ34ûÉÛÞ㜠óó´ñó58l¸ÚÆ^¡ˆè¶—x…øa"d@#Ùµ=Y’Ô®CGwÍbµH’¾Ú²Q?»sšF»ÉcŸ÷Þ\(—Ó©;~s¿†Œ¸Æ]‰ë šêjýgÙ›úhùýbúLµi«ØtìÈAØ»[?¹2Þc®-I_H’†ŒSoGìÓ‘ƒûÒ:L÷>ÊÉÎRþé¯ñý{vIª]ÅÏt^¸±ùøªÿàa*+)Öáû´åË/d2™4xøè‹3<*Z’t8}¯×XöÉÊ>u£f2›Ó®½jª«µ7uGsIß§jGÕE @sEÈ€?]sÃÕTWëÝ7^qgK’ÊËËõþÒ7%©ÎÕ kÕ†ÏVëð½êÜ­§Â"¢.zÌACGÈl±(5e«Ž9è®W;ªôÎë/y„¹s®Ÿt»$iù¯x,Š!Ië?ùHÿa†ž~äw 8cš'€q7OVzZª¶|¹V™Ç¿V×½äp8”¶s»r³NiÀÐáê7øj¯ýºtï©°pm\û‰œN§Ç7¶.$($D£Çݤ5ï¿§§ÿ8S]ãûÊ×ÏO‡ö§)"ª\uµ’ׯõ|}ÑU#Æ(iíýéþiêÞ³·|ýìJß³S§2OÈ )wÏ0ìšp¹!dÀwÐ¥{9’í¼•Â?°…ºtW›vquŽûùûköÜ¿kÍ–k÷Ž­Ú’´N¾¾¾Šn« “§j`ßÏ’$“ɤkoü™¶oÚ ³Å¤~C†ymcµXÕ¥{¼Z~keÃIS£ð¨hmݰ^÷îVDtŒú% Õ “~®¤ÏÿO§ódð\}ð—÷ýN½$hóºÏuä`ºJKŠ¡QãnÒ˜ñÕ:ì›%áýÕ¥{¼ÇJƒ4g&—ËÕÔ=À÷Îd2EJ:µrÃÅuôþŽ~xÒÓRuë¨I v¹\…MÝõá,0! DȲÀ@¬.àGíÏÜí°ÛýYè2p¦¬Ô$é¿[΀&Àê‚~”L&S ¤?5uøNæ¸\®Š¦n€ú²À@¼“"d€Y` Bˆ"d€Y` Bˆ"d€Y` Bˆ"d€Y` Bˆ"d€Y` Bˆ"d€Y` Bˆ"d€Y` Bˆ"d€Y` Bˆ"d€þgOÞ†ê@#QIEND®B`‚realmd-0.17.1/doc/privatedir.xml.in0000644003225100322510000000001414046520517017420 0ustar00sbosesbose00000000000000@privatedir@realmd-0.17.1/doc/version.xml0000644003225100322510000000000714315276775016346 0ustar00sbosesbose000000000000000.17.1 realmd-0.17.1/doc/website/0000755003225100322510000000000014315277002015564 5ustar00sbosesbose00000000000000realmd-0.17.1/doc/website/Makefile.am0000644003225100322510000000016414046520517017624 0ustar00sbosesbose00000000000000 website: SRCDIR=$(srcdir) BUILDDIR=$(builddir) python $(srcdir)/doc/website/jinja2-build.py CLEANFILES += html/* realmd-0.17.1/doc/manual/0000755003225100322510000000000014315277002015377 5ustar00sbosesbose00000000000000realmd-0.17.1/doc/manual/realmd-docs.xml0000644003225100322510000000322114046520517020314 0ustar00sbosesbose00000000000000 ]> realmd for &version; Administrative Guide Command manual pages Integration Not yet written Developer Reference DBus Interface Reference Raw DBus Interfaces These are the current raw DBus interfaces for realmd. realmd-0.17.1/doc/manual/realm.xml0000644003225100322510000004466714311053251017234 0ustar00sbosesbose00000000000000 realm realmd Maintainer Stef Walter stef@thewalter.net realm 8 User Commands realm Manage enrollment in realms realm discover realm-name realm join -U user realm-name realm leave -U user realm-name realm list realm permit -ax -R realm user@domain realm deny -a -R realm Description realm is a command line tool that can be used to manage enrollment in kerberos realms, like Active Directory domains or IPA domains. See the various sub commands below. The following global options can be used: , Run in install mode. This makes realmd chroot into the directory specified by an absolute path and place files in appropriate locations for use during an installer. No packages will be installed or services will be started when running in this mode. Run in unattended mode without prompting for input. , Display verbose diagnostics while doing running commands. Discover Discover a realm and its capabilities. $ realm discover $ realm discover domain.example.com After discovering a realm, its name, type and capabilities are displayed. If no domain is specified, then the domain assigned through DHCP is used as a default. The following options can be used: , Show all discovered realms (in various configurations). Only discover realms for which we can use the given client software. Possible values include sssd or winbind. , Only show the names of the discovered realms. Only discover realms which run the given server software. Possible values include active-directory or ipa. Only discover realms for which the given membership software can be used to subsequently perform enrollment. Possible values include samba or adcli. See option description in . Join Configure the local machine for use with a realm. $ realm join domain.example.com $ realm join --user=admin --computer-ou=OU=Special domain.example.com The realm is first discovered, as we would with the command. If no domain is specified, then the domain assigned through DHCP is used as a default. After a successful join, the computer will be in a state where it is able to resolve remote user and group names from the realm. For kerberos realms, a computer account and host keytab is created. Joining arbitrary kerberos realms is not supported. The realm must have a supported mechanism for joining from a client machine, such as Active Directory or IPA. If the domain has been preconfigured, and unless --user is explicitly specified, an automatic join is attempted first. Note that the --user , --no-password, and --one-time-password options are mutually exclusive. At most one of them can be specified. It is generally possible to use kerberos credentials to perform a join operation. Use the kinit command to acquire credentials prior to starting the join. Do not specify the argument, the user will be selected automatically from the credential cache. The realm respects the KRB5_CCACHE environment variable, but uses the default kerberos credential cache if it's not present. Not all types of servers can be joined using kerberos credentials, some (like IPA) insist on prompting for a password. The following options can be used: Do not perform UID/GID mapping for users and groups, but expect these identifiers to be present in the domain already. Only join realms for which we can use the given client software. Possible values include sssd or winbind. Not all values are supported for all realms. By default the client software is automatically selected. The distinguished name of an organizational unit to create the computer account. The exact format of the distinguished name depends on the client software and membership software. You can usually omit the root DSE portion of distinguished name. This is an Active Directory specific option. The software to use when joining to the realm. Possible values include samba or adcli. Not all values are supported for all realms. By default the membership software is automatically selected. This option only applies to Active Directory realms. Specify this option to override the default name used when creating the computer account. The system's FQDN will still be saved in the dNSHostName attribute. Specify the name as a string of 15 or fewer characters that is a valid NetBIOS computer name. Perform the join automatically without a password. Perform the join using a one time password specified on the command line. This is not possible with all types of realms. The name of the operation system of the client. When joining an AD domain the value is store in the matching AD attribute. The version of the operation system of the client. When joining an AD domain the value is store in the matching AD attribute. Only join realms for run the given server software. Possible values include active-directory or ipa. , The user name to be used to authenticate with when joining the machine to the realm. You will be prompted for a password. Set the field of the computer account to this kerberos principal. If you omit the value for this option, then a principal will be set based on the defaults of the membership software. AD makes a distinction between user and service principals. Only with user principals you can request a Kerberos Ticket-Granting-Ticket (TGT), i.e. only user principals can be used with the kinit command. By default the user principal and the canonical principal name of an AD computer account is shortname$@AD.DOMAIN, where shortname is the NetBIOS name which is limited to 15 characters. If there are applications which are not aware of the AD default and are using a hard-coded default principal the can be used to make AD aware of this principal. Please note that is a single value LDAP attribute, i.e. only one alternative user principal besides the AD default user principal can be set. Use the ldaps port when connecting to AD where possible. In general this option is not needed because realmd itself only read public information from the Active Directory domain controller which is available anonymously. The supported membership software products will use encrypted connections protected with GSS-SPNEGO/GSSAPI which offers a comparable level of security than ldaps. This option is only needed if the standard LDAP port (389/tcp) is blocked by a firewall and only the LDAPS port (636/tcp) is available. Given that and to lower the initial effort to discover a remote domain realmd does not require a strict certificate check. If the validation of the LDAP server certificate fails realmd will continue to setup the encrypted connection to the LDAP server. If this option is set to yes realmd will use the ldaps port when reading the rootDSE and call the adcli membership software with the option . The Samba base membership currently offers only deprecated ways to enable ldaps. Support will be added in realmd when a new way is available. Run the join operation but do not touch the local configuration of the client except adding new Kerberos keys to the keytab. The purpose of this option is to synchronize the keytab entries with the ones stored in AD or recreate the computer object in AD without changing the local configuration which might contain changes which would get overwritten by a fully leave/join cycle. If running realm join with this options does not help to fix issues it is recommended to call realm leave followed by realm join to enforce a fresh configuration with default settings. Since this might overwrite manual changes to the related configuration files it is recommend to save those change before running the commands. This options is only available when joining AD domains. Leave Deconfigure the local machine for use with a realm. $ realm leave $ realm leave domain.example.com If no realm name is specified, then the first configured realm will be used. The following options can be used: Only leave the realm which is using the given client software. Possible values include sssd or winbind. Only leave the realm which is using the given server software. Possible values include active-directory or ipa. Remove or disable computer account from the directory while leaving the realm. This will usually prompt for a pasword. , The user name to be used to authenticate with when leaving the realm. You will be prompted for a password. Implies . See option description in . List List all the discovered and configured realms. $ realm list By default, realms that have been discovered, but not configured (using the command), are not displayed. Also, by default, the list of realm details displayed is verbose. The options below can be used to change this default behavior The following options can be used: Show all discovered realms (whether or not they have been configured). Display only realm names (as opposed to verbose output). Permit Permit local login by users of the realm. $ realm permit --all $ realm permit user@example.com $ realm permit DOMAIN\\User2 $ realm permit --withdraw user@example.com The current login policy and format of the user names can be seen by using the realm list command. The following options can be used: Permit logins using realm accounts on the local machine according to the realm policy.This usually defaults to allowing any realm user to log in. Treat the specified names as groups rather than user login names. Permit login by users in the specified groups. Specify the of the realm to change login policy for. Remove a login from the list of realm accounts permitted to log into the machine. Deny Deny local login by realm accounts. $ realm deny --all This command prevents realm accounts from logging into the local machine. Use realm permit to restrict logins to specific accounts. The following options can be used: This option should be specified Specify the name of the realm to deny users login to. SEE ALSO realmd.conf 5 realmd-0.17.1/doc/manual/gdbus-fix-bugs.xsl0000644003225100322510000000103514046520517020757 0ustar00sbosesbose00000000000000 realmd-0.17.1/doc/manual/realmd.conf.xml0000644003225100322510000004432014046520517020317 0ustar00sbosesbose00000000000000 ]> realmd.conf realmd Maintainer Stef Walter stef@thewalter.net realmd.conf 5 File Formats realmd.conf Tweak behavior of realmd Configuration File realmd can be tweaked by network administrators to act in specific ways. This is done by placing settings in a /etc/realmd.conf. This file does not exist by default. The syntax of this file is the same as an INI file or Desktop Entry file. If the file is changed and realmd is running realmd must be restarted to read the new values. In general, settings in this file only apply at the point of joining a domain or realm. Once the realm has been setup the settings have no effect. You may choose to configure SSSD or Winbind directly. Only specify the settings you wish to override in the /etc/realmd.conf file. Settings not specified will be loaded from their packaged defaults which can be found in &privatedir;/realmd-defaults.conf and &privatedir;/realmd-distro.conf. Only override the settings below. You may find other settings if you look through the realmd source code. However these are not guaranteed to remain stable. There are various sections in the config file. Some sections are global topic sections, and are listed below. Other sections are specific to a given realm. These realm specific sections should always contain the domain name in lower case as their section header. Examples of each setting is found below, including the header of the section it should be placed in. However in the resulting file only include each section once, and combine the various section setting together as lines underneath the section. For example [users] default-home = /home/%U default-shell = /bin/bash active-directory These options should go in an section of the /etc/realmd.conf file. Only specify the settings you wish to override. Specify the setting in order to control which client software is the preferred default for use with Active Directory. [active-directory] default-client = sssd # default-client = winbind The default setting for this is which uses SSSD as the Active Directory client. You can also specify to use Samba Winbind. Some callers of realmd such as the realm command line tool allow specifying which client software should be used. Others, such as GNOME Control Center, simplify choose the default. You can verify the preferred default client softawre by running the following command. The realm with the preferred client software will be listed first. $ realm discover domain.example.com domain.example.com configured: no server-software: active-directory client-software: sssd type: kerberos realm-name: AD.THEWALTER.LAN domain-name: ad.thewalter.lan domain.example.com configured: no server-software: active-directory client-software: winbind type: kerberos realm-name: AD.THEWALTER.LAN domain-name: ad.thewalter.lan Use the ldaps port when connecting to AD where possible. In general this option is not needed because realmd itself only read public information from the Active Directory domain controller which is available anonymously. The supported membership software products will use encrypted connections protected with GSS-SPNEGO/GSSAPI which offers a comparable level of security than ldaps. This option is only needed if the standard LDAP port (389/tcp) is blocked by a firewall and only the LDAPS port (636/tcp) is available. If this option is set to yes realmd will use the ldaps port when reading the rootDSE and call the adcli membership software with the option . The Samba base membership currently offers only deprecated ways to enable ldaps. Support will be added in realmd when a new way is available. (see below) Specify the and/or settings to control the values that are placed in the computer account and attributes. This is an Active Directory specific option. It is also possible to use the or argument of the realm command to override the default values. [active-directory] os-name = Gentoo Linux os-version = 9.9.9.9.9 service These options should go in an section of the /etc/realmd.conf file. Only specify the settings you wish to override. Set this to no to disable automatic installation of packages via package-kit. [service] automatic-install = no # automatic-install = yes Set this to yes to create a Samba configuration file with id-mapping options used by Samba-3.5 and earlier version. [service] legacy-samba-config = no # legacy-samba-config = yes users These options should go in an section of the /etc/realmd.conf file. Only specify the settings you wish to override. Specify the setting in order to control how to set the home directory for accounts that have no home directory explicitly set. [users] default-home = /home/%U@%D # default-home = /nfs/home/%D-%U # default-home = /home/%D/%U The default setting for this is . The format is replaced by the domain name. The format is replaced by the user name. You can verify the home directory for a user by running the following command. $ getent passwd 'DOMAIN/User' DOMAIN\user:*:13445:13446:Name:/home/DOMAIN/user:/bin/bash Note that in the case of IPA domains, most users already have a home directory configured in the domain. Therefore this configuration setting may rarely show through. Specify the setting in order to control how to set the Unix shell for accounts that have no shell explicitly set. [users] default-shell = /bin/bash # default-shell = /bin/sh The default setting for this is shell. The shell should be a valid shell if you expect the domain users be able to log in. For example it should exist in the /etc/shells file. You can verify the shell for a user by running the following command. $ getent passwd 'DOMAIN/User' DOMAIN\user:*:13445:13446:Name:/home/DOMAIN/user:/bin/bash Note that in the case of IPA domains, most users already have a shell configured in the domain. Therefore this configuration setting may rarely show through. paths These options should go in an section of the /etc/realmd.conf file. Only specify the settings you wish to override. Path to the Kerberos configuration file, typically /etc/krb5.conf. It can also be the path of a file included by /etc/krb5.conf, e.g. /etc/krb5.conf.d/realmd_settings, if the file does not exist if will be created. [paths] krb5.conf = /etc/krb5.conf.d/realmd_settings When joining an Active Directory domain realmd will set the and options in the Kerberos configuration: default_realm = DOMAIN.EXAMPLE.COM udp_preference_limit = 0 The option is e.g. needed when trying to resolve enterprise principals and makes it more convenient to request Kerberos tickets for users of the default realm. Instead of specifying the whole principal just kinit username can be used. With always TCP will be used to send Kerberos request to domain controller. This is useful in Active Directory environments because Kerberos will typically switch to TCP after initially starting with UDP because AD Kerberos tickets are often larger than UDP can handle. Using TCP by default will avoid those extra UDP round trips. Additionally it helps to avoid issues with password changes when the DC does not reply soon enough and the client will send a second UDP request. The DC might reply with a reply error to the second request although the original password change request was successful and the client will no know if the request was successful or not. When using TCP this cannot happen because the client will never send a second request but waits on the connection until the server replies. Please note that realmd will not remove those options while leaving the domain since they are useful in general. When joining a new domain realmd will of course overwrite . Realm specific settings These options should go in an section with the same name as the realm in the /etc/realmd.conf file. For example for the domain the section would be called . To figure out the canonical name for a realm use the realm command: $ realm discover --name-only DOMAIN.example.com domain.example.com ... Only specify the settings you wish to override. Specify this option to create directory computer accounts in a location other than the default. This currently only works with Active Directory domains. [domain.example.com] computer-ou = OU=Linux Computers,DC=domain,DC=example,DC=com # computer-ou = OU=Linux Computers, Specify the OU as an LDAP DN. It can be relative to the Root DSE, or a complete LDAP DN. Obviously the OU must exist in the directory. It is also possible to use the argument of the realm command to create a computer account at a specific OU. This option only applied to Active Directory realms. Specify this option to override the default name used when creating the computer account. The system's FQDN will still be saved in the dNSHostName attribute. [domain.example.com] computer-name = SERVER01 Specify the name as a string of 15 or fewer characters that is a valid NetBIOS computer name. It is also possible to use the argument of the realm command to override the default computer account name. Set the to yes to create attribute for the computer accounts in the realm. The exact value depends on the defaults of the used membership software. To have full control over the value please use the option of the realm command, see realm 8 for details. [domain.example.com] user-principal = yes This option only applies to Active Directory realms. This option is off by default. In Active Directory domains, a computer account can be preset with a known computer account password. This can be used for automatic joins without authentication. When automatic joins are used there is no mutual authentication between the machine and the domain during the join process. [domain.example.com] automatic-join = yes This option is on by default for Active Directory realms. Turn it off to use UID and GID information stored in the directory (as-per RFC2307) rather than automatically generating UID and GID numbers. This option only makes sense for Active Directory realms. [domain.example.com] automatic-id-mapping = no # automatic-id-mapping = yes This option is on by default. Normally joining a realm affects many aspects of the configuration and management of the system. Turning this off limits the interaction with the realm or domain to authentication and identity. [domain.example.com] manage-system = no # manage-system = yes When this option is turned on realmd defaults to using domain policy to control who can log into this machine. Further adjustments to login policy can be made with the realm permit command. This option is on by default. If turned off then realm user and group names are not qualified their name. This may cause them to conflict with local user and group names. [domain.example.com] fully-qualified-names = no # fully-qualified-names = yes SEE ALSO realm 8 realmd-0.17.1/doc/manual/realmd-guide-active-directory.xml0000644003225100322510000002103414046520517023736 0ustar00sbosesbose00000000000000 ]> Using with Active Directory realmd can discover Active Directory domains and join the current computer as an account on that domain. This allows using domain users locally, as well as use a domain account to log into the machine.
Discovering Active Directory domains realmd discovers which domains or realms it can use or configure. It can discover and identify Active Directory domains by looking up the appropriate DNS SRV records. The following DNS SRV records are required to be present for realmd to identify a provided realm as an Active Directory domain. The DNS server that comes with Active Directory on Windows Server automatically creates these DNS records. # In this example the Active Directory domain is 'domain.example.com' _ldap._tcp.dc._msdcs.domain.example.com. An Active Directory specific UDP LDAP ping is sent to each server during discovery. To see how realmd is discovering a particular domain name, try a command like the following. Using the argument displays verbose discovery information. $ realm discover --verbose domain.example.com * Resolving: _ldap._tcp.dc._msdcs.domain.example.com * Sending MS-CLDAP ping to: 192.168.20.10 * Sending MS-CLDAP ping to: 192.168.12.12 * Successfully discovered: domain.example.com ... In addition an Active Directory domain controller's host name or IP address may be specified directly.
Active Directory client software As part of configuring an Active Directory domain for use on the local computer, realmd will configure client software to enable domain accounts to be used on the local computer. realmd supports two types of client software for Active Directory: SSSD and Winbind. By default SSSD is used.
Using SSSD with Active Directory SSSD provides client software for various kerberos and/or LDAP directories. Since version 1.9.x it provides good support for Active Directory. When joining a computer to an Active Directory domain, realmd will use SSSD as the client software by default. You can force use of SSSD by specifying the when joining the domain with the realm command like this: $ realm join --client-software=sssd domain.example.com
Using Winbind with Active Directory Samba Winbind provides client software for use with Active Directory. To have realmd use Winbind as the client software, configure the setting. You can force use of Winbind by specifying the when joining the domain with the realm command like this: $ realm join --client-software=winbind domain.example.com
Joining an Active Directory domain To join an Active Directory domain with realmd you can use the realm command line tool: $ realm join --verbose domain.example.com By specifying the it's easier to see what went wrong if the join fails. Other tools also use realmd which can be used to perform the join operation, for example: GNOME Control Center. The join operation does the following: Discovers information about the domain. Installs the necessary software to join the domain, such as SSSD or Winbind. If administrative credentials are required, a password will be prompted for. A computer account in the domain will be created, and or updated. A host keytab file at /etc/krb5.keytab is created. Configures the SSSD or Winbind services, and restarts and enables them as appropriate. Enables domain users in /etc/nsswitch.conf In addition an Active Directory domain controller's host name or IP address may be specified to join via that domain controller directly. After the join operation is complete, domain accounts should be usable locally, although logins using domain accounts are not necessarily enabled. You verify that domain accounts are working with with a command like this: $ getent passwd DOMAIN\Administrator The join operation will create or update a computer account in the domain. If you wish to specify a specific organizational unit where this account is created, you can use the setting. Additonally, you can override the default name for the computer account with the setting. Specify the to choose a different user name than the default Administrator user. You can use kerberos credentials to perform the join. Use the kinit command to acquire credentials prior to starting the join. Do not specify the argument, the user will be selected automatically from the credential cache. The realm respects the KRB5_CCACHE environment variable, but uses the default kerberos credential cache if it's not present.
Logins using Domain Accounts Once the computer is joined to an Active Directory domain, you can configure the machine so that you can log in with domain accounts. To permit any domain account to log in, use the following command. $ realm permit --realm domain.example.com --all To permit only specific accounts from the domain to log in use the following command. The first time this command is run it will change the mode to only allow logins by specific accounts, and then add the specified accounts to the list of accounts to permit. $ realm permit --realm domain.example.com DOMAIN\\User1 DOMAIN\\User2 To deny logins from any domain account, use the following command. $ realm deny --realm domain.example.com --all
realmd-0.17.1/doc/manual/version-greater-or-equal.xsl0000644003225100322510000000322014046520517022766 0ustar00sbosesbose00000000000000 1 0 0 1 realmd-0.17.1/doc/manual/Makefile.am0000644003225100322510000000550514046520517017443 0ustar00sbosesbose00000000000000XSLTPROC_FLAGS = --path $(abs_builddir):$(abs_srcdir):$(abs_builddir)/doc man8_MANS += \ doc/manual/realm.8 man5_MANS += \ doc/manual/realmd.conf.5 $(man5_MANS): doc/privatedir.xml MAN_IN_FILES = \ $(man8_MANS:.8=.xml) \ $(man5_MANS:.5=.xml) \ $(NULL) doc/privatedir.xml: doc/privatedir.xml.in $(V_SED) $(MKDIR_P) $(dir $@) && $(SED_SUBST) $< > $@ MANUAL_DOCBOOK = doc/manual/realmd-docs.xml MANUAL_INCLUDES = \ doc/manual/realmd-guide-active-directory.xml \ doc/manual/realmd-guide-ipa.xml \ doc/manual/realmd-guide-kerberos.xml \ $(NULL) MANUAL_STATIC = \ doc/manual/static/gtk-doc.css \ doc/manual/static/style.css \ $(NULL) DBUS_INTERFACE = dbus/org.freedesktop.realmd.xml DBUS_ESCAPED = realmd-org.freedesktop.realmd.xml DBUS_DOC_GENERATED = \ realmd-org.freedesktop.realmd.Kerberos.xml \ realmd-org.freedesktop.realmd.KerberosMembership.xml \ realmd-org.freedesktop.realmd.Provider.xml \ realmd-org.freedesktop.realmd.Realm.xml \ realmd-org.freedesktop.realmd.Service.xml MANUAL_XSLT = \ doc/manual/escape-xml-to-text.xsl \ doc/manual/gdbus-fix-bugs.xsl \ doc/manual/gtk-doc.xsl \ doc/manual/version-greater-or-equal.xsl \ doc/manual/devhelp2.xsl \ $(NULL) EXTRA_DIST += \ doc/privatedir.xml.in \ $(MANUAL_DOCBOOK) \ $(MANUAL_INCLUDES) \ $(MAN_IN_FILES) \ $(MANUAL_XSLT) \ doc/manual/static \ $(NULL) CLEANFILES += \ realmd-org.freedesktop.realmd.generated \ doc/privatedir.xml \ $(DBUS_DOC_GENERATED) \ $(DBUS_ESCAPED) \ $(man8_MANS) \ $(man5_MANS) \ manual/index.html \ *.tmp \ $(NULL) .xml.8: $(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_FLAGS) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< .xml.5: $(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_FLAGS) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< realmd-org.freedesktop.realmd.generated: $(DBUS_INTERFACE) doc/manual/gdbus-fix-bugs.xsl $(AM_V_GEN) gdbus-codegen --interface-prefix org.freedesktop.realmd. \ --generate-docbook realmd $< && \ (for f in $(DBUS_DOC_GENERATED); do \ $(XSLTPROC) --output $$f.tmp $(srcdir)/doc/manual/gdbus-fix-bugs.xsl $$f && mv $$f.tmp $$f; \ done) && \ touch realmd-org.freedesktop.realmd.generated $(DBUS_DOC_GENERATED): realmd-org.freedesktop.realmd.generated $(DBUS_ESCAPED): $(DBUS_INTERFACE) doc/manual/escape-xml-to-text.xsl $(AM_V_GEN) $(XSLTPROC) --nonet --novalid --output $(DBUS_ESCAPED) \ $(srcdir)/doc/manual/escape-xml-to-text.xsl $< && \ sed -i '/^[ ]*$$/d' $(DBUS_ESCAPED) manual/index.html: $(DBUS_DOC_GENERATED) $(MANUAL_DOCBOOK) $(MANUAL_INCLUDES) $(MAN_IN_FILES) $(DBUS_ESCAPED) $(MANUAL_STATIC) doc/privatedir.xml $(AM_V_GEN) mkdir -p manual && cp $(srcdir)/doc/manual/static/* manual/ && \ $(XMLTO) html -m $(srcdir)/doc/manual/gtk-doc.xsl -o manual \ --searchpath $(abs_builddir):$(abs_srcdir):$(abs_builddir)/doc \ $(srcdir)/$(MANUAL_DOCBOOK) realmd-0.17.1/doc/manual/realmd-guide-ipa.xml0000644003225100322510000001303114046520517021230 0ustar00sbosesbose00000000000000 ]> Using with IPA realmd can discover IPA domains and join the current computer as an account on a domain. This allows using domain users locally, and log into the local machine with IPA domain credentials.
Discovering IPA domains realmd discovers which domains or realms it can use or configure. It can discover and identify IPA domains by looking up the appropriate DNS SRV records and by connecting to the domain LDAP server. The following DNS SRV records are required to be present for realmd to identify a provided realm as an Kerberos domain. # In this example the IPA domain is 'domain.example.com' _ldap._tcp.domain.example.com. In addition realmd connects to the LDAP server on the IPA domain server's on port 389 and reads the Root DSE information about the domain. To see how realmd is discovering a particular domain name, try a command like the following. Using the argument displays verbose discovery information. $ realm --verbose discover domain.example.com * Resolving: _ldap._tcp.dc._msdcs.domain.example.com * Resolving: _ldap._tcp.domain.example.com * Performing LDAP DSE lookup on: 192.168.10.22 * Successfully discovered: domain.example.com ... In addition a IPA domain server's host name or IP address may be specified.
IPA client software As part of configuring an IPA domain for use on the local computer, realmd will install and configure client software to enable domain accounts to be used on the local computer. For a IPA domain this is SSSD.
Joining a IPA domain To join a IPA domain with realmd you can use the realm command line tool: $ realm join --verbose ipa.example.com By specifying the it's easier to see what went wrong if the join fails. Other tools also use realmd which can be used to perform the join operation, for example: GNOME Control Center. The join operation does the following: Discovers information about the domain. Installs the necessary software to join the domain, such as SSSD. Prompts for administrative credentials. A computer account in the domain will be created, and or updated. A host keytab file at /etc/krb5.keytab is created. Configures the SSSD service, and restarts and enables it as appropriate. Enables domain users in /etc/nsswitch.conf In addition an IPA domain server's host name or IP address may be specified to join via that domain controller directly. After the join operation is complete, domain accounts should be usable locally, although logins using domain accounts are not necessarily enabled. You verify that domain accounts are working with with a command like this: $ getent passwd admin@ipa.example.com The join operation will create or update a computer account in the domain.
Logins using Domain Accounts Once the computer is joined to a IPA domain, the machine will automatically follow the domain settings for whether users are able to log into the machine or not. To override this behavior and permit any domain account to log in, use the following command. $ realm permit --realm domain.example.com --all To permit only specific accounts from the domain to log in use the following command. The first time this command is run it will change the mode to only allow logins by specific accounts, and then add the specified accounts to the list of accounts to permit. $ realm permit --realm domain.example.com user1@ipa.example.com user2@ipa.example.com To deny logins from any domain account, use the following command. $ realm deny --realm domain.example.com --all
realmd-0.17.1/doc/manual/escape-xml-to-text.xsl0000644003225100322510000000420714046520517021575 0ustar00sbosesbose00000000000000 < =' ' > </ > <? ?> &amp; &lt; &gt; &quot; &apos; realmd-0.17.1/doc/manual/realmd-guide-kerberos.xml0000644003225100322510000000345414046520517022303 0ustar00sbosesbose00000000000000 ]> Using with other Kerberos realms realmd can discover generic Kerberos realms. Since there is no standard way to enroll a computer against a Kerberos server, it is not possible to do this with realmd.
Discovering Kerberos realms realmd discovers which domains or realms it can use or configure. It can discover and identify Kerberos domains by looking up the appropriate DNS SRV records. The following DNS SRV record is required to be present for realmd to identify a provided realm as a Kerberos domain. # In this example the Kerberos domain is 'domain.example.com' _kerberos._udp.domain.example.com. $ realm --verbose discover domain.example.com * Searching for kerberos SRV records for domain: _kerberos._udp.domain.example.com * Searching for MSDCS SRV records on domain: _kerberos._tcp.dc._msdcs.domain.example.com * dc.domain.example.com:88 * Trying to retrieve IPA certificate from dc.domain.example.com ! Couldn't read certificate via HTTP: No PEM-encoded certificate found ! Couldn't discover IPA KDC: No PEM-encoded certificate found * Found kerberos DNS records for: domain.example.com * Successfully discovered: domain.example.com ...
realmd-0.17.1/doc/manual/gtk-doc.xsl0000644003225100322510000007762314046520517017501 0ustar00sbosesbose00000000000000 2 book toc chapter toc glossary toc index toc part toc reference toc 1 en No "en" localization of " " exists. bullet No "en" localization of dingbat exists; using "en". 1 0 1.36 FATAL-ERROR: You need the DocBook XSL Stylesheets version 1.36 or higher to build the documentation. Get a newer version at http://docbook.sourceforge.net/projects/xsl/
<xsl:copy-of select="$title"/>: <xsl:apply-templates select="$home" mode="object.title.markup"/> 1.66 1.66

em-dash idx gls   |    ] In gtk-doc.xsl: For acronym () no value found! http://foldoc.org/
realmd-0.17.1/doc/manual/static/0000755003225100322510000000000014046520517016671 5ustar00sbosesbose00000000000000realmd-0.17.1/doc/manual/static/up.png0000644003225100322510000000062614046520517020027 0ustar00sbosesbose00000000000000‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ2.œE€Ù#IDATxœí“=JÄ@F¿o‰] !+¤œ2…Å[ZÌ<@/á<€¥…XÛ Ú­20v±³ˆÂ…Ïj0»lþvV°ðA`˜ ïÍ ð—t*iùâHÒ­~xR~'IUUÉ9ç#OÁ‘my–eJÓTeY†GvÉ@x¤O#ß;2E>9²|t$DÞ9nnBäíÈjµò‘BRIsIªë:HîŸ8ŽU…œùëùPÖÚN™1fc­sNÎ95Mã§–ɵ¤ ׿ŸØŒ1~¸pEòe$ïIž°€Ç î7nrDòf!;Ã`¨çÝ'äykíÎI’øáû䲤sI_]ÿÇy—‡‘€ÅÀ^^I>O>Á¡ø­§²š?YBIEND®B`‚realmd-0.17.1/doc/manual/static/right.png0000644003225100322510000000073014046520517020514 0ustar00sbosesbose00000000000000‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ2 I%Á=eIDATxœ­”!oÂ@†Ÿ.'**M0$ÄÁ$¿?1~¢vIeEuLlÉ&–Ô4‚ä Í¶B»Ý›œ¹|÷>ï—ûî …$ݶ©oc<”´ÑA©¤×€X’òŸW¶lC'?“tk;|/t*I»ÝN«ÕÊZø^`Œy•4ë÷ûšN§r]×® çJÒÌó<«’½À“Út»Ýú€à`±Xàºî1@p´ä€¸d½÷ŽZ')høÖÚK¬ ª$V?%Å]€­+³L’sgUKà"ÿw5â3O·•ÜòIEND®B`‚realmd-0.17.1/doc/manual/static/gtk-doc.css0000644003225100322510000002122214046520517020732 0ustar00sbosesbose00000000000000body { font-family: cantarell, sans-serif; } .synopsis, .classsynopsis { /* tango:aluminium 1/2 */ background: #eeeeec; background: rgba(238, 238, 236, 0.5); border: solid 1px rgb(238, 238, 236); padding: 0.5em; } .programlisting { /* tango:sky blue 0/1 */ /* fallback for no rgba support */ background: #e6f3ff; border: solid 1px #729fcf; background: rgba(114, 159, 207, 0.1); border: solid 1px rgba(114, 159, 207, 0.2); padding: 0.5em; } .variablelist { padding: 4px; margin-left: 3em; } .variablelist td:first-child { vertical-align: top; } span.nowrap { white-space: nowrap; } div.gallery-float { float: left; padding: 10px; } div.gallery-float img { border-style: none; } div.gallery-spacer { clear: both; } a, a:visited { text-decoration: none; /* tango:sky blue 2 */ color: #3465a4; } a:hover { text-decoration: underline; /* tango:sky blue 1 */ color: #729fcf; } div.informaltable table { border-collapse: separate; border-spacing: 1em 0.3em; border: none; } div.informaltable table td, div.informaltable table th { vertical-align: top; } .function_type, .variable_type, .property_type, .signal_type, .parameter_name, .struct_member_name, .union_member_name, .define_keyword, .datatype_keyword, .typedef_keyword { text-align: right; } /* dim non-primary columns */ .c_punctuation, .function_type, .variable_type, .property_type, .signal_type, .define_keyword, .datatype_keyword, .typedef_keyword, .property_flags, .signal_flags, .parameter_annotations, .enum_member_annotations, .struct_member_annotations, .union_member_annotations { color: #888a85; } .function_type a, .function_type a:visited, .function_type a:hover, .property_type a, .property_type a:visited, .property_type a:hover, .signal_type a, .signal_type a:visited, .signal_type a:hover, .signal_flags a, .signal_flags a:visited, .signal_flags a:hover { color: #729fcf; } td p { margin: 0.25em; } div.table table { border-collapse: collapse; border-spacing: 0px; /* tango:aluminium 3 */ border: solid 1px #babdb6; } div.table table td, div.table table th { /* tango:aluminium 3 */ border: solid 1px #babdb6; padding: 3px; vertical-align: top; } div.table table th { /* tango:aluminium 2 */ background-color: #d3d7cf; } h4 { color: #555753; margin-top: 1em; margin-bottom: 1em; } hr { /* tango:aluminium 1 */ color: #d3d7cf; background: #d3d7cf; border: none 0px; height: 1px; clear: both; margin: 2.0em 0em 2.0em 0em; } dl.toc dt { padding-bottom: 0.25em; } dl.toc > dt { padding-top: 0.25em; padding-bottom: 0.25em; font-weight: bold; } dl.toc > dl { padding-bottom: 0.5em; } .parameter { font-style: normal; } .footer { padding-top: 3.5em; /* tango:aluminium 3 */ color: #babdb6; text-align: center; font-size: 80%; } .informalfigure, .figure { margin: 1em; } .informalexample, .example { margin-top: 1em; margin-bottom: 1em; } .warning { /* tango:orange 0/1 */ background: #ffeed9; background: rgba(252, 175, 62, 0.1); border-color: #ffb04f; border-color: rgba(252, 175, 62, 0.2); } .note { /* tango:chameleon 0/0.5 */ background: #d8ffb2; background: rgba(138, 226, 52, 0.1); border-color: #abf562; border-color: rgba(138, 226, 52, 0.2); } div.blockquote { border-color: #eeeeec; } .note, .warning, div.blockquote { padding: 0.5em; border-width: 1px; border-style: solid; margin: 2em; } .note p, .warning p { margin: 0; } div.warning h3.title, div.note h3.title { display: none; } p + div.section { margin-top: 1em; } div.refnamediv, div.refsynopsisdiv, div.refsect1, div.refsect2, div.toc, div.section { margin-bottom: 1em; } /* blob links */ h2 .extralinks, h3 .extralinks { float: right; /* tango:aluminium 3 */ color: #babdb6; font-size: 80%; font-weight: normal; } .lineart { color: #d3d7cf; font-weight: normal; } .annotation { /* tango:aluminium 5 */ color: #555753; font-weight: normal; } .structfield { font-style: normal; font-weight: normal; } acronym,abbr { border-bottom: 1px dotted gray; } /* code listings */ .listing_code .programlisting .normal, .listing_code .programlisting .normal a, .listing_code .programlisting .number, .listing_code .programlisting .cbracket, .listing_code .programlisting .symbol { color: #555753; } .listing_code .programlisting .comment, .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */ .listing_code .programlisting .function, .listing_code .programlisting .function a, .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */ .listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */ .listing_code .programlisting .keyword, .listing_code .programlisting .usertype, .listing_code .programlisting .type, .listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */ .listing_frame { /* tango:sky blue 1 */ border: solid 1px #729fcf; border: solid 1px rgba(114, 159, 207, 0.2); padding: 0px; } .listing_lines, .listing_code { margin-top: 0px; margin-bottom: 0px; padding: 0.5em; } .listing_lines { /* tango:sky blue 0.5 */ background: #a6c5e3; background: rgba(114, 159, 207, 0.2); /* tango:aluminium 6 */ color: #2e3436; } .listing_code { /* tango:sky blue 0 */ background: #e6f3ff; background: rgba(114, 159, 207, 0.1); } .listing_code .programlisting { /* override from previous */ border: none 0px; padding: 0px; background: none; } .listing_lines pre, .listing_code pre { margin: 0px; } @media screen { /* these have a as a first child, but since there are no parent selectors * we can't use that. */ a.footnote { position: relative; top: 0em ! important; } /* this is needed so that the local anchors are displayed below the naviagtion */ div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name] { display: inline-block; position: relative; top:-5em; } /* this seems to be a bug in the xsl style sheets when generating indexes */ div.index div.index { top: 0em; } /* make space for the fixed navigation bar and add space at the bottom so that * link targets appear somewhat close to top */ body { padding-top: 2.5em; padding-bottom: 500px; max-width: 60em; } p { max-width: 60em; } /* style and size the navigation bar */ table.navigation#top { position: fixed; background: #e2e2e2; border-bottom: solid 1px #babdb6; border-spacing: 5px; margin-top: 0; margin-bottom: 0; top: 0; left: 0; z-index: 10; } table.navigation#top td { padding-left: 6px; padding-right: 6px; } .navigation a, .navigation a:visited { /* tango:sky blue 3 */ color: #204a87; } .navigation a:hover { /* tango:sky blue 2 */ color: #3465a4; } td.shortcuts { /* tango:sky blue 2 */ color: #3465a4; font-size: 80%; white-space: nowrap; } td.shortcuts .dim { color: #babdb6; } .navigation .title { font-size: 80%; max-width: none; margin: 0px; font-weight: normal; } } @media screen and (min-width: 60em) { /* screen larger than 60em */ body { margin: auto; } } @media screen and (max-width: 60em) { /* screen less than 60em */ #nav_hierarchy { display: none; } #nav_interfaces { display: none; } #nav_prerequisites { display: none; } #nav_derived_interfaces { display: none; } #nav_implementations { display: none; } #nav_child_properties { display: none; } #nav_style_properties { display: none; } #nav_index { display: none; } #nav_glossary { display: none; } .gallery_image { display: none; } .property_flags { display: none; } .signal_flags { display: none; } .parameter_annotations { display: none; } .enum_member_annotations { display: none; } .struct_member_annotations { display: none; } .union_member_annotations { display: none; } /* now that a column is hidden, optimize space */ col.parameters_name { width: auto; } col.parameters_description { width: auto; } col.struct_members_name { width: auto; } col.struct_members_description { width: auto; } col.enum_members_name { width: auto; } col.enum_members_description { width: auto; } col.union_members_name { width: auto; } col.union_members_description { width: auto; } .listing_lines { display: none; } } @media print { table.navigation { visibility: collapse; display: none; } div.titlepage table.navigation { visibility: visible; display: table; background: #e2e2e2; border: solid 1px #babdb6; margin-top: 0; margin-bottom: 0; top: 0; left: 0; height: 3em; } } realmd-0.17.1/doc/manual/static/style.css0000644003225100322510000000333414046520517020546 0ustar00sbosesbose00000000000000@import url("gtk-doc.css"); TABLE.navigation { background-color: #238b49 !important; border-width: 0 !important; color: white; font-family: Georgia, "Times New Roman", Times, serif; height: 4em !important; } TABLE.navigation TH { font-size: 30pt !important; font-weight: normal; text-align: left !important; padding-left: 10pt; } TABLE.navigation TH:first-child { padding-left: 40pt; } .shortcuts { color: white !important; } .shortcuts a { color: white !important; font-family: Verdana, Arial, 'Bitstream Vera Sans', Helvetica, sans-serif; } P.title { font-size: 30pt !important; } BODY { padding-top: 5.5em !important; margin: 0px; } /* Target all Firefox, since firefox has bug wrt TABLE + position: fixed */ @-moz-document url-prefix() { TABLE.navigation { position: static !important; } BODY { padding-top: 0 !important; } } DIV.book, DIV.refentry, DIV.chapter, DIV.index, DIV.footer, DIV.section, DIV.part { font-family: Verdana, Arial, 'Bitstream Vera Sans', Helvetica, sans-serif; font-size: 9.5pt; line-height: 150%; } BODY > DIV.book, BODY > DIV.footer, BODY > DIV.part { margin-left: 1em; margin-right: 1em; } BODY > DIV.refentry, BODY > DIV.chapter, BODY > DIV.index, BODY > DIV.section { margin-left: 3em; margin-right: 1em; } DIV.variablelist TABLE { font-size: 9.5pt; line-height: 150%; } DIV.refsect1, DIV.refsect2, DIV.refsynopsisdiv { margin-bottom: 3em !important; } H2 { position: relative; left: -1em; font-weight: normal !important; } H3 { position: relative; left: -1em; font-weight: normal !important; } DD > DL { margin-top: 0.3em; margin-bottom: 0.3em; } PRE.screen { border: solid 1px #729fcf; padding: 0.5em; background: #e6f3ff; } CODE.option { white-space: nowrap; } realmd-0.17.1/doc/manual/static/home.png0000644003225100322510000000121614046520517020327 0ustar00sbosesbose00000000000000‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ1õÚKvIDATxœÕ•±kqÅ?ßrC‡ßàpà ~C„np¼¡CAAJ .B-\'G‡]:Ü “‚ƒCÇ -(ˆ8´à Ô€!…fD°€…çÒ“klbRÛÁoyüxïûîËïwpðIJº<°of_®-@ÒððçRH•´ÏfÖŸtèÂü¤^¯×ÓÚÚš’$Q«ÕÒ|“ôpâ’¶€gív;X^^&Ïs¢(bww—Z­F£ÑÀ9Çææ&Þû3à¶™ Æ’^IRµZUE.0Z]]Uš¦ ÃPY–Mü8óHÒGIÚÙÙÑìììæeŸkqqñÒ€™!ó  $ÛÛÛ¬¯¯3Œn eýþ{-/seeeìÔÃŒãXóóóåO‡Í·$ý8==UÇS™—é½×ÑÑQòRR€¤'ã–9-sÚÛÛ+B^ éC·Û•sîŸÍËÂ+%À°<7³ŸWô˜¿ õâ:™2IEND®B`‚realmd-0.17.1/doc/manual/devhelp2.xsl0000644003225100322510000001546614046520517017657 0ustar00sbosesbose00000000000000 book .devhelp2 , realmd-0.17.1/doc/version.xml.in0000644003225100322510000000001114046520517016731 0ustar00sbosesbose00000000000000@VERSION@realmd-0.17.1/configure0000755003225100322510000127012414315276772015310 0ustar00sbosesbose00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.71 for realmd 0.17.1. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation, # Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh as_nop=: if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi # Reset variables that may have inherited troublesome values from # the environment. # IFS needs to be set, to space, tab, and newline, in precisely that order. # (If _AS_PATH_WALK were called with IFS unset, it would have the # side effect of setting IFS to empty, thus disabling word splitting.) # Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl IFS=" "" $as_nl" PS1='$ ' PS2='> ' PS4='+ ' # Ensure predictable behavior from utilities with locale-dependent output. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # We cannot yet rely on "unset" to work, but we need these variables # to be unset--not just set to an empty or harmless value--now, to # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct # also avoids known problems related to "unset" and subshell syntax # in other old shells (e.g. bash 2.01 and pdksh 5.2.14). for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH do eval test \${$as_var+y} \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done # Ensure that fds 0, 1, and 2 are open. if (exec 3>&0) 2>/dev/null; then :; else exec 0&1) 2>/dev/null; then :; else exec 1>/dev/null; fi if (exec 3>&2) ; then :; else exec 2>/dev/null; fi # The user is always right. if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="as_nop=: if test \${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else \$as_nop case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ) then : else \$as_nop exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 blah=\$(echo \$(echo blah)) test x\"\$blah\" = xblah || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null then : as_have_required=yes else $as_nop as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null then : else $as_nop as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && as_run=a "$as_shell" -c "$as_bourne_compatible""$as_required" 2>/dev/null then : CONFIG_SHELL=$as_shell as_have_required=yes if as_run=a "$as_shell" -c "$as_bourne_compatible""$as_suggested" 2>/dev/null then : break 2 fi fi done;; esac as_found=false done IFS=$as_save_IFS if $as_found then : else $as_nop if { test -f "$SHELL" || test -f "$SHELL.exe"; } && as_run=a "$SHELL" -c "$as_bourne_compatible""$as_required" 2>/dev/null then : CONFIG_SHELL=$SHELL as_have_required=yes fi fi if test "x$CONFIG_SHELL" != x then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno then : printf "%s\n" "$0: This script requires a shell more modern than all" printf "%s\n" "$0: the shells that I found on your system." if test ${ZSH_VERSION+y} ; then printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should" printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later." else printf "%s\n" "$0: Please tell bug-autoconf@gnu.org and $0: https://gitlab.freedesktop.org/realmd/realmd/-/issues $0: about your system, including any error possibly output $0: before this message. Then install a modern shell, or $0: manually run the script under such a shell if you do $0: have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_nop # --------- # Do nothing but, unlike ":", preserve the value of $?. as_fn_nop () { return $? } as_nop=as_fn_nop # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null then : eval 'as_fn_append () { eval $1+=\$2 }' else $as_nop as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null then : eval 'as_fn_arith () { as_val=$(( $* )) }' else $as_nop as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_nop # --------- # Do nothing but, unlike ":", preserve the value of $?. as_fn_nop () { return $? } as_nop=as_fn_nop # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } # Determine whether it's possible to make 'echo' print without a newline. # These variables are no longer used directly by Autoconf, but are AC_SUBSTed # for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac # For backward compatibility with old third-party macros, we provide # the shell variables $as_echo and $as_echo_n. New code should use # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. as_echo='printf %s\n' as_echo_n='printf %s' rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='realmd' PACKAGE_TARNAME='realmd' PACKAGE_VERSION='0.17.1' PACKAGE_STRING='realmd 0.17.1' PACKAGE_BUGREPORT='https://gitlab.freedesktop.org/realmd/realmd/-/issues' PACKAGE_URL='' ac_unique_file="service/realm-daemon.c" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_STDIO_H # include #endif #ifdef HAVE_STDLIB_H # include #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_header_c_list= gt_needs= ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS cachedir privatedir TEST_MODE WITH_COVERAGE_FALSE WITH_COVERAGE_TRUE GENHTML LCOV GCOV ENABLE_DOC_FALSE ENABLE_DOC_TRUE XMLTO XSLTPROC POLKIT_ACTION_DIR DBUS_POLICY_DIR DBUS_SERVICES_DIR SAMBA_NET LDAP_CFLAGS LDAP_LIBS KRB5_LIBS KRB5_CFLAGS KRB5_CONFIG SYSTEMD_JOURNAL_LIBS SYSTEMD_JOURNAL_CFLAGS dbus_systemd_service WITH_SYSTEMD_FALSE WITH_SYSTEMD_TRUE SYSTEMD_UNIT_DIR POLKIT_LIBS POLKIT_CFLAGS GLIB_LIBS GLIB_CFLAGS GETTEXT_PACKAGE POSUB LTLIBINTL LIBINTL INTLLIBS LTLIBICONV LIBICONV INTL_MACOSX_LIBS EGREP GREP host_os host_vendor host_cpu host build_os build_vendor build_cpu build XGETTEXT_EXTRA_OPTIONS MSGMERGE XGETTEXT_015 XGETTEXT GMSGFMT_015 MSGFMT_015 GMSGFMT MSGFMT GETTEXT_MACRO_VERSION USE_NLS SED PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG RANLIB LN_S CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC DISTRO MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V CSCOPE ETAGS CTAGS am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_maintainer_mode with_distro with_vendor_error_message enable_dependency_tracking enable_nls with_gnu_ld enable_rpath with_libiconv_prefix with_libintl_prefix with_systemd_unit_dir with_systemd_journal with_new_samba_cli_options enable_doc enable_coverage enable_debug enable_strict with_private_dir ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR GLIB_CFLAGS GLIB_LIBS POLKIT_CFLAGS POLKIT_LIBS SYSTEMD_JOURNAL_CFLAGS SYSTEMD_JOURNAL_LIBS KRB5_CFLAGS KRB5_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && printf "%s\n" "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures realmd 0.17.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/realmd] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of realmd 0.17.1:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --disable-maintainer-mode disable make rules and dependencies not useful (and sometimes confusing) to the casual installer --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --disable-nls do not use Native Language Support --disable-rpath do not hardcode runtime library paths --enable-doc Disable building documentation --enable-coverage Whether to enable coverage testing --enable-debug=no/default/yes Turn on or off debugging --enable-strict Strict code compilation Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-distro Configure for a specific distribution (eg: redhat) --with-vendor-error-message=ARG Add a vendor specific error message shown if a realm command fails --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib --without-libiconv-prefix don't search for libiconv in includedir and libdir --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib --without-libintl-prefix don't search for libintl in includedir and libdir --with-systemd-unit-dir Directory to install systemd service file --with-systemd-journal Use systemd's journal for logging --with-new-samba-cli-options=yes/no Use new command line options introduced with Samba-4.15, if not provided the output of 'net help' is checked or old style options are used --with-private-dir=DIR Directory to install realmd system defaults (default: ${prefix}/lib/realmd) Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path GLIB_CFLAGS C compiler flags for GLIB, overriding pkg-config GLIB_LIBS linker flags for GLIB, overriding pkg-config POLKIT_CFLAGS C compiler flags for POLKIT, overriding pkg-config POLKIT_LIBS linker flags for POLKIT, overriding pkg-config SYSTEMD_JOURNAL_CFLAGS C compiler flags for SYSTEMD_JOURNAL, overriding pkg-config SYSTEMD_JOURNAL_LIBS linker flags for SYSTEMD_JOURNAL, overriding pkg-config KRB5_CFLAGS C compiler flags for kerberos, overriding krb5-config KRB5_LIBS linker flags for kerberos, overriding krb5-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for configure.gnu first; this name is used for a wrapper for # Metaconfig's "Configure" on case-insensitive file systems. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else printf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF realmd configure 0.17.1 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext then : ac_retval=0 else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 printf %s "checking for $2... " >&6; } if eval test \${$3+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO" then : eval "$3=yes" else $as_nop eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=\$$3 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err } then : ac_retval=0 else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext } then : ac_retval=0 else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_try_run LINENO # ---------------------- # Try to run conftest.$ac_ext, and return whether this succeeded. Assumes that # executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; } then : ac_retval=0 else $as_nop printf "%s\n" "$as_me: program exited with status $ac_status" >&5 printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run ac_configure_args_raw= for ac_arg do case $ac_arg in *\'*) ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append ac_configure_args_raw " '$ac_arg'" done case $ac_configure_args_raw in *$as_nl*) ac_safe_unquote= ;; *) ac_unsafe_z='|&;<>()$`\\"*?[ '' ' # This string ends in space, tab. ac_unsafe_a="$ac_unsafe_z#~" ac_safe_unquote="s/ '\\([^$ac_unsafe_a][^$ac_unsafe_z]*\\)'/ \\1/g" ac_configure_args_raw=` printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;; esac cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by realmd $as_me 0.17.1, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac printf "%s\n" "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Sanitize IFS. IFS=" "" $as_nl" # Save into config.log some information that might help in debugging. { echo printf "%s\n" "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo printf "%s\n" "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac printf "%s\n" "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then printf "%s\n" "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac printf "%s\n" "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then printf "%s\n" "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && printf "%s\n" "$as_me: caught signal $ac_signal" printf "%s\n" "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h printf "%s\n" "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. printf "%s\n" "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h printf "%s\n" "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h printf "%s\n" "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h printf "%s\n" "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h printf "%s\n" "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h printf "%s\n" "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. if test -n "$CONFIG_SITE"; then ac_site_files="$CONFIG_SITE" elif test "x$prefix" != xNONE; then ac_site_files="$prefix/share/config.site $prefix/etc/config.site" else ac_site_files="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi for ac_site_file in $ac_site_files do case $ac_site_file in #( */*) : ;; #( *) : ac_site_file=./$ac_site_file ;; esac if test -f "$ac_site_file" && test -r "$ac_site_file"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 printf "%s\n" "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 printf "%s\n" "$as_me: creating cache $cache_file" >&6;} >$cache_file fi as_fn_append ac_header_c_list " stdio.h stdio_h HAVE_STDIO_H" # Test code for whether the C compiler supports C89 (global declarations) ac_c_conftest_c89_globals=' /* Does the compiler advertise C89 conformance? Do not test the value of __STDC__, because some compilers set it to 0 while being otherwise adequately conformant. */ #if !defined __STDC__ # error "Compiler does not advertise C89 conformance" #endif #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7 src/conf.sh. */ struct buf { int x; }; struct buf * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not \xHH hex character constants. These do not provoke an error unfortunately, instead are silently treated as an "x". The following induces an error, until -std is added to get proper ANSI mode. Curiously \x00 != x always comes out true, for an array size at least. It is necessary to write \x00 == 0 to get something that is true only with -std. */ int osf4_cc_array ['\''\x00'\'' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) '\''x'\'' int xlc6_cc_array[FOO(a) == '\''x'\'' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, int *(*)(struct buf *, struct stat *, int), int, int);' # Test code for whether the C compiler supports C89 (body of main). ac_c_conftest_c89_main=' ok |= (argc == 0 || f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]); ' # Test code for whether the C compiler supports C99 (global declarations) ac_c_conftest_c99_globals=' // Does the compiler advertise C99 conformance? #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L # error "Compiler does not advertise C99 conformance" #endif #include extern int puts (const char *); extern int printf (const char *, ...); extern int dprintf (int, const char *, ...); extern void *malloc (size_t); // Check varargs macros. These examples are taken from C99 6.10.3.5. // dprintf is used instead of fprintf to avoid needing to declare // FILE and stderr. #define debug(...) dprintf (2, __VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) static void test_varargs_macros (void) { int x = 1234; int y = 5678; debug ("Flag"); debug ("X = %d\n", x); showlist (The first, second, and third items.); report (x>y, "x is %d but y is %d", x, y); } // Check long long types. #define BIG64 18446744073709551615ull #define BIG32 4294967295ul #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) #if !BIG_OK #error "your preprocessor is broken" #endif #if BIG_OK #else #error "your preprocessor is broken" #endif static long long int bignum = -9223372036854775807LL; static unsigned long long int ubignum = BIG64; struct incomplete_array { int datasize; double data[]; }; struct named_init { int number; const wchar_t *name; double average; }; typedef const char *ccp; static inline int test_restrict (ccp restrict text) { // See if C++-style comments work. // Iterate through items via the restricted pointer. // Also check for declarations in for loops. for (unsigned int i = 0; *(text+i) != '\''\0'\''; ++i) continue; return 0; } // Check varargs and va_copy. static bool test_varargs (const char *format, ...) { va_list args; va_start (args, format); va_list args_copy; va_copy (args_copy, args); const char *str = ""; int number = 0; float fnumber = 0; while (*format) { switch (*format++) { case '\''s'\'': // string str = va_arg (args_copy, const char *); break; case '\''d'\'': // int number = va_arg (args_copy, int); break; case '\''f'\'': // float fnumber = va_arg (args_copy, double); break; default: break; } } va_end (args_copy); va_end (args); return *str && number && fnumber; } ' # Test code for whether the C compiler supports C99 (body of main). ac_c_conftest_c99_main=' // Check bool. _Bool success = false; success |= (argc != 0); // Check restrict. if (test_restrict ("String literal") == 0) success = true; char *restrict newvar = "Another string"; // Check varargs. success &= test_varargs ("s, d'\'' f .", "string", 65, 34.234); test_varargs_macros (); // Check flexible array members. struct incomplete_array *ia = malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); ia->datasize = 10; for (int i = 0; i < ia->datasize; ++i) ia->data[i] = i * 1.234; // Check named initializers. struct named_init ni = { .number = 34, .name = L"Test wide string", .average = 543.34343, }; ni.number = 58; int dynamic_array[ni.number]; dynamic_array[0] = argv[0][0]; dynamic_array[ni.number - 1] = 543; // work around unused variable warnings ok |= (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == '\''x'\'' || dynamic_array[ni.number - 1] != 543); ' # Test code for whether the C compiler supports C11 (global declarations) ac_c_conftest_c11_globals=' // Does the compiler advertise C11 conformance? #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L # error "Compiler does not advertise C11 conformance" #endif // Check _Alignas. char _Alignas (double) aligned_as_double; char _Alignas (0) no_special_alignment; extern char aligned_as_int; char _Alignas (0) _Alignas (int) aligned_as_int; // Check _Alignof. enum { int_alignment = _Alignof (int), int_array_alignment = _Alignof (int[100]), char_alignment = _Alignof (char) }; _Static_assert (0 < -_Alignof (int), "_Alignof is signed"); // Check _Noreturn. int _Noreturn does_not_return (void) { for (;;) continue; } // Check _Static_assert. struct test_static_assert { int x; _Static_assert (sizeof (int) <= sizeof (long int), "_Static_assert does not work in struct"); long int y; }; // Check UTF-8 literals. #define u8 syntax error! char const utf8_literal[] = u8"happens to be ASCII" "another string"; // Check duplicate typedefs. typedef long *long_ptr; typedef long int *long_ptr; typedef long_ptr long_ptr; // Anonymous structures and unions -- taken from C11 6.7.2.1 Example 1. struct anonymous { union { struct { int i; int j; }; struct { int k; long int l; } w; }; int m; } v1; ' # Test code for whether the C compiler supports C11 (body of main). ac_c_conftest_c11_main=' _Static_assert ((offsetof (struct anonymous, i) == offsetof (struct anonymous, w.k)), "Anonymous union alignment botch"); v1.i = 2; v1.w.k = 5; ok |= v1.i != 5; ' # Test code for whether the C compiler supports C11 (complete). ac_c_conftest_c11_program="${ac_c_conftest_c89_globals} ${ac_c_conftest_c99_globals} ${ac_c_conftest_c11_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} ${ac_c_conftest_c99_main} ${ac_c_conftest_c11_main} return ok; } " # Test code for whether the C compiler supports C99 (complete). ac_c_conftest_c99_program="${ac_c_conftest_c89_globals} ${ac_c_conftest_c99_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} ${ac_c_conftest_c99_main} return ok; } " # Test code for whether the C compiler supports C89 (complete). ac_c_conftest_c89_program="${ac_c_conftest_c89_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} return ok; } " as_fn_append ac_header_c_list " stdlib.h stdlib_h HAVE_STDLIB_H" as_fn_append ac_header_c_list " string.h string_h HAVE_STRING_H" as_fn_append ac_header_c_list " inttypes.h inttypes_h HAVE_INTTYPES_H" as_fn_append ac_header_c_list " stdint.h stdint_h HAVE_STDINT_H" as_fn_append ac_header_c_list " strings.h strings_h HAVE_STRINGS_H" as_fn_append ac_header_c_list " sys/stat.h sys_stat_h HAVE_SYS_STAT_H" as_fn_append ac_header_c_list " sys/types.h sys_types_h HAVE_SYS_TYPES_H" as_fn_append ac_header_c_list " unistd.h unistd_h HAVE_UNISTD_H" as_fn_append ac_header_c_list " wchar.h wchar_h HAVE_WCHAR_H" as_fn_append ac_header_c_list " minix/config.h minix_config_h HAVE_MINIX_CONFIG_H" gt_needs="$gt_needs " # Auxiliary files required by this configure script. ac_aux_files="config.guess config.sub config.rpath compile missing install-sh" # Locations in which to look for auxiliary files. ac_aux_dir_candidates="${srcdir}/build" # Search for a directory containing all of the required auxiliary files, # $ac_aux_files, from the $PATH-style list $ac_aux_dir_candidates. # If we don't find one directory that contains all the files we need, # we report the set of missing files from the *first* directory in # $ac_aux_dir_candidates and give up. ac_missing_aux_files="" ac_first_candidate=: printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in $ac_aux_dir_candidates do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac as_found=: printf "%s\n" "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5 ac_aux_dir_found=yes ac_install_sh= for ac_aux in $ac_aux_files do # As a special case, if "install-sh" is required, that requirement # can be satisfied by any of "install-sh", "install.sh", or "shtool", # and $ac_install_sh is set appropriately for whichever one is found. if test x"$ac_aux" = x"install-sh" then if test -f "${as_dir}install-sh"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5 ac_install_sh="${as_dir}install-sh -c" elif test -f "${as_dir}install.sh"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5 ac_install_sh="${as_dir}install.sh -c" elif test -f "${as_dir}shtool"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5 ac_install_sh="${as_dir}shtool install -c" else ac_aux_dir_found=no if $ac_first_candidate; then ac_missing_aux_files="${ac_missing_aux_files} install-sh" else break fi fi else if test -f "${as_dir}${ac_aux}"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5 else ac_aux_dir_found=no if $ac_first_candidate; then ac_missing_aux_files="${ac_missing_aux_files} ${ac_aux}" else break fi fi fi done if test "$ac_aux_dir_found" = yes; then ac_aux_dir="$as_dir" break fi ac_first_candidate=false as_found=false done IFS=$as_save_IFS if $as_found then : else $as_nop as_fn_error $? "cannot find required auxiliary files:$ac_missing_aux_files" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. if test -f "${ac_aux_dir}config.guess"; then ac_config_guess="$SHELL ${ac_aux_dir}config.guess" fi if test -f "${ac_aux_dir}config.sub"; then ac_config_sub="$SHELL ${ac_aux_dir}config.sub" fi if test -f "$ac_aux_dir/configure"; then ac_configure="$SHELL ${ac_aux_dir}configure" fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 printf "%s\n" "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 printf "%s\n" "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 printf "%s\n" "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 printf "%s\n" "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 printf "%s\n" "$as_me: former value: \`$ac_old_val'" >&2;} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 printf "%s\n" "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`printf "%s\n" "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`${MAKE-make} distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # ----------------------------------------------------------------------------- # Versions GLIB_REQ=2.36.0 GLIB_MIN=GLIB_VERSION_2_36 GLIB_MAX=GLIB_VERSION_2_36 # ----------------------------------------------------------------------------- am__api_version='1.16' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 printf %s "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if test ${ac_cv_path_install+y} then : printf %s "(cached) " >&6 else $as_nop as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac # Account for fact that we put trailing slashes in our PATH walk. case $as_dir in #(( ./ | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir/" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test ${ac_cv_path_install+y}; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 printf "%s\n" "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 printf %s "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`printf "%s\n" "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 printf "%s\n" "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_STRIP+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 printf "%s\n" "$STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_STRIP+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 printf "%s\n" "$ac_ct_STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a race-free mkdir -p" >&5 printf %s "checking for a race-free mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if test ${ac_cv_path_mkdir+y} then : printf %s "(cached) " >&6 else $as_nop as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext" || continue case `"$as_dir$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir ('*'coreutils) '* | \ 'BusyBox '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test ${ac_cv_path_mkdir+y}; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 printf "%s\n" "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_AWK+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 printf "%s\n" "$AWK" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$AWK" && break done { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 printf %s "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`printf "%s\n" "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval test \${ac_cv_prog_make_${ac_make}_set+y} then : printf %s "(cached) " >&6 else $as_nop cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } SET_MAKE= else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test ${enable_silent_rules+y} then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 printf %s "checking whether $am_make supports nested variables... " >&6; } if test ${am_cv_make_support_nested_variables+y} then : printf %s "(cached) " >&6 else $as_nop if printf "%s\n" 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 printf "%s\n" "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='realmd' VERSION='0.17.1' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h printf "%s\n" "#define VERSION \"$VERSION\"" >>confdefs.h # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar plaintar pax cpio none' # The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether UID '$am_uid' is supported by ustar format" >&5 printf %s "checking whether UID '$am_uid' is supported by ustar format... " >&6; } if test $am_uid -le $am_max_uid; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } _am_tools=none fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether GID '$am_gid' is supported by ustar format" >&5 printf %s "checking whether GID '$am_gid' is supported by ustar format... " >&6; } if test $am_gid -le $am_max_gid; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } _am_tools=none fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5 printf %s "checking how to create a ustar tar archive... " >&6; } # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_ustar-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do { echo "$as_me:$LINENO: $_am_tar --version" >&5 ($_am_tar --version) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && break done am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"' am__tar_="$_am_tar --format=ustar -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x ustar -w "$$tardir"' am__tar_='pax -L -x ustar -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H ustar -L' am__tar_='find "$tardir" -print | cpio -o -H ustar -L' am__untar='cpio -i -H ustar -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_ustar}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5 (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } rm -rf conftest.dir if test -s conftest.tar; then { echo "$as_me:$LINENO: $am__untar &5 ($am__untar &5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { echo "$as_me:$LINENO: cat conftest.dir/file" >&5 (cat conftest.dir/file) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } grep GrepMe conftest.dir/file >/dev/null 2>&1 && break fi done rm -rf conftest.dir if test ${am_cv_prog_tar_ustar+y} then : printf %s "(cached) " >&6 else $as_nop am_cv_prog_tar_ustar=$_am_tool fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5 printf "%s\n" "$am_cv_prog_tar_ustar" >&6; } # Variables for tags utilities; see am/tags.am if test -z "$CTAGS"; then CTAGS=ctags fi if test -z "$ETAGS"; then ETAGS=etags fi if test -z "$CSCOPE"; then CSCOPE=cscope fi # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 printf %s "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file ac_config_headers="$ac_config_headers config.h" # Check whether --enable-silent-rules was given. if test ${enable_silent_rules+y} then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=0;; esac am_make=${MAKE-make} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 printf %s "checking whether $am_make supports nested variables... " >&6; } if test ${am_cv_make_support_nested_variables+y} then : printf %s "(cached) " >&6 else $as_nop if printf "%s\n" 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 printf "%s\n" "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 printf %s "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test ${enable_maintainer_mode+y} then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else $as_nop USE_MAINTAINER_MODE=yes fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 printf "%s\n" "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE # ----------------------------------------------------------------------------- # Distro Detection # Check whether --with-distro was given. if test ${with_distro+y} then : withval=$with_distro; DISTRO=$withval else $as_nop DISTRO= fi if test -z $DISTRO; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for /etc/redhat-release" >&5 printf %s "checking for /etc/redhat-release... " >&6; } if test ${ac_cv_file__etc_redhat_release+y} then : printf %s "(cached) " >&6 else $as_nop test "$cross_compiling" = yes && as_fn_error $? "cannot check for file existence when cross compiling" "$LINENO" 5 if test -r "/etc/redhat-release"; then ac_cv_file__etc_redhat_release=yes else ac_cv_file__etc_redhat_release=no fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_file__etc_redhat_release" >&5 printf "%s\n" "$ac_cv_file__etc_redhat_release" >&6; } if test "x$ac_cv_file__etc_redhat_release" = xyes then : DISTRO="redhat" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for /etc/debian_version" >&5 printf %s "checking for /etc/debian_version... " >&6; } if test ${ac_cv_file__etc_debian_version+y} then : printf %s "(cached) " >&6 else $as_nop test "$cross_compiling" = yes && as_fn_error $? "cannot check for file existence when cross compiling" "$LINENO" 5 if test -r "/etc/debian_version"; then ac_cv_file__etc_debian_version=yes else ac_cv_file__etc_debian_version=no fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_file__etc_debian_version" >&5 printf "%s\n" "$ac_cv_file__etc_debian_version" >&6; } if test "x$ac_cv_file__etc_debian_version" = xyes then : DISTRO="debian" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for /etc/SuSE-release" >&5 printf %s "checking for /etc/SuSE-release... " >&6; } if test ${ac_cv_file__etc_SuSE_release+y} then : printf %s "(cached) " >&6 else $as_nop test "$cross_compiling" = yes && as_fn_error $? "cannot check for file existence when cross compiling" "$LINENO" 5 if test -r "/etc/SuSE-release"; then ac_cv_file__etc_SuSE_release=yes else ac_cv_file__etc_SuSE_release=no fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_file__etc_SuSE_release" >&5 printf "%s\n" "$ac_cv_file__etc_SuSE_release" >&6; } if test "x$ac_cv_file__etc_SuSE_release" = xyes then : DISTRO="suse" fi # Not customized for these yet fi if test -z $DISTRO; then as_fn_error $? "Couldn't detect the distro to configure for. Specify one with --with-distro" "$LINENO" 5 fi # ----------------------------------------------------------------------------- # Vendor error message # Check whether --with-vendor-error-message was given. if test ${with_vendor_error_message+y} then : withval=$with_vendor_error_message; if test "x$withval" != "x" then : printf "%s\n" "#define VENDOR_MSG \"$withval\"" >>confdefs.h else $as_nop as_fn_error $? "--with-vendor-error-message requires an argument" "$LINENO" 5 fi fi # ----------------------------------------------------------------------------- # Basic tools DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 printf %s "checking whether ${MAKE-make} supports the include directive... " >&6; } cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } case $?:`cat confinc.out 2>/dev/null` in #( '0:this is the am__doit target') : case $s in #( BSD) : am__include='.include' am__quote='"' ;; #( *) : am__include='include' am__quote='' ;; esac ;; #( *) : ;; esac if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 printf "%s\n" "${_am_result}" >&6; } # Check whether --enable-dependency-tracking was given. if test ${enable_dependency_tracking+y} then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if test "$as_dir$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args. set dummy ${ac_tool_prefix}clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "clang", so it can be a program name with args. set dummy clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi fi test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion -version; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 printf %s "checking whether the C compiler works... " >&6; } ac_link_default=`printf "%s\n" "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test ${ac_cv_exeext+y} && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else $as_nop ac_file='' fi if test -z "$ac_file" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 printf %s "checking for C compiler default output file name... " >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 printf "%s\n" "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 printf %s "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else $as_nop { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 printf "%s\n" "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 printf %s "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 printf "%s\n" "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 printf %s "checking for suffix of object files... " >&6; } if test ${ac_cv_objext+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 printf "%s\n" "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5 printf %s "checking whether the compiler supports GNU C... " >&6; } if test ${ac_cv_c_compiler_gnu+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_compiler_gnu=yes else $as_nop ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; } ac_compiler_gnu=$ac_cv_c_compiler_gnu if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+y} ac_save_CFLAGS=$CFLAGS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 printf %s "checking whether $CC accepts -g... " >&6; } if test ${ac_cv_prog_cc_g+y} then : printf %s "(cached) " >&6 else $as_nop ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes else $as_nop CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else $as_nop ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 printf "%s\n" "$ac_cv_prog_cc_g" >&6; } if test $ac_test_CFLAGS; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi ac_prog_cc_stdc=no if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5 printf %s "checking for $CC option to enable C11 features... " >&6; } if test ${ac_cv_prog_cc_c11+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c11=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c11_program _ACEOF for ac_arg in '' -std=gnu11 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c11=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c11" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c11" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c11" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5 printf "%s\n" "$ac_cv_prog_cc_c11" >&6; } CC="$CC $ac_cv_prog_cc_c11" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c11 ac_prog_cc_stdc=c11 fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5 printf %s "checking for $CC option to enable C99 features... " >&6; } if test ${ac_cv_prog_cc_c99+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c99_program _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -qlanglvl=extc1x -qlanglvl=extc99 -AC99 -D_STDC_C99= do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c99" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c99" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 printf "%s\n" "$ac_cv_prog_cc_c99" >&6; } CC="$CC $ac_cv_prog_cc_c99" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99 ac_prog_cc_stdc=c99 fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5 printf %s "checking for $CC option to enable C89 features... " >&6; } if test ${ac_cv_prog_cc_c89+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c89_program _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c89" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c89" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 printf "%s\n" "$ac_cv_prog_cc_c89" >&6; } CC="$CC $ac_cv_prog_cc_c89" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89 ac_prog_cc_stdc=c89 fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 printf %s "checking whether $CC understands -c and -o together... " >&6; } if test ${am_cv_prog_cc_c_o+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 printf "%s\n" "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 printf %s "checking dependency style of $depcc... " >&6; } if test ${am_cv_CC_dependencies_compiler_type+y} then : printf %s "(cached) " >&6 else $as_nop if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 printf "%s\n" "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_header= ac_cache= for ac_item in $ac_header_c_list do if test $ac_cache; then ac_fn_c_check_header_compile "$LINENO" $ac_header ac_cv_header_$ac_cache "$ac_includes_default" if eval test \"x\$ac_cv_header_$ac_cache\" = xyes; then printf "%s\n" "#define $ac_item 1" >> confdefs.h fi ac_header= ac_cache= elif test $ac_header; then ac_cache=$ac_item else ac_header=$ac_item fi done if test $ac_cv_header_stdlib_h = yes && test $ac_cv_header_string_h = yes then : printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 printf %s "checking whether it is safe to define __EXTENSIONS__... " >&6; } if test ${ac_cv_safe_to_define___extensions__+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # define __EXTENSIONS__ 1 $ac_includes_default int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_safe_to_define___extensions__=yes else $as_nop ac_cv_safe_to_define___extensions__=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 printf "%s\n" "$ac_cv_safe_to_define___extensions__" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether _XOPEN_SOURCE should be defined" >&5 printf %s "checking whether _XOPEN_SOURCE should be defined... " >&6; } if test ${ac_cv_should_define__xopen_source+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_should_define__xopen_source=no if test $ac_cv_header_wchar_h = yes then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include mbstate_t x; int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _XOPEN_SOURCE 500 #include mbstate_t x; int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_should_define__xopen_source=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_should_define__xopen_source" >&5 printf "%s\n" "$ac_cv_should_define__xopen_source" >&6; } printf "%s\n" "#define _ALL_SOURCE 1" >>confdefs.h printf "%s\n" "#define _DARWIN_C_SOURCE 1" >>confdefs.h printf "%s\n" "#define _GNU_SOURCE 1" >>confdefs.h printf "%s\n" "#define _HPUX_ALT_XOPEN_SOCKET_API 1" >>confdefs.h printf "%s\n" "#define _NETBSD_SOURCE 1" >>confdefs.h printf "%s\n" "#define _OPENBSD_SOURCE 1" >>confdefs.h printf "%s\n" "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_BFP_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_DFP_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_TYPES_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_LIB_EXT2__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_MATH_SPEC_FUNCS__ 1" >>confdefs.h printf "%s\n" "#define _TANDEM_SOURCE 1" >>confdefs.h if test $ac_cv_header_minix_config_h = yes then : MINIX=yes printf "%s\n" "#define _MINIX 1" >>confdefs.h printf "%s\n" "#define _POSIX_SOURCE 1" >>confdefs.h printf "%s\n" "#define _POSIX_1_SOURCE 2" >>confdefs.h else $as_nop MINIX= fi if test $ac_cv_safe_to_define___extensions__ = yes then : printf "%s\n" "#define __EXTENSIONS__ 1" >>confdefs.h fi if test $ac_cv_should_define__xopen_source = yes then : printf "%s\n" "#define _XOPEN_SOURCE 500" >>confdefs.h fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if test "$as_dir$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args. set dummy ${ac_tool_prefix}clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "clang", so it can be a program name with args. set dummy clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi fi test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion -version; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5 printf %s "checking whether the compiler supports GNU C... " >&6; } if test ${ac_cv_c_compiler_gnu+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_compiler_gnu=yes else $as_nop ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; } ac_compiler_gnu=$ac_cv_c_compiler_gnu if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+y} ac_save_CFLAGS=$CFLAGS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 printf %s "checking whether $CC accepts -g... " >&6; } if test ${ac_cv_prog_cc_g+y} then : printf %s "(cached) " >&6 else $as_nop ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes else $as_nop CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else $as_nop ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 printf "%s\n" "$ac_cv_prog_cc_g" >&6; } if test $ac_test_CFLAGS; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi ac_prog_cc_stdc=no if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5 printf %s "checking for $CC option to enable C11 features... " >&6; } if test ${ac_cv_prog_cc_c11+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c11=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c11_program _ACEOF for ac_arg in '' -std=gnu11 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c11=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c11" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c11" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c11" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5 printf "%s\n" "$ac_cv_prog_cc_c11" >&6; } CC="$CC $ac_cv_prog_cc_c11" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c11 ac_prog_cc_stdc=c11 fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5 printf %s "checking for $CC option to enable C99 features... " >&6; } if test ${ac_cv_prog_cc_c99+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c99_program _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -qlanglvl=extc1x -qlanglvl=extc99 -AC99 -D_STDC_C99= do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c99" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c99" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 printf "%s\n" "$ac_cv_prog_cc_c99" >&6; } CC="$CC $ac_cv_prog_cc_c99" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99 ac_prog_cc_stdc=c99 fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5 printf %s "checking for $CC option to enable C89 features... " >&6; } if test ${ac_cv_prog_cc_c89+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c89_program _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c89" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c89" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 printf "%s\n" "$ac_cv_prog_cc_c89" >&6; } CC="$CC $ac_cv_prog_cc_c89" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89 ac_prog_cc_stdc=c89 fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 printf %s "checking whether $CC understands -c and -o together... " >&6; } if test ${am_cv_prog_cc_c_o+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 printf "%s\n" "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 printf %s "checking dependency style of $depcc... " >&6; } if test ${am_cv_CC_dependencies_compiler_type+y} then : printf %s "(cached) " >&6 else $as_nop if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 printf "%s\n" "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 printf %s "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if test ${ac_cv_prog_CPP+y} then : printf %s "(cached) " >&6 else $as_nop # Double quotes because $CC needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" cpp /lib/cpp do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO" then : else $as_nop # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO" then : # Broken: success on invalid input. continue else $as_nop # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 printf "%s\n" "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO" then : else $as_nop # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO" then : # Broken: success on invalid input. continue else $as_nop # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok then : else $as_nop { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 printf %s "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 printf "%s\n" "no, using $LN_S" >&6; } fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 printf %s "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`printf "%s\n" "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval test \${ac_cv_prog_make_${ac_make}_set+y} then : printf %s "(cached) " >&6 else $as_nop cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } SET_MAKE= else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_RANLIB+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 printf "%s\n" "$RANLIB" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_RANLIB+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 printf "%s\n" "$ac_ct_RANLIB" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_PKG_CONFIG+y} then : printf %s "(cached) " >&6 else $as_nop case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 printf "%s\n" "$PKG_CONFIG" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_ac_pt_PKG_CONFIG+y} then : printf %s "(cached) " >&6 else $as_nop case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 printf "%s\n" "$ac_pt_PKG_CONFIG" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 printf %s "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } PKG_CONFIG="" fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 printf %s "checking for a sed that does not truncate output... " >&6; } if test ${ac_cv_path_SED+y} then : printf %s "(cached) " >&6 else $as_nop ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in sed gsed do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 printf "%s\n" "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 printf %s "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test ${enable_nls+y} then : enableval=$enable_nls; USE_NLS=$enableval else $as_nop USE_NLS=yes fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 printf "%s\n" "$USE_NLS" >&6; } GETTEXT_MACRO_VERSION=0.19 # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_MSGFMT+y} then : printf %s "(cached) " >&6 else $as_nop case "$MSGFMT" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 printf "%s\n" "$MSGFMT" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_GMSGFMT+y} then : printf %s "(cached) " >&6 else $as_nop case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_GMSGFMT="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 printf "%s\n" "$GMSGFMT" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_XGETTEXT+y} then : printf %s "(cached) " >&6 else $as_nop case "$XGETTEXT" in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 printf "%s\n" "$XGETTEXT" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi rm -f messages.po case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_MSGMERGE+y} then : printf %s "(cached) " >&6 else $as_nop case "$MSGMERGE" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" ;; esac fi MSGMERGE="$ac_cv_path_MSGMERGE" if test "$MSGMERGE" != ":"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 printf "%s\n" "$MSGMERGE" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$localedir" || localedir='${datadir}/locale' test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= ac_config_commands="$ac_config_commands po-directories" if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" # Make sure we can run config.sub. $SHELL "${ac_aux_dir}config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL ${ac_aux_dir}config.sub" "$LINENO" 5 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 printf %s "checking build system type... " >&6; } if test ${ac_cv_build+y} then : printf %s "(cached) " >&6 else $as_nop ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "${ac_aux_dir}config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "${ac_aux_dir}config.sub" $ac_build_alias` || as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $ac_build_alias failed" "$LINENO" 5 fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 printf "%s\n" "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 printf %s "checking host system type... " >&6; } if test ${ac_cv_host+y} then : printf %s "(cached) " >&6 else $as_nop if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "${ac_aux_dir}config.sub" $host_alias` || as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $host_alias failed" "$LINENO" 5 fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 printf "%s\n" "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac # Check whether --with-gnu-ld was given. if test ${with_gnu_ld+y} then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else $as_nop with_gnu_ld=no fi # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 printf %s "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'` while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 printf %s "checking for GNU ld... " >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 printf %s "checking for non-GNU ld... " >&6; } fi if test ${acl_cv_path_LD+y} then : printf %s "(cached) " >&6 else $as_nop if test -z "$LD"; then acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$acl_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 &5 printf "%s\n" "$LD" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 printf %s "checking if the linker ($LD) is GNU ld... " >&6; } if test ${acl_cv_prog_gnu_ld+y} then : printf %s "(cached) " >&6 else $as_nop # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 printf "%s\n" "$acl_cv_prog_gnu_ld" >&6; } with_gnu_ld=$acl_cv_prog_gnu_ld { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 printf %s "checking for shared library run path origin... " >&6; } if test ${acl_cv_rpath+y} then : printf %s "(cached) " >&6 else $as_nop CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 printf "%s\n" "$acl_cv_rpath" >&6; } wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" # Check whether --enable-rpath was given. if test ${enable_rpath+y} then : enableval=$enable_rpath; : else $as_nop enable_rpath=yes fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 printf %s "checking for grep that handles long lines and -e... " >&6; } if test ${ac_cv_path_GREP+y} then : printf %s "(cached) " >&6 else $as_nop if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in grep ggrep do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 printf "%s\n" "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 printf %s "checking for egrep... " >&6; } if test ${ac_cv_path_EGREP+y} then : printf %s "(cached) " >&6 else $as_nop if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in egrep do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 printf "%s\n" "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" acl_libdirstem=lib acl_libdirstem2= case "$host_os" in solaris*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for 64-bit host" >&5 printf %s "checking for 64-bit host... " >&6; } if test ${gl_cv_solaris_64bit+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef _LP64 sixtyfour bits #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "sixtyfour bits" >/dev/null 2>&1 then : gl_cv_solaris_64bit=yes else $as_nop gl_cv_solaris_64bit=no fi rm -rf conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_solaris_64bit" >&5 printf "%s\n" "$gl_cv_solaris_64bit" >&6; } if test $gl_cv_solaris_64bit = yes; then acl_libdirstem=lib/64 case "$host_cpu" in sparc*) acl_libdirstem2=lib/sparcv9 ;; i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; esac fi ;; *) searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; */../ | */.. ) # Better ignore directories of this form. They are misleading. ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ;; esac test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libiconv-prefix was given. if test ${with_libiconv_prefix+y} then : withval=$with_libiconv_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBICONV= LTLIBICONV= INCICONV= LIBICONV_PREFIX= HAVE_LIBICONV= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='iconv ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" else LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'iconv'; then LIBICONV_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'iconv'; then LIBICONV_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" ;; esac done fi else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" done fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5 printf %s "checking for CFPreferencesCopyAppValue... " >&6; } if test ${gt_cv_func_CFPreferencesCopyAppValue+y} then : printf %s "(cached) " >&6 else $as_nop gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { CFPreferencesCopyAppValue(NULL, NULL) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : gt_cv_func_CFPreferencesCopyAppValue=yes else $as_nop gt_cv_func_CFPreferencesCopyAppValue=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5 printf "%s\n" "$gt_cv_func_CFPreferencesCopyAppValue" >&6; } if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then printf "%s\n" "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5 printf %s "checking for CFLocaleCopyCurrent... " >&6; } if test ${gt_cv_func_CFLocaleCopyCurrent+y} then : printf %s "(cached) " >&6 else $as_nop gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { CFLocaleCopyCurrent(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : gt_cv_func_CFLocaleCopyCurrent=yes else $as_nop gt_cv_func_CFLocaleCopyCurrent=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyCurrent" >&5 printf "%s\n" "$gt_cv_func_CFLocaleCopyCurrent" >&6; } if test $gt_cv_func_CFLocaleCopyCurrent = yes; then printf "%s\n" "#define HAVE_CFLOCALECOPYCURRENT 1" >>confdefs.h fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi LIBINTL= LTLIBINTL= POSUB= case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 printf %s "checking for GNU gettext in libc... " >&6; } if eval test \${$gt_func_gnugettext_libc+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifndef __GNU_GETTEXT_SUPPORTED_REVISION extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; #define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_domain_bindings) #else #define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 #endif $gt_revision_test_code int main (void) { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : eval "$gt_func_gnugettext_libc=yes" else $as_nop eval "$gt_func_gnugettext_libc=no" fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$gt_func_gnugettext_libc { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then am_save_CPPFLAGS="$CPPFLAGS" for element in $INCICONV; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 printf %s "checking for iconv... " >&6; } if test ${am_cv_func_iconv+y} then : printf %s "(cached) " >&6 else $as_nop am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main (void) { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main (void) { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : am_cv_lib_iconv=yes am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS="$am_save_LIBS" fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 printf "%s\n" "$am_cv_func_iconv" >&6; } if test "$am_cv_func_iconv" = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5 printf %s "checking for working iconv... " >&6; } if test ${am_cv_func_iconv_works+y} then : printf %s "(cached) " >&6 else $as_nop am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi am_cv_func_iconv_works=no for ac_iconv_const in '' 'const'; do if test "$cross_compiling" = yes then : case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #ifndef ICONV_CONST # define ICONV_CONST $ac_iconv_const #endif int main (void) { int result = 0; /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static ICONV_CONST char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; ICONV_CONST char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 1; iconv_close (cd_utf8_to_88591); } } /* Test against Solaris 10 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); if (cd_ascii_to_88591 != (iconv_t)(-1)) { static ICONV_CONST char input[] = "\263"; char buf[10]; ICONV_CONST char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_ascii_to_88591, &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 2; iconv_close (cd_ascii_to_88591); } } /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ { iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static ICONV_CONST char input[] = "\304"; static char buf[2] = { (char)0xDE, (char)0xAD }; ICONV_CONST char *inptr = input; size_t inbytesleft = 1; char *outptr = buf; size_t outbytesleft = 1; size_t res = iconv (cd_88591_to_utf8, &inptr, &inbytesleft, &outptr, &outbytesleft); if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) result |= 4; iconv_close (cd_88591_to_utf8); } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static ICONV_CONST char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; ICONV_CONST char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) result |= 8; iconv_close (cd_88591_to_utf8); } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) result |= 16; return result; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO" then : am_cv_func_iconv_works=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi test "$am_cv_func_iconv_works" = no || break done LIBS="$am_save_LIBS" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5 printf "%s\n" "$am_cv_func_iconv_works" >&6; } case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then printf "%s\n" "#define HAVE_ICONV 1" >>confdefs.h fi if test "$am_cv_lib_iconv" = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 printf %s "checking how to link with libiconv... " >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 printf "%s\n" "$LIBICONV" >&6; } else CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libintl-prefix was given. if test ${with_libintl_prefix+y} then : withval=$with_libintl_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBINTL= LTLIBINTL= INCINTL= LIBINTL_PREFIX= HAVE_LIBINTL= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='intl ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" else LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'intl'; then LIBINTL_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'intl'; then LIBINTL_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" ;; esac done fi else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" done fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 printf %s "checking for GNU gettext in libintl... " >&6; } if eval test \${$gt_func_gnugettext_libintl+y} then : printf %s "(cached) " >&6 else $as_nop gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifndef __GNU_GETTEXT_SUPPORTED_REVISION extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); #define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias ("")) #else #define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 #endif $gt_revision_test_code int main (void) { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : eval "$gt_func_gnugettext_libintl=yes" else $as_nop eval "$gt_func_gnugettext_libintl=no" fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifndef __GNU_GETTEXT_SUPPORTED_REVISION extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); #define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias ("")) #else #define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 #endif $gt_revision_test_code int main (void) { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS" fi eval ac_res=\$$gt_func_gnugettext_libintl { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } fi if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else LIBINTL= LTLIBINTL= INCINTL= fi if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then printf "%s\n" "#define ENABLE_NLS 1" >>confdefs.h else USE_NLS=no fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5 printf %s "checking whether to use NLS... " >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 printf "%s\n" "$USE_NLS" >&6; } if test "$USE_NLS" = "yes"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5 printf %s "checking where the gettext function comes from... " >&6; } if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5 printf "%s\n" "$gt_source" >&6; } fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5 printf %s "checking how to link with libintl... " >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5 printf "%s\n" "$LIBINTL" >&6; } for element in $INCINTL; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done fi printf "%s\n" "#define HAVE_GETTEXT 1" >>confdefs.h printf "%s\n" "#define HAVE_DCGETTEXT 1" >>confdefs.h fi POSUB=po fi INTLLIBS="$LIBINTL" GETTEXT_PACKAGE=realmd printf "%s\n" "#define GETTEXT_PACKAGE \"$GETTEXT_PACKAGE\"" >>confdefs.h # -------------------------------------------------------------------- # GLib pkg_failed=no { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for GLIB" >&5 printf %s "checking for GLIB... " >&6; } if test -n "$GLIB_CFLAGS"; then pkg_cv_GLIB_CFLAGS="$GLIB_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQ gio-2.0 gio-unix-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQ gio-2.0 gio-unix-2.0") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GLIB_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQ gio-2.0 gio-unix-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GLIB_LIBS"; then pkg_cv_GLIB_LIBS="$GLIB_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQ gio-2.0 gio-unix-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQ gio-2.0 gio-unix-2.0") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GLIB_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQ gio-2.0 gio-unix-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= $GLIB_REQ gio-2.0 gio-unix-2.0" 2>&1` else GLIB_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= $GLIB_REQ gio-2.0 gio-unix-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GLIB_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (glib-2.0 >= $GLIB_REQ gio-2.0 gio-unix-2.0) were not met: $GLIB_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GLIB_CFLAGS and GLIB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GLIB_CFLAGS and GLIB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else GLIB_CFLAGS=$pkg_cv_GLIB_CFLAGS GLIB_LIBS=$pkg_cv_GLIB_LIBS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } fi GLIB_CFLAGS="$GLIB_CFLAGS -DGLIB_VERSION_MIN_REQUIRED=$GLIB_MIN -DGLIB_VERSION_MAX_ALLOWED=$GLIB_MAX" # -------------------------------------------------------------------- # PolicyKit pkg_failed=no { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for POLKIT" >&5 printf %s "checking for POLKIT... " >&6; } if test -n "$POLKIT_CFLAGS"; then pkg_cv_POLKIT_CFLAGS="$POLKIT_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"polkit-gobject-1\""; } >&5 ($PKG_CONFIG --exists --print-errors "polkit-gobject-1") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_POLKIT_CFLAGS=`$PKG_CONFIG --cflags "polkit-gobject-1" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$POLKIT_LIBS"; then pkg_cv_POLKIT_LIBS="$POLKIT_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"polkit-gobject-1\""; } >&5 ($PKG_CONFIG --exists --print-errors "polkit-gobject-1") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_POLKIT_LIBS=`$PKG_CONFIG --libs "polkit-gobject-1" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then POLKIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "polkit-gobject-1" 2>&1` else POLKIT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "polkit-gobject-1" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$POLKIT_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (polkit-gobject-1) were not met: $POLKIT_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables POLKIT_CFLAGS and POLKIT_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables POLKIT_CFLAGS and POLKIT_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else POLKIT_CFLAGS=$pkg_cv_POLKIT_CFLAGS POLKIT_LIBS=$pkg_cv_POLKIT_LIBS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } fi # -------------------------------------------------------------------- # systemd { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking systemd unit directory" >&5 printf %s "checking systemd unit directory... " >&6; } # Check whether --with-systemd-unit-dir was given. if test ${with_systemd_unit_dir+y} then : withval=$with_systemd_unit_dir; fi if test "$with_systemd_unit_dir" = "" -o "$with_systemd_unit_dir" = "yes"; then with_systemd_unit_dir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd) if test "$with_systemd_unit_dir" = ""; then as_fn_error $? "\"Couldn't find systemd system unit directory\"" "$LINENO" 5 fi elif test "$with_systemd_unit_dir" = "no"; then with_systemd_unit_dir="" fi SYSTEMD_UNIT_DIR="$with_systemd_unit_dir" if test -n "$with_systemd_unit_dir"; then WITH_SYSTEMD_TRUE= WITH_SYSTEMD_FALSE='#' else WITH_SYSTEMD_TRUE='#' WITH_SYSTEMD_FALSE= fi dbus_systemd_service="" if test -n "$with_systemd_unit_dir"; then dbus_systemd_service="SystemdService=realmd.service" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_systemd_unit_dir" >&5 printf "%s\n" "$with_systemd_unit_dir" >&6; } # Check whether --with-systemd-journal was given. if test ${with_systemd_journal+y} then : withval=$with_systemd_journal; fi if test "$with_systemd_journal" != "no"; then printf "%s\n" "#define WITH_JOURNAL 1" >>confdefs.h pkg_failed=no { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for SYSTEMD_JOURNAL" >&5 printf %s "checking for SYSTEMD_JOURNAL... " >&6; } if test -n "$SYSTEMD_JOURNAL_CFLAGS"; then pkg_cv_SYSTEMD_JOURNAL_CFLAGS="$SYSTEMD_JOURNAL_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SYSTEMD_JOURNAL_CFLAGS=`$PKG_CONFIG --cflags "libsystemd" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$SYSTEMD_JOURNAL_LIBS"; then pkg_cv_SYSTEMD_JOURNAL_LIBS="$SYSTEMD_JOURNAL_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SYSTEMD_JOURNAL_LIBS=`$PKG_CONFIG --libs "libsystemd" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then SYSTEMD_JOURNAL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsystemd" 2>&1` else SYSTEMD_JOURNAL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsystemd" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$SYSTEMD_JOURNAL_PKG_ERRORS" >&5 pkg_failed=no { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for SYSTEMD_JOURNAL" >&5 printf %s "checking for SYSTEMD_JOURNAL... " >&6; } if test -n "$SYSTEMD_JOURNAL_CFLAGS"; then pkg_cv_SYSTEMD_JOURNAL_CFLAGS="$SYSTEMD_JOURNAL_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd-journal\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd-journal") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SYSTEMD_JOURNAL_CFLAGS=`$PKG_CONFIG --cflags "libsystemd-journal" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$SYSTEMD_JOURNAL_LIBS"; then pkg_cv_SYSTEMD_JOURNAL_LIBS="$SYSTEMD_JOURNAL_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd-journal\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd-journal") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SYSTEMD_JOURNAL_LIBS=`$PKG_CONFIG --libs "libsystemd-journal" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then SYSTEMD_JOURNAL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsystemd-journal" 2>&1` else SYSTEMD_JOURNAL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsystemd-journal" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$SYSTEMD_JOURNAL_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (libsystemd-journal) were not met: $SYSTEMD_JOURNAL_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables SYSTEMD_JOURNAL_CFLAGS and SYSTEMD_JOURNAL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables SYSTEMD_JOURNAL_CFLAGS and SYSTEMD_JOURNAL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else SYSTEMD_JOURNAL_CFLAGS=$pkg_cv_SYSTEMD_JOURNAL_CFLAGS SYSTEMD_JOURNAL_LIBS=$pkg_cv_SYSTEMD_JOURNAL_LIBS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } fi elif test $pkg_failed = untried; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } pkg_failed=no { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for SYSTEMD_JOURNAL" >&5 printf %s "checking for SYSTEMD_JOURNAL... " >&6; } if test -n "$SYSTEMD_JOURNAL_CFLAGS"; then pkg_cv_SYSTEMD_JOURNAL_CFLAGS="$SYSTEMD_JOURNAL_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd-journal\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd-journal") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SYSTEMD_JOURNAL_CFLAGS=`$PKG_CONFIG --cflags "libsystemd-journal" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$SYSTEMD_JOURNAL_LIBS"; then pkg_cv_SYSTEMD_JOURNAL_LIBS="$SYSTEMD_JOURNAL_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd-journal\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd-journal") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SYSTEMD_JOURNAL_LIBS=`$PKG_CONFIG --libs "libsystemd-journal" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then SYSTEMD_JOURNAL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsystemd-journal" 2>&1` else SYSTEMD_JOURNAL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsystemd-journal" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$SYSTEMD_JOURNAL_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (libsystemd-journal) were not met: $SYSTEMD_JOURNAL_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables SYSTEMD_JOURNAL_CFLAGS and SYSTEMD_JOURNAL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables SYSTEMD_JOURNAL_CFLAGS and SYSTEMD_JOURNAL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else SYSTEMD_JOURNAL_CFLAGS=$pkg_cv_SYSTEMD_JOURNAL_CFLAGS SYSTEMD_JOURNAL_LIBS=$pkg_cv_SYSTEMD_JOURNAL_LIBS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } fi else SYSTEMD_JOURNAL_CFLAGS=$pkg_cv_SYSTEMD_JOURNAL_CFLAGS SYSTEMD_JOURNAL_LIBS=$pkg_cv_SYSTEMD_JOURNAL_LIBS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } fi with_systemd_journal="yes" fi # ------------------------------------------------------------------- # resolv { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for which library has res_query" >&5 printf %s "checking for which library has res_query... " >&6; } for lib in "" "-lresolv"; do saved_LIBS="$LIBS" LIBS="$LIBS $lib" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { res_query (0, 0, 0, 0, 0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${lib:-libc}" >&5 printf "%s\n" "${lib:-libc}" >&6; }; have_res_query="yes"; break; else $as_nop LIBS="$saved_LIBS" fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext done if test "$have_res_query" != "yes"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } as_fn_error $? "Couldn't find the library for the res_query function" "$LINENO" 5 fi # ------------------------------------------------------------------- # Kerberos if test "$KRB5_LIBS" != ""; then KRB5_PASSED_LIBS=$KRB5_LIBS fi if test "$KRB5_CFLAGS" != ""; then KRB5_PASSED_CFLAGS=$KRB5_CFLAGS fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}krb5-config", so it can be a program name with args. set dummy ${ac_tool_prefix}krb5-config; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_KRB5_CONFIG+y} then : printf %s "(cached) " >&6 else $as_nop case $KRB5_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_KRB5_CONFIG="$KRB5_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_KRB5_CONFIG="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi KRB5_CONFIG=$ac_cv_path_KRB5_CONFIG if test -n "$KRB5_CONFIG"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $KRB5_CONFIG" >&5 printf "%s\n" "$KRB5_CONFIG" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_path_KRB5_CONFIG"; then ac_pt_KRB5_CONFIG=$KRB5_CONFIG # Extract the first word of "krb5-config", so it can be a program name with args. set dummy krb5-config; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_ac_pt_KRB5_CONFIG+y} then : printf %s "(cached) " >&6 else $as_nop case $ac_pt_KRB5_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_KRB5_CONFIG="$ac_pt_KRB5_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_KRB5_CONFIG="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_KRB5_CONFIG=$ac_cv_path_ac_pt_KRB5_CONFIG if test -n "$ac_pt_KRB5_CONFIG"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_KRB5_CONFIG" >&5 printf "%s\n" "$ac_pt_KRB5_CONFIG" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_pt_KRB5_CONFIG" = x; then KRB5_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac KRB5_CONFIG=$ac_pt_KRB5_CONFIG fi else KRB5_CONFIG="$ac_cv_path_KRB5_CONFIG" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working krb5-config" >&5 printf %s "checking for working krb5-config... " >&6; } if test -x "$KRB5_CONFIG"; then KRB5_CFLAGS="`$KRB5_CONFIG --cflags`" KRB5_LIBS="`$KRB5_CONFIG --libs`" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else if test x$KRB5_PASSED_LIBS = x; then as_fn_error $? "no. Please install MIT kerberos devel package" "$LINENO" 5 fi fi if test x$KRB5_PASSED_LIBS != x; then KRB5_LIBS=$KRB5_PASSED_LIBS fi if test x$KRB5_PASSED_CFLAGS != x; then KRB5_CFLAGS=$KRB5_PASSED_CFLAGS fi # ------------------------------------------------------------------- # LDAP { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ldap_search in -lldap" >&5 printf %s "checking for ldap_search in -lldap... " >&6; } if test ${ac_cv_lib_ldap_ldap_search+y} then : printf %s "(cached) " >&6 else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lldap $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char ldap_search (); int main (void) { return ldap_search (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_ldap_ldap_search=yes else $as_nop ac_cv_lib_ldap_ldap_search=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ldap_ldap_search" >&5 printf "%s\n" "$ac_cv_lib_ldap_ldap_search" >&6; } if test "x$ac_cv_lib_ldap_ldap_search" = xyes then : printf "%s\n" "#define HAVE_LIBLDAP 1" >>confdefs.h LIBS="-lldap $LIBS" else $as_nop ldap_invalid=yes fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ber_pvt_opt_on in -llber" >&5 printf %s "checking for ber_pvt_opt_on in -llber... " >&6; } if test ${ac_cv_lib_lber_ber_pvt_opt_on+y} then : printf %s "(cached) " >&6 else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-llber $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char ber_pvt_opt_on (); int main (void) { return ber_pvt_opt_on (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_lber_ber_pvt_opt_on=yes else $as_nop ac_cv_lib_lber_ber_pvt_opt_on=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lber_ber_pvt_opt_on" >&5 printf "%s\n" "$ac_cv_lib_lber_ber_pvt_opt_on" >&6; } if test "x$ac_cv_lib_lber_ber_pvt_opt_on" = xyes then : printf "%s\n" "#define HAVE_LIBLBER 1" >>confdefs.h LIBS="-llber $LIBS" else $as_nop ldap_invalid=yes fi for ac_header in ldap.h do : ac_fn_c_check_header_compile "$LINENO" "ldap.h" "ac_cv_header_ldap_h" "$ac_includes_default" if test "x$ac_cv_header_ldap_h" = xyes then : printf "%s\n" "#define HAVE_LDAP_H 1" >>confdefs.h else $as_nop ldap_invalid=yes fi done if test "$ldap_invalid" = "yes"; then as_fn_error $? "\"Couldn't find OpenLDAP headers or libraries\"" "$LINENO" 5 fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ldap_init_fd in -lldap" >&5 printf %s "checking for ldap_init_fd in -lldap... " >&6; } if test ${ac_cv_lib_ldap_ldap_init_fd+y} then : printf %s "(cached) " >&6 else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lldap $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char ldap_init_fd (); int main (void) { return ldap_init_fd (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_ldap_ldap_init_fd=yes else $as_nop ac_cv_lib_ldap_ldap_init_fd=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ldap_ldap_init_fd" >&5 printf "%s\n" "$ac_cv_lib_ldap_ldap_init_fd" >&6; } if test "x$ac_cv_lib_ldap_ldap_init_fd" = xyes then : true else $as_nop as_fn_error $? "Couldn't find ldap_init_fd function in libldap" "$LINENO" 5 fi LDAP_LIBS="" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for res_query in -lresolv" >&5 printf %s "checking for res_query in -lresolv... " >&6; } if test ${ac_cv_lib_resolv_res_query+y} then : printf %s "(cached) " >&6 else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char res_query (); int main (void) { return res_query (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_resolv_res_query=yes else $as_nop ac_cv_lib_resolv_res_query=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_res_query" >&5 printf "%s\n" "$ac_cv_lib_resolv_res_query" >&6; } if test "x$ac_cv_lib_resolv_res_query" = xyes then : LDAP_LIBS="-lresolv" fi LDAP_LIBS="$LDAP_LIBS -lldap -llber" LDAP_CFLAGS="" # ------------------------------------------------------------------- # Samba # Check whether --with-new-samba-cli-options was given. if test ${with_new_samba_cli_options+y} then : withval=$with_new_samba_cli_options; fi if test "$with_new_samba_cli_options" = "no"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: Using old Samba command line options" >&5 printf "%s\n" "Using old Samba command line options" >&6; } elif test "$with_new_samba_cli_options" = "yes"; then printf "%s\n" "#define WITH_NEW_SAMBA_CLI_OPTS 1" >>confdefs.h { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: Using new Samba command line options" >&5 printf "%s\n" "Using new Samba command line options" >&6; } else # Extract the first word of "net", so it can be a program name with args. set dummy net; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_SAMBA_NET+y} then : printf %s "(cached) " >&6 else $as_nop case $SAMBA_NET in [\\/]* | ?:[\\/]*) ac_cv_path_SAMBA_NET="$SAMBA_NET" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_SAMBA_NET="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi SAMBA_NET=$ac_cv_path_SAMBA_NET if test -n "$SAMBA_NET"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $SAMBA_NET" >&5 printf "%s\n" "$SAMBA_NET" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test ! -x "$SAMBA_NET"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: Could not find Samba's net utility, assuming old style command line options, please install the net utility for proper detection." >&5 printf "%s\n" "$as_me: Could not find Samba's net utility, assuming old style command line options, please install the net utility for proper detection." >&6;} else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --debug-stdout option of net" >&5 printf %s "checking for --debug-stdout option of net... " >&6; } if { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$SAMBA_NET help 2>&1 |grep -- '--debug-stdout' > /dev/null"; } >&5 ($SAMBA_NET help 2>&1 |grep -- '--debug-stdout' > /dev/null) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then printf "%s\n" "#define WITH_NEW_SAMBA_CLI_OPTS 1" >>confdefs.h { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi fi # ------------------------------------------------------------------- # Directories DBUS_SERVICES_DIR="${datadir}/dbus-1/system-services" DBUS_POLICY_DIR="${sysconfdir}/dbus-1/system.d" POLKIT_ACTION_DIR="${datadir}/polkit-1/actions" # -------------------------------------------------------------------- # Compilation options { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to build documentation" >&5 printf %s "checking whether to build documentation... " >&6; } # Check whether --enable-doc was given. if test ${enable_doc+y} then : enableval=$enable_doc; fi if test "$enable_doc" = "no"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_doc" >&5 printf "%s\n" "$enable_doc" >&6; } else if test "$enable_doc" = ""; then disable_msg="(perhaps --disable-doc)" fi enable_doc="yes" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_doc" >&5 printf "%s\n" "$enable_doc" >&6; } # Extract the first word of "xsltproc", so it can be a program name with args. set dummy xsltproc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_XSLTPROC+y} then : printf %s "(cached) " >&6 else $as_nop case $XSLTPROC in [\\/]* | ?:[\\/]*) ac_cv_path_XSLTPROC="$XSLTPROC" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_XSLTPROC="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_XSLTPROC" && ac_cv_path_XSLTPROC="no" ;; esac fi XSLTPROC=$ac_cv_path_XSLTPROC if test -n "$XSLTPROC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $XSLTPROC" >&5 printf "%s\n" "$XSLTPROC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "$XSLTPROC" = "no"; then as_fn_error $? "the xsltproc command was not found $disable_msg" "$LINENO" 5 fi # Extract the first word of "xmlto", so it can be a program name with args. set dummy xmlto; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_XMLTO+y} then : printf %s "(cached) " >&6 else $as_nop case $XMLTO in [\\/]* | ?:[\\/]*) ac_cv_path_XMLTO="$XMLTO" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_XMLTO="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_XMLTO" && ac_cv_path_XMLTO="no" ;; esac fi XMLTO=$ac_cv_path_XMLTO if test -n "$XMLTO"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $XMLTO" >&5 printf "%s\n" "$XMLTO" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "$XMLTO" = "no"; then as_fn_error $? "the xmlto command was not found $disable_msg" "$LINENO" 5 fi fi if test "$enable_doc" = "yes"; then ENABLE_DOC_TRUE= ENABLE_DOC_FALSE='#' else ENABLE_DOC_TRUE='#' ENABLE_DOC_FALSE= fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to build with gcov testing" >&5 printf %s "checking whether to build with gcov testing... " >&6; } # Check whether --enable-coverage was given. if test ${enable_coverage+y} then : enableval=$enable_coverage; else $as_nop enable_coverage=no fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_coverage" >&5 printf "%s\n" "$enable_coverage" >&6; } if test "$enable_coverage" = "yes"; then if test "$GCC" != "yes"; then as_fn_error $? "Coverage testing requires GCC" "$LINENO" 5 fi # Extract the first word of "gcov", so it can be a program name with args. set dummy gcov; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_GCOV+y} then : printf %s "(cached) " >&6 else $as_nop case $GCOV in [\\/]* | ?:[\\/]*) ac_cv_path_GCOV="$GCOV" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_GCOV="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GCOV" && ac_cv_path_GCOV="no" ;; esac fi GCOV=$ac_cv_path_GCOV if test -n "$GCOV"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GCOV" >&5 printf "%s\n" "$GCOV" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "$GCOV" = "no" ; then as_fn_error $? "gcov tool is not available" "$LINENO" 5 fi # Extract the first word of "lcov", so it can be a program name with args. set dummy lcov; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_LCOV+y} then : printf %s "(cached) " >&6 else $as_nop case $LCOV in [\\/]* | ?:[\\/]*) ac_cv_path_LCOV="$LCOV" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_LCOV="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_LCOV" && ac_cv_path_LCOV="no" ;; esac fi LCOV=$ac_cv_path_LCOV if test -n "$LCOV"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LCOV" >&5 printf "%s\n" "$LCOV" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "$LCOV" = "no" ; then as_fn_error $? "lcov tool is not installed" "$LINENO" 5 fi # Extract the first word of "genhtml", so it can be a program name with args. set dummy genhtml; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_GENHTML+y} then : printf %s "(cached) " >&6 else $as_nop case $GENHTML in [\\/]* | ?:[\\/]*) ac_cv_path_GENHTML="$GENHTML" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_GENHTML="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GENHTML" && ac_cv_path_GENHTML="no" ;; esac fi GENHTML=$ac_cv_path_GENHTML if test -n "$GENHTML"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GENHTML" >&5 printf "%s\n" "$GENHTML" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "$GENHTML" = "no" ; then as_fn_error $? "lcov's genhtml tool is not installed" "$LINENO" 5 fi CFLAGS="$CFLAGS -O0 -g -fprofile-arcs -ftest-coverage" LDFLAGS="$LDFLAGS -lgcov" fi if test "$enable_coverage" = "yes"; then WITH_COVERAGE_TRUE= WITH_COVERAGE_FALSE='#' else WITH_COVERAGE_TRUE='#' WITH_COVERAGE_FALSE= fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for debug mode" >&5 printf %s "checking for debug mode... " >&6; } # Check whether --enable-debug was given. if test ${enable_debug+y} then : enableval=$enable_debug; fi if test "$enable_debug" != "no"; then printf "%s\n" "#define WITH_DEBUG 1" >>confdefs.h printf "%s\n" "#define _DEBUG 1" >>confdefs.h CFLAGS="$CFLAGS -g" fi if test "$enable_debug" = "yes"; then debug_status="yes" CFLAGS="$CFLAGS -O0" elif test "$enable_debug" = "no"; then debug_status="no" CFLAGS="$CFLAGS -O2" printf "%s\n" "#define G_DISABLE_ASSERT 1" >>confdefs.h else debug_status="default" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $debug_status" >&5 printf "%s\n" "$debug_status" >&6; } if test "$GCC" = "yes"; then CFLAGS="$CFLAGS \ -Wall -Wmissing-declarations \ -Wmissing-prototypes -Wnested-externs -Wpointer-arith \ -Wdeclaration-after-statement -Wformat=2 -Winit-self \ -Waggregate-return -Wmissing-format-attribute" for option in -Wmissing-include-dirs -Wundef; do SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $option" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether gcc understands $option" >&5 printf %s "checking whether gcc understands $option... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : has_option=yes else $as_nop has_option=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $has_option" >&5 printf "%s\n" "$has_option" >&6; } if test $has_option = no; then CFLAGS="$SAVE_CFLAGS" fi done # Only add this when optimizing is enabled (default) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether optimization is enabled" >&5 printf %s "checking whether optimization is enabled... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if __OPTIMIZE__ == 0 #error No optimization #endif int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : has_optimization=yes else $as_nop has_optimization=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext if test $has_optimization = yes; then CFLAGS="$CFLAGS -Wp,-D_FORTIFY_SOURCE=2" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes, fortifying source" >&5 printf "%s\n" "yes, fortifying source" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no, not fortifying source" >&5 printf "%s\n" "no, not fortifying source" >&6; } fi fi # Check whether --enable-strict was given. if test ${enable_strict+y} then : enableval=$enable_strict; fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking build strict" >&5 printf %s "checking build strict... " >&6; } if test "$enable_strict" = "yes"; then CFLAGS="$CFLAGS -Werror \ -DG_DISABLE_DEPRECATED" TEST_MODE="thorough" else CFLAGS="$CFLAGS -Wno-error" TEST_MODE="quick" enable_strict="no" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_strict" >&5 printf "%s\n" "$enable_strict" >&6; } # ------------------------------------------------------------------------------ # Results privatedir='${prefix}/lib/realmd' { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking private directory" >&5 printf %s "checking private directory... " >&6; } # Check whether --with-private-dir was given. if test ${with_private_dir+y} then : withval=$with_private_dir; fi if test -n "$with_private_dir"; then privatedir="$with_private_dir" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $privatedir" >&5 printf "%s\n" "$privatedir" >&6; } cachedir='${localstatedir}/cache/realmd' ac_config_files="$ac_config_files Makefile doc/version.xml po/Makefile.in po/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test ${\1+y} || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 printf "%s\n" "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 printf "%s\n" "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`printf "%s\n" "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 printf %s "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: done" >&5 printf "%s\n" "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 printf %s "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: done" >&5 printf "%s\n" "done" >&6; } if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${WITH_SYSTEMD_TRUE}" && test -z "${WITH_SYSTEMD_FALSE}"; then as_fn_error $? "conditional \"WITH_SYSTEMD\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_DOC_TRUE}" && test -z "${ENABLE_DOC_FALSE}"; then as_fn_error $? "conditional \"ENABLE_DOC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${WITH_COVERAGE_TRUE}" && test -z "${WITH_COVERAGE_FALSE}"; then as_fn_error $? "conditional \"WITH_COVERAGE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 printf "%s\n" "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh as_nop=: if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi # Reset variables that may have inherited troublesome values from # the environment. # IFS needs to be set, to space, tab, and newline, in precisely that order. # (If _AS_PATH_WALK were called with IFS unset, it would have the # side effect of setting IFS to empty, thus disabling word splitting.) # Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl IFS=" "" $as_nl" PS1='$ ' PS2='> ' PS4='+ ' # Ensure predictable behavior from utilities with locale-dependent output. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # We cannot yet rely on "unset" to work, but we need these variables # to be unset--not just set to an empty or harmless value--now, to # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct # also avoids known problems related to "unset" and subshell syntax # in other old shells (e.g. bash 2.01 and pdksh 5.2.14). for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH do eval test \${$as_var+y} \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done # Ensure that fds 0, 1, and 2 are open. if (exec 3>&0) 2>/dev/null; then :; else exec 0&1) 2>/dev/null; then :; else exec 1>/dev/null; fi if (exec 3>&2) ; then :; else exec 2>/dev/null; fi # The user is always right. if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null then : eval 'as_fn_append () { eval $1+=\$2 }' else $as_nop as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null then : eval 'as_fn_arith () { as_val=$(( $* )) }' else $as_nop as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # Determine whether it's possible to make 'echo' print without a newline. # These variables are no longer used directly by Autoconf, but are AC_SUBSTed # for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac # For backward compatibility with old third-party macros, we provide # the shell variables $as_echo and $as_echo_n. New code should use # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. as_echo='printf %s\n' as_echo_n='printf %s' rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by realmd $as_me 0.17.1, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"` ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\''/g"` cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ realmd config.status 0.17.1 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) printf "%s\n" "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) printf "%s\n" "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) printf "%s\n" "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \printf "%s\n" "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX printf "%s\n" "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" # Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "doc/version.xml") CONFIG_FILES="$CONFIG_FILES doc/version.xml" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "po/Makefile") CONFIG_FILES="$CONFIG_FILES po/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test ${CONFIG_FILES+y} || CONFIG_FILES=$config_files test ${CONFIG_HEADERS+y} || CONFIG_HEADERS=$config_headers test ${CONFIG_COMMANDS+y} || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 printf "%s\n" "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`printf "%s\n" "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 printf "%s\n" "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 printf "%s\n" "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. case $CONFIG_FILES in #( *\'*) : eval set x "$CONFIG_FILES" ;; #( *) : set x $CONFIG_FILES ;; #( *) : ;; esac shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`printf "%s\n" "$am_mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`$as_dirname -- "$am_mf" || $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$am_mf" : 'X\(//\)[^/]' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$am_mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` am_filepart=`$as_basename -- "$am_mf" || $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$am_mf" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` { echo "$as_me:$LINENO: cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles" >&5 (cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } || am_rc=$? done if test $am_rc -ne 0; then { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "Something went wrong bootstrapping makefile fragments for automatic dependency tracking. If GNU make was not used, consider re-running the configure script with MAKE=\"gmake\" (or whatever is necessary). You can also try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking). See \`config.log' for more details" "$LINENO" 5; } fi { am_dirpart=; unset am_dirpart;} { am_filepart=; unset am_filepart;} { am_mf=; unset am_mf;} { am_rc=; unset am_rc;} rm -f conftest-deps.mk } ;; "po-directories":C) for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" gt_tab=`printf '\t'` cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ${gt_tab}]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi echo echo "CFLAGS: $CFLAGS" echo echo "OPTIONS:" echo " Debug: $debug_status" echo " Coverage: $enable_coverage" echo " Strict: $enable_strict" echo " Documentation: $enable_doc" echo echo "OPTIONAL DEPENDENCIES:" echo " systemd unit dir: $with_systemd_unit_dir" echo " systemd journal: $with_systemd_journal" echo realmd-0.17.1/ABOUT-NLS0000644003225100322510000026747414315276770014643 0ustar00sbosesbose000000000000001 Notes on the Free Translation Project *************************************** Free software is going international! The Free Translation Project is a way to get maintainers of free software, translators, and users all together, so that free software will gradually become able to speak many languages. A few packages already provide translations for their messages. If you found this 'ABOUT-NLS' file inside a distribution, you may assume that the distributed package does use GNU 'gettext' internally, itself available at your nearest GNU archive site. But you do _not_ need to install GNU 'gettext' prior to configuring, installing or using this package with messages translated. Installers will find here some useful hints. These notes also explain how users should proceed for getting the programs to use the available translations. They tell how people wanting to contribute and work on translations can contact the appropriate team. 1.1 INSTALL Matters =================== Some packages are "localizable" when properly installed; the programs they contain can be made to speak your own native language. Most such packages use GNU 'gettext'. Other packages have their own ways to internationalization, predating GNU 'gettext'. By default, this package will be installed to allow translation of messages. It will automatically detect whether the system already provides the GNU 'gettext' functions. Installers may use special options at configuration time for changing the default behaviour. The command: ./configure --disable-nls will _totally_ disable translation of messages. When you already have GNU 'gettext' installed on your system and run configure without an option for your new package, 'configure' will probably detect the previously built and installed 'libintl' library and will decide to use it. If not, you may have to to use the '--with-libintl-prefix' option to tell 'configure' where to look for it. Internationalized packages usually have many 'po/LL.po' files, where LL gives an ISO 639 two-letter code identifying the language. Unless translations have been forbidden at 'configure' time by using the '--disable-nls' switch, all available translations are installed together with the package. However, the environment variable 'LINGUAS' may be set, prior to configuration, to limit the installed set. 'LINGUAS' should then contain a space separated list of two-letter codes, stating which languages are allowed. 1.2 Using This Package ====================== As a user, if your language has been installed for this package, you only have to set the 'LANG' environment variable to the appropriate 'LL_CC' combination. If you happen to have the 'LC_ALL' or some other 'LC_xxx' environment variables set, you should unset them before setting 'LANG', otherwise the setting of 'LANG' will not have the desired effect. Here 'LL' is an ISO 639 two-letter language code, and 'CC' is an ISO 3166 two-letter country code. For example, let's suppose that you speak German and live in Germany. At the shell prompt, merely execute 'setenv LANG de_DE' (in 'csh'), 'export LANG; LANG=de_DE' (in 'sh') or 'export LANG=de_DE' (in 'bash'). This can be done from your '.login' or '.profile' file, once and for all. You might think that the country code specification is redundant. But in fact, some languages have dialects in different countries. For example, 'de_AT' is used for Austria, and 'pt_BR' for Brazil. The country code serves to distinguish the dialects. The locale naming convention of 'LL_CC', with 'LL' denoting the language and 'CC' denoting the country, is the one use on systems based on GNU libc. On other systems, some variations of this scheme are used, such as 'LL' or 'LL_CC.ENCODING'. You can get the list of locales supported by your system for your language by running the command 'locale -a | grep '^LL''. Not all programs have translations for all languages. By default, an English message is shown in place of a nonexistent translation. If you understand other languages, you can set up a priority list of languages. This is done through a different environment variable, called 'LANGUAGE'. GNU 'gettext' gives preference to 'LANGUAGE' over 'LANG' for the purpose of message handling, but you still need to have 'LANG' set to the primary language; this is required by other parts of the system libraries. For example, some Swedish users who would rather read translations in German than English for when Swedish is not available, set 'LANGUAGE' to 'sv:de' while leaving 'LANG' to 'sv_SE'. Special advice for Norwegian users: The language code for Norwegian bokma*l changed from 'no' to 'nb' recently (in 2003). During the transition period, while some message catalogs for this language are installed under 'nb' and some older ones under 'no', it's recommended for Norwegian users to set 'LANGUAGE' to 'nb:no' so that both newer and older translations are used. In the 'LANGUAGE' environment variable, but not in the 'LANG' environment variable, 'LL_CC' combinations can be abbreviated as 'LL' to denote the language's main dialect. For example, 'de' is equivalent to 'de_DE' (German as spoken in Germany), and 'pt' to 'pt_PT' (Portuguese as spoken in Portugal) in this context. 1.3 Translating Teams ===================== For the Free Translation Project to be a success, we need interested people who like their own language and write it well, and who are also able to synergize with other translators speaking the same language. Each translation team has its own mailing list. The up-to-date list of teams can be found at the Free Translation Project's homepage, 'http://translationproject.org/', in the "Teams" area. If you'd like to volunteer to _work_ at translating messages, you should become a member of the translating team for your own language. The subscribing address is _not_ the same as the list itself, it has '-request' appended. For example, speakers of Swedish can send a message to 'sv-request@li.org', having this message body: subscribe Keep in mind that team members are expected to participate _actively_ in translations, or at solving translational difficulties, rather than merely lurking around. If your team does not exist yet and you want to start one, or if you are unsure about what to do or how to get started, please write to 'coordinator@translationproject.org' to reach the coordinator for all translator teams. The English team is special. It works at improving and uniformizing the terminology in use. Proven linguistic skills are praised more than programming skills, here. 1.4 Available Packages ====================== Languages are not equally supported in all packages. The following matrix shows the current state of internationalization, as of Jun 2014. The matrix shows, in regard of each package, for which languages PO files have been submitted to translation coordination, with a translation percentage of at least 50%. Ready PO files af am an ar as ast az be bg bn bn_IN bs ca crh cs +---------------------------------------------------+ a2ps | [] [] [] | aegis | | anubis | | aspell | [] [] [] | bash | [] [] [] | bfd | | binutils | [] | bison | | bison-runtime | [] | buzztrax | [] | ccd2cue | | ccide | | cflow | | clisp | | coreutils | [] [] | cpio | | cppi | | cpplib | [] | cryptsetup | [] | datamash | | denemo | [] [] | dfarc | [] | dialog | [] [] [] | dico | | diffutils | [] | dink | [] | direvent | | doodle | [] | dos2unix | | dos2unix-man | | e2fsprogs | [] [] | enscript | [] | exif | [] | fetchmail | [] [] | findutils | [] | flex | [] | freedink | [] [] | fusionforge | | gas | | gawk | [] | gcal | [] | gcc | | gdbm | | gettext-examples | [] [] [] [] [] | gettext-runtime | [] [] [] | gettext-tools | [] [] | gjay | | glunarclock | [] [] [] | gnubiff | [] | gnubik | [] | gnucash | () () [] | gnuchess | | gnulib | [] | gnunet | | gnunet-gtk | | gold | | gphoto2 | [] | gprof | [] | gramadoir | | grep | [] [] [] | grub | [] | gsasl | | gss | | gst-plugins-bad | [] [] | gst-plugins-base | [] [] [] | gst-plugins-good | [] [] [] | gst-plugins-ugly | [] [] [] | gstreamer | [] [] [] [] | gtick | [] | gtkam | [] [] | gtkspell | [] [] [] [] [] | guix | | guix-packages | | gutenprint | [] | hello | [] | help2man | | help2man-texi | | hylafax | | idutils | | iso_15924 | [] | iso_3166 | [] [] [] [] [] [] [] [] [] [] | iso_3166_2 | | iso_4217 | [] | iso_639 | [] [] [] [] [] [] [] [] [] | iso_639_3 | [] [] | iso_639_5 | | jwhois | | kbd | [] | klavaro | [] [] [] [] [] | ld | [] | leafpad | [] [] [] [] | libc | [] [] [] | libexif | () | libextractor | | libgnutls | [] | libgphoto2 | [] | libgphoto2_port | [] | libgsasl | | libiconv | [] [] | libidn | [] | liferea | [] [] [] [] | lilypond | [] [] | lordsawar | [] | lprng | | lynx | [] [] | m4 | [] | mailfromd | | mailutils | | make | [] | man-db | [] [] | man-db-manpages | | midi-instruments | [] [] [] | minicom | [] | mkisofs | [] | myserver | [] | nano | [] [] [] | opcodes | | parted | [] | pies | | pnmixer | | popt | [] | procps-ng | | procps-ng-man | | psmisc | [] | pspp | [] | pushover | [] | pwdutils | | pyspread | | radius | [] | recode | [] [] [] | recutils | | rpm | | rush | | sarg | | sed | [] [] [] [] | sharutils | [] | shishi | | skribilo | | solfege | [] [] | solfege-manual | | spotmachine | | sudo | [] [] | sudoers | [] [] | sysstat | [] | tar | [] [] [] | texinfo | [] [] | texinfo_document | [] [] | tigervnc | [] | tin | | tin-man | | tracgoogleappsa... | | trader | | util-linux | [] | ve | | vice | | vmm | | vorbis-tools | [] | wastesedge | | wcd | | wcd-man | | wdiff | [] [] | wget | [] | wyslij-po | | xboard | | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] | +---------------------------------------------------+ af am an ar as ast az be bg bn bn_IN bs ca crh cs 4 0 2 5 3 11 0 8 25 3 3 1 55 4 74 da de el en en_GB en_ZA eo es et eu fa fi fr +--------------------------------------------------+ a2ps | [] [] [] [] [] [] [] [] [] | aegis | [] [] [] [] | anubis | [] [] [] [] [] | aspell | [] [] [] [] [] [] [] | bash | [] [] [] | bfd | [] [] [] [] | binutils | [] [] [] | bison | [] [] [] [] [] [] [] [] | bison-runtime | [] [] [] [] [] [] [] [] | buzztrax | [] [] [] [] | ccd2cue | [] [] [] [] | ccide | [] [] [] [] [] [] | cflow | [] [] [] [] [] | clisp | [] [] [] [] [] | coreutils | [] [] [] [] [] | cpio | [] [] [] [] [] | cppi | [] [] [] [] [] | cpplib | [] [] [] [] [] [] | cryptsetup | [] [] [] [] [] | datamash | [] [] [] [] | denemo | [] | dfarc | [] [] [] [] [] [] | dialog | [] [] [] [] [] [] [] [] [] | dico | [] [] [] [] | diffutils | [] [] [] [] [] [] | dink | [] [] [] [] [] [] | direvent | [] [] [] [] | doodle | [] [] [] [] | dos2unix | [] [] [] [] [] | dos2unix-man | [] [] [] | e2fsprogs | [] [] [] [] [] | enscript | [] [] [] [] [] [] | exif | [] [] [] [] [] [] | fetchmail | [] () [] [] [] [] [] | findutils | [] [] [] [] [] [] [] [] | flex | [] [] [] [] [] [] | freedink | [] [] [] [] [] [] [] [] | fusionforge | [] [] [] | gas | [] [] [] | gawk | [] [] [] [] [] | gcal | [] [] [] [] | gcc | [] | gdbm | [] [] [] [] [] | gettext-examples | [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] | gettext-tools | [] [] [] [] [] | gjay | [] [] [] [] | glunarclock | [] [] [] [] [] | gnubiff | () [] [] () | gnubik | [] [] [] [] [] | gnucash | [] () () () () () () | gnuchess | [] [] [] [] | gnulib | [] [] [] [] [] [] [] | gnunet | [] | gnunet-gtk | [] | gold | [] [] [] | gphoto2 | [] () [] [] | gprof | [] [] [] [] [] [] | gramadoir | [] [] [] [] [] | grep | [] [] [] [] [] [] [] | grub | [] [] [] [] [] | gsasl | [] [] [] [] [] | gss | [] [] [] [] [] | gst-plugins-bad | [] [] [] | gst-plugins-base | [] [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] [] [] | gstreamer | [] [] [] [] [] [] [] | gtick | [] () [] [] [] | gtkam | [] () [] [] [] [] | gtkspell | [] [] [] [] [] [] [] [] | guix | [] [] | guix-packages | | gutenprint | [] [] [] [] | hello | [] [] [] [] [] [] [] [] | help2man | [] [] [] [] [] [] [] | help2man-texi | [] [] [] | hylafax | [] [] | idutils | [] [] [] [] [] | iso_15924 | [] () [] [] () [] () | iso_3166 | [] () [] [] [] [] () [] () | iso_3166_2 | [] () () () | iso_4217 | [] () [] [] [] () [] () | iso_639 | [] () [] [] () [] () | iso_639_3 | () () () | iso_639_5 | () () () | jwhois | [] [] [] [] [] | kbd | [] [] [] [] [] [] | klavaro | [] [] [] [] [] [] [] | ld | [] [] [] [] | leafpad | [] [] [] [] [] [] [] [] | libc | [] [] [] [] [] | libexif | [] [] () [] [] | libextractor | [] | libgnutls | [] [] [] [] | libgphoto2 | [] () [] | libgphoto2_port | [] () [] [] [] [] | libgsasl | [] [] [] [] [] | libiconv | [] [] [] [] [] [] [] | libidn | [] [] [] [] [] | liferea | [] () [] [] [] [] [] | lilypond | [] [] [] [] [] [] | lordsawar | [] [] | lprng | | lynx | [] [] [] [] [] [] | m4 | [] [] [] [] [] [] | mailfromd | [] | mailutils | [] [] [] [] | make | [] [] [] [] [] | man-db | [] [] [] [] | man-db-manpages | [] [] | midi-instruments | [] [] [] [] [] [] [] [] [] | minicom | [] [] [] [] [] | mkisofs | [] [] [] | myserver | [] [] [] [] | nano | [] [] [] [] [] [] [] | opcodes | [] [] [] [] [] | parted | [] [] [] | pies | [] | pnmixer | [] [] | popt | [] [] [] [] [] [] | procps-ng | [] [] | procps-ng-man | [] [] | psmisc | [] [] [] [] [] [] [] | pspp | [] [] [] | pushover | () [] [] [] | pwdutils | [] [] [] | pyspread | [] [] [] | radius | [] [] | recode | [] [] [] [] [] [] [] | recutils | [] [] [] [] | rpm | [] [] [] [] [] | rush | [] [] [] | sarg | [] [] | sed | [] [] [] [] [] [] [] [] | sharutils | [] [] [] [] | shishi | [] [] [] | skribilo | [] [] [] | solfege | [] [] [] [] [] [] [] [] | solfege-manual | [] [] [] [] [] | spotmachine | [] [] [] [] [] | sudo | [] [] [] [] [] [] | sudoers | [] [] [] [] [] [] | sysstat | [] [] [] [] [] [] | tar | [] [] [] [] [] [] [] | texinfo | [] [] [] [] [] | texinfo_document | [] [] [] [] | tigervnc | [] [] [] [] [] [] | tin | [] [] [] [] | tin-man | [] | tracgoogleappsa... | [] [] [] [] [] | trader | [] [] [] [] [] [] | util-linux | [] [] [] [] | ve | [] [] [] [] [] | vice | () () () | vmm | [] [] | vorbis-tools | [] [] [] [] | wastesedge | [] | wcd | [] [] [] [] | wcd-man | [] | wdiff | [] [] [] [] [] [] [] | wget | [] [] [] [] [] [] | wyslij-po | [] [] [] [] | xboard | [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] [] [] [] | +--------------------------------------------------+ da de el en en_GB en_ZA eo es et eu fa fi fr 119 131 32 1 6 0 94 95 22 13 4 102 139 ga gd gl gu he hi hr hu hy ia id is it ja ka kk +-------------------------------------------------+ a2ps | [] [] [] [] | aegis | [] | anubis | [] [] [] [] | aspell | [] [] [] [] [] | bash | [] [] [] [] | bfd | [] [] | binutils | [] [] [] | bison | [] | bison-runtime | [] [] [] [] [] [] [] [] | buzztrax | | ccd2cue | [] | ccide | [] [] | cflow | [] [] [] | clisp | | coreutils | [] [] | cpio | [] [] [] [] [] [] | cppi | [] [] [] [] [] | cpplib | [] [] | cryptsetup | [] | datamash | | denemo | [] | dfarc | [] [] [] | dialog | [] [] [] [] [] [] [] [] [] [] | dico | | diffutils | [] [] [] [] | dink | [] | direvent | [] | doodle | [] [] | dos2unix | [] [] | dos2unix-man | | e2fsprogs | [] [] | enscript | [] [] [] | exif | [] [] [] [] [] [] | fetchmail | [] [] [] | findutils | [] [] [] [] [] [] [] | flex | [] | freedink | [] [] [] [] | fusionforge | | gas | [] | gawk | [] () [] | gcal | | gcc | | gdbm | | gettext-examples | [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] [] | gettext-tools | [] [] [] | gjay | [] | glunarclock | [] [] [] [] [] [] | gnubiff | [] [] () | gnubik | [] [] [] | gnucash | () () () () () | gnuchess | | gnulib | [] [] [] [] [] | gnunet | | gnunet-gtk | | gold | [] [] | gphoto2 | [] [] [] [] | gprof | [] [] [] [] | gramadoir | [] [] [] | grep | [] [] [] [] [] [] [] | grub | [] [] [] | gsasl | [] [] [] [] [] | gss | [] [] [] [] [] | gst-plugins-bad | [] [] [] | gst-plugins-base | [] [] [] [] | gst-plugins-good | [] [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] [] [] [] [] | gtkam | [] [] [] [] [] | gtkspell | [] [] [] [] [] [] [] [] [] [] | guix | | guix-packages | | gutenprint | [] [] [] | hello | [] [] [] [] [] | help2man | [] [] [] | help2man-texi | | hylafax | [] | idutils | [] [] | iso_15924 | [] [] [] [] [] [] | iso_3166 | [] [] [] [] [] [] [] [] [] [] [] [] [] | iso_3166_2 | [] [] | iso_4217 | [] [] [] [] [] [] | iso_639 | [] [] [] [] [] [] [] [] [] | iso_639_3 | [] [] | iso_639_5 | | jwhois | [] [] [] [] | kbd | [] [] [] | klavaro | [] [] [] [] [] | ld | [] [] [] [] | leafpad | [] [] [] [] [] [] [] () | libc | [] [] [] [] [] | libexif | [] | libextractor | | libgnutls | [] | libgphoto2 | [] [] | libgphoto2_port | [] [] | libgsasl | [] [] [] [] | libiconv | [] [] [] [] [] [] [] | libidn | [] [] [] [] | liferea | [] [] [] [] [] | lilypond | [] | lordsawar | | lprng | [] | lynx | [] [] [] [] | m4 | [] [] [] [] [] | mailfromd | | mailutils | | make | [] [] [] [] | man-db | [] [] | man-db-manpages | [] [] | midi-instruments | [] [] [] [] [] [] [] [] [] | minicom | [] [] [] | mkisofs | [] [] | myserver | [] | nano | [] [] [] [] [] [] | opcodes | [] [] [] | parted | [] [] [] [] [] | pies | | pnmixer | [] [] | popt | [] [] [] [] [] [] [] [] [] [] | procps-ng | | procps-ng-man | | psmisc | [] [] [] [] | pspp | [] [] | pushover | [] | pwdutils | [] | pyspread | | radius | [] | recode | [] [] [] [] [] [] [] | recutils | | rpm | [] | rush | [] | sarg | | sed | [] [] [] [] [] [] [] | sharutils | | shishi | | skribilo | [] | solfege | [] [] | solfege-manual | | spotmachine | | sudo | [] [] [] [] | sudoers | [] [] [] | sysstat | [] [] [] [] | tar | [] [] [] [] [] [] | texinfo | [] [] [] | texinfo_document | [] [] [] | tigervnc | | tin | | tin-man | | tracgoogleappsa... | [] [] [] [] | trader | [] [] | util-linux | [] | ve | [] | vice | () () | vmm | | vorbis-tools | [] [] | wastesedge | [] | wcd | | wcd-man | | wdiff | [] [] [] | wget | [] [] [] [] | wyslij-po | [] [] [] | xboard | | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] [] [] | +-------------------------------------------------+ ga gd gl gu he hi hr hu hy ia id is it ja ka kk 35 2 47 4 8 2 60 71 2 6 81 11 87 57 0 3 kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl +--------------------------------------------------+ a2ps | [] [] | aegis | [] | anubis | [] [] [] | aspell | [] [] | bash | [] [] | bfd | | binutils | | bison | [] | bison-runtime | [] [] [] [] [] [] | buzztrax | | ccd2cue | | ccide | [] [] | cflow | [] | clisp | [] | coreutils | [] [] | cpio | [] | cppi | | cpplib | [] | cryptsetup | [] | datamash | [] [] | denemo | | dfarc | [] [] | dialog | [] [] [] [] [] [] | dico | | diffutils | [] [] [] | dink | [] | direvent | [] | doodle | [] | dos2unix | [] [] | dos2unix-man | [] | e2fsprogs | [] | enscript | [] | exif | [] [] [] | fetchmail | [] | findutils | [] [] | flex | [] | freedink | [] [] | fusionforge | | gas | | gawk | [] | gcal | | gcc | | gdbm | | gettext-examples | [] [] [] [] [] [] | gettext-runtime | [] [] [] | gettext-tools | [] | gjay | | glunarclock | [] [] | gnubiff | [] | gnubik | [] [] | gnucash | () () () () () () () [] | gnuchess | [] [] | gnulib | [] | gnunet | | gnunet-gtk | | gold | | gphoto2 | [] | gprof | [] [] | gramadoir | [] | grep | [] [] | grub | [] [] [] | gsasl | [] | gss | | gst-plugins-bad | [] [] [] | gst-plugins-base | [] [] [] | gst-plugins-good | [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] | gstreamer | [] [] [] | gtick | [] | gtkam | [] [] | gtkspell | [] [] [] [] [] [] [] | guix | | guix-packages | | gutenprint | [] | hello | [] [] [] | help2man | [] | help2man-texi | | hylafax | [] | idutils | [] | iso_15924 | () [] [] | iso_3166 | [] [] [] () [] [] [] [] [] [] | iso_3166_2 | () [] | iso_4217 | () [] [] [] | iso_639 | [] [] () [] [] [] [] | iso_639_3 | [] () [] | iso_639_5 | () | jwhois | [] [] | kbd | [] | klavaro | [] [] | ld | | leafpad | [] [] [] [] [] | libc | [] [] | libexif | [] | libextractor | [] | libgnutls | [] [] | libgphoto2 | [] | libgphoto2_port | [] | libgsasl | [] | libiconv | [] [] | libidn | [] | liferea | [] [] [] | lilypond | [] | lordsawar | | lprng | | lynx | [] | m4 | [] | mailfromd | | mailutils | | make | [] [] | man-db | [] | man-db-manpages | [] | midi-instruments | [] [] [] [] [] [] [] | minicom | [] | mkisofs | [] | myserver | | nano | [] [] [] | opcodes | [] | parted | [] [] | pies | | pnmixer | [] | popt | [] [] [] [] [] | procps-ng | | procps-ng-man | | psmisc | [] | pspp | [] [] | pushover | | pwdutils | [] | pyspread | | radius | [] | recode | [] [] | recutils | [] | rpm | [] | rush | [] | sarg | | sed | [] [] | sharutils | [] | shishi | | skribilo | | solfege | [] [] | solfege-manual | [] | spotmachine | [] | sudo | [] [] [] | sudoers | [] [] [] | sysstat | [] [] | tar | [] [] [] | texinfo | [] | texinfo_document | [] | tigervnc | [] | tin | | tin-man | | tracgoogleappsa... | [] [] [] | trader | [] | util-linux | [] | ve | [] | vice | [] | vmm | [] | vorbis-tools | [] | wastesedge | [] | wcd | [] | wcd-man | [] | wdiff | [] | wget | [] [] | wyslij-po | [] | xboard | [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] | +--------------------------------------------------+ kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl 5 15 4 6 0 13 23 3 3 3 4 11 2 42 1 125 nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr +------------------------------------------------+ a2ps | [] [] [] [] [] [] [] | aegis | [] [] | anubis | [] [] [] | aspell | [] [] [] [] [] [] [] | bash | [] [] [] [] [] [] | bfd | [] [] | binutils | [] [] | bison | [] [] [] | bison-runtime | [] [] [] [] [] [] [] [] | buzztrax | [] | ccd2cue | [] [] | ccide | [] [] [] | cflow | [] [] [] | clisp | [] | coreutils | [] [] [] [] | cpio | [] [] [] | cppi | [] [] [] | cpplib | [] [] [] | cryptsetup | [] [] [] | datamash | [] [] | denemo | | dfarc | [] [] [] | dialog | [] [] [] [] [] [] [] | dico | [] | diffutils | [] [] [] | dink | | direvent | [] [] [] | doodle | [] [] | dos2unix | [] [] [] [] | dos2unix-man | [] [] | e2fsprogs | [] | enscript | [] [] [] [] [] [] | exif | [] [] [] [] [] [] | fetchmail | [] [] [] | findutils | [] [] [] [] [] [] | flex | [] [] [] [] [] | freedink | [] [] [] [] [] | fusionforge | | gas | | gawk | [] | gcal | | gcc | | gdbm | [] [] [] | gettext-examples | [] [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] [] [] [] | gettext-tools | [] [] [] [] [] [] [] | gjay | [] | glunarclock | [] [] [] [] [] [] | gnubiff | [] | gnubik | [] [] [] [] | gnucash | () () () () () [] | gnuchess | [] [] | gnulib | [] [] [] [] [] | gnunet | | gnunet-gtk | | gold | | gphoto2 | [] [] [] [] [] | gprof | [] [] [] [] | gramadoir | [] [] | grep | [] [] [] [] [] [] | grub | [] [] [] [] [] | gsasl | [] [] [] | gss | [] [] [] [] | gst-plugins-bad | [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] [] | gstreamer | [] [] [] [] [] [] [] | gtick | [] [] [] [] [] | gtkam | [] [] [] [] [] [] | gtkspell | [] [] [] [] [] [] [] [] [] | guix | | guix-packages | | gutenprint | [] [] | hello | [] [] [] [] [] [] | help2man | [] [] [] [] | help2man-texi | [] | hylafax | | idutils | [] [] [] | iso_15924 | [] () [] [] [] [] | iso_3166 | [] [] [] [] () [] [] [] [] [] [] [] [] | iso_3166_2 | [] () [] | iso_4217 | [] [] () [] [] [] [] [] | iso_639 | [] [] [] () [] [] [] [] [] [] | iso_639_3 | [] () | iso_639_5 | () [] | jwhois | [] [] [] [] | kbd | [] [] | klavaro | [] [] [] [] [] | ld | | leafpad | [] [] [] [] [] [] [] [] | libc | [] [] [] | libexif | [] () [] | libextractor | [] | libgnutls | [] | libgphoto2 | [] | libgphoto2_port | [] [] [] [] [] | libgsasl | [] [] [] [] | libiconv | [] [] [] [] [] | libidn | [] [] [] | liferea | [] [] [] [] () [] [] | lilypond | | lordsawar | | lprng | [] | lynx | [] [] | m4 | [] [] [] [] [] | mailfromd | [] | mailutils | [] | make | [] [] [] | man-db | [] [] [] | man-db-manpages | [] [] [] | midi-instruments | [] [] [] [] [] [] [] [] | minicom | [] [] [] [] | mkisofs | [] [] [] | myserver | [] [] | nano | [] [] [] [] [] [] | opcodes | | parted | [] [] [] [] [] [] | pies | [] | pnmixer | [] | popt | [] [] [] [] [] [] | procps-ng | [] | procps-ng-man | [] | psmisc | [] [] [] [] | pspp | [] [] | pushover | | pwdutils | [] | pyspread | [] [] | radius | [] [] | recode | [] [] [] [] [] [] [] [] | recutils | [] [] | rpm | [] | rush | [] [] [] | sarg | [] [] | sed | [] [] [] [] [] [] [] [] | sharutils | [] [] [] | shishi | [] [] | skribilo | [] | solfege | [] [] [] | solfege-manual | [] [] | spotmachine | [] [] | sudo | [] [] [] [] [] [] | sudoers | [] [] [] [] | sysstat | [] [] [] [] [] | tar | [] [] [] [] [] | texinfo | [] [] [] | texinfo_document | [] [] | tigervnc | [] [] [] | tin | [] | tin-man | | tracgoogleappsa... | [] [] [] [] | trader | [] [] | util-linux | [] [] | ve | [] [] [] | vice | | vmm | | vorbis-tools | [] [] [] | wastesedge | | wcd | | wcd-man | | wdiff | [] [] [] [] [] | wget | [] [] [] [] [] | wyslij-po | [] [] [] [] | xboard | [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] | +------------------------------------------------+ nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr 7 3 6 114 1 12 88 32 82 3 40 45 7 101 sv sw ta te tg th tr uk ur vi wa wo zh_CN +----------------------------------------------+ a2ps | [] [] [] [] [] | aegis | [] | anubis | [] [] [] [] | aspell | [] [] [] [] [] | bash | [] [] [] [] | bfd | [] [] [] | binutils | [] [] [] | bison | [] [] [] [] | bison-runtime | [] [] [] [] [] [] | buzztrax | [] [] [] | ccd2cue | [] [] [] | ccide | [] [] [] [] | cflow | [] [] [] [] | clisp | | coreutils | [] [] [] | cpio | [] [] [] [] [] | cppi | [] [] [] [] | cpplib | [] [] [] [] [] | cryptsetup | [] [] [] | datamash | [] [] [] | denemo | [] | dfarc | [] [] | dialog | [] [] [] [] [] [] | dico | [] | diffutils | [] [] [] [] [] | dink | [] | direvent | [] [] | doodle | [] [] | dos2unix | [] [] [] [] | dos2unix-man | [] [] [] | e2fsprogs | [] [] [] [] | enscript | [] [] [] [] | exif | [] [] [] [] [] | fetchmail | [] [] [] [] | findutils | [] [] [] [] [] | flex | [] [] [] [] | freedink | [] [] [] | fusionforge | | gas | [] | gawk | [] [] [] | gcal | [] [] [] | gcc | [] | gdbm | [] [] | gettext-examples | [] [] [] [] [] | gettext-runtime | [] [] [] [] [] | gettext-tools | [] [] [] [] [] | gjay | [] [] [] | glunarclock | [] [] [] [] | gnubiff | [] [] | gnubik | [] [] [] [] | gnucash | () () () () [] | gnuchess | [] [] [] | gnulib | [] [] [] [] | gnunet | | gnunet-gtk | | gold | [] [] | gphoto2 | [] [] [] [] | gprof | [] [] [] [] | gramadoir | [] [] [] | grep | [] [] [] [] [] | grub | [] [] [] [] | gsasl | [] [] [] [] | gss | [] [] [] | gst-plugins-bad | [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] [] [] | gtkam | [] [] [] [] | gtkspell | [] [] [] [] [] [] [] | guix | | guix-packages | | gutenprint | [] [] [] [] | hello | [] [] [] [] [] [] | help2man | [] [] [] | help2man-texi | [] | hylafax | [] | idutils | [] [] [] | iso_15924 | [] () [] [] () [] | iso_3166 | [] [] () [] [] () [] [] | iso_3166_2 | () [] [] () [] | iso_4217 | [] () [] [] () [] | iso_639 | [] [] [] () [] [] () [] [] | iso_639_3 | [] () [] [] () | iso_639_5 | () [] () | jwhois | [] [] [] [] | kbd | [] [] [] [] | klavaro | [] [] [] [] [] [] | ld | [] [] [] [] [] | leafpad | [] [] [] [] [] [] | libc | [] [] [] [] [] | libexif | [] [] () | libextractor | [] [] | libgnutls | [] [] [] [] | libgphoto2 | [] [] [] | libgphoto2_port | [] [] [] [] | libgsasl | [] [] [] [] | libiconv | [] [] [] [] [] | libidn | () [] [] [] | liferea | [] [] [] [] [] | lilypond | [] | lordsawar | | lprng | [] | lynx | [] [] [] [] | m4 | [] [] [] | mailfromd | [] [] | mailutils | [] | make | [] [] [] [] | man-db | [] [] [] | man-db-manpages | [] [] | midi-instruments | [] [] [] [] [] [] | minicom | [] [] | mkisofs | [] [] [] | myserver | [] | nano | [] [] [] [] | opcodes | [] [] [] | parted | [] [] [] [] [] | pies | [] [] | pnmixer | [] [] [] | popt | [] [] [] [] [] [] [] | procps-ng | [] [] | procps-ng-man | [] | psmisc | [] [] [] [] | pspp | [] [] [] | pushover | [] | pwdutils | [] [] | pyspread | [] | radius | [] [] | recode | [] [] [] [] | recutils | [] [] [] | rpm | [] [] [] [] | rush | [] [] | sarg | | sed | [] [] [] [] [] | sharutils | [] [] [] [] | shishi | [] [] | skribilo | [] [] | solfege | [] [] [] [] | solfege-manual | [] | spotmachine | [] [] [] | sudo | [] [] [] [] [] | sudoers | [] [] [] [] | sysstat | [] [] [] [] [] | tar | [] [] [] [] [] | texinfo | [] [] [] | texinfo_document | [] | tigervnc | [] [] [] | tin | [] | tin-man | | tracgoogleappsa... | [] [] [] [] [] | trader | [] | util-linux | [] [] [] [] | ve | [] [] [] [] | vice | () () | vmm | | vorbis-tools | [] [] | wastesedge | | wcd | [] [] [] | wcd-man | [] | wdiff | [] [] [] [] | wget | [] [] [] | wyslij-po | [] [] | xboard | [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] | +----------------------------------------------+ sv sw ta te tg th tr uk ur vi wa wo zh_CN 106 1 4 3 0 13 51 115 1 125 7 1 100 zh_HK zh_TW +-------------+ a2ps | | 30 aegis | | 9 anubis | | 19 aspell | | 29 bash | [] | 23 bfd | | 11 binutils | | 12 bison | [] | 18 bison-runtime | [] | 38 buzztrax | | 9 ccd2cue | | 10 ccide | | 17 cflow | | 16 clisp | | 10 coreutils | | 18 cpio | | 20 cppi | | 17 cpplib | [] | 19 cryptsetup | | 14 datamash | | 11 denemo | | 5 dfarc | | 17 dialog | [] | 42 dico | | 6 diffutils | | 22 dink | | 10 direvent | | 11 doodle | | 12 dos2unix | [] | 18 dos2unix-man | | 9 e2fsprogs | | 15 enscript | | 21 exif | | 27 fetchmail | | 19 findutils | | 29 flex | [] | 19 freedink | | 24 fusionforge | | 3 gas | | 5 gawk | | 13 gcal | | 8 gcc | | 2 gdbm | | 10 gettext-examples | [] [] | 40 gettext-runtime | [] [] | 35 gettext-tools | [] | 24 gjay | | 9 glunarclock | [] | 27 gnubiff | | 9 gnubik | | 19 gnucash | () | 6 gnuchess | | 11 gnulib | | 23 gnunet | | 1 gnunet-gtk | | 1 gold | | 7 gphoto2 | [] | 19 gprof | | 21 gramadoir | | 14 grep | [] | 31 grub | | 21 gsasl | [] | 19 gss | | 17 gst-plugins-bad | | 21 gst-plugins-base | | 27 gst-plugins-good | | 32 gst-plugins-ugly | | 34 gstreamer | [] | 32 gtick | | 19 gtkam | | 24 gtkspell | [] [] | 48 guix | | 2 guix-packages | | 0 gutenprint | | 15 hello | [] | 30 help2man | | 18 help2man-texi | | 5 hylafax | | 5 idutils | | 14 iso_15924 | [] | 23 iso_3166 | [] [] | 58 iso_3166_2 | | 9 iso_4217 | [] [] | 28 iso_639 | [] [] | 46 iso_639_3 | | 10 iso_639_5 | | 2 jwhois | [] | 20 kbd | | 17 klavaro | | 30 ld | [] | 15 leafpad | [] | 39 libc | [] | 24 libexif | | 10 libextractor | | 5 libgnutls | | 13 libgphoto2 | | 10 libgphoto2_port | [] | 19 libgsasl | | 18 libiconv | [] | 29 libidn | | 17 liferea | | 29 lilypond | | 11 lordsawar | | 3 lprng | | 3 lynx | | 19 m4 | [] | 22 mailfromd | | 4 mailutils | | 6 make | | 19 man-db | | 15 man-db-manpages | | 10 midi-instruments | [] | 43 minicom | [] | 17 mkisofs | | 13 myserver | | 9 nano | [] | 30 opcodes | | 12 parted | [] | 23 pies | | 4 pnmixer | | 9 popt | [] | 36 procps-ng | | 5 procps-ng-man | | 4 psmisc | [] | 22 pspp | | 13 pushover | | 6 pwdutils | | 8 pyspread | | 6 radius | | 9 recode | | 31 recutils | | 10 rpm | [] | 13 rush | | 10 sarg | | 4 sed | [] | 35 sharutils | | 13 shishi | | 7 skribilo | | 7 solfege | | 21 solfege-manual | | 9 spotmachine | | 11 sudo | | 26 sudoers | | 22 sysstat | | 23 tar | [] | 30 texinfo | | 17 texinfo_document | | 13 tigervnc | | 14 tin | [] | 7 tin-man | | 1 tracgoogleappsa... | [] | 22 trader | | 12 util-linux | | 13 ve | | 14 vice | | 1 vmm | | 3 vorbis-tools | | 13 wastesedge | | 3 wcd | | 8 wcd-man | | 3 wdiff | [] | 23 wget | | 21 wyslij-po | | 14 xboard | | 10 xdg-user-dirs | [] [] | 68 xkeyboard-config | [] | 28 +-------------+ 89 teams zh_HK zh_TW 166 domains 7 42 2809 Some counters in the preceding matrix are higher than the number of visible blocks let us expect. This is because a few extra PO files are used for implementing regional variants of languages, or language dialects. For a PO file in the matrix above to be effective, the package to which it applies should also have been internationalized and distributed as such by its maintainer. There might be an observable lag between the mere existence a PO file and its wide availability in a distribution. If Jun 2014 seems to be old, you may fetch a more recent copy of this 'ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix with full percentage details can be found at 'http://translationproject.org/extra/matrix.html'. 1.5 Using 'gettext' in new packages =================================== If you are writing a freely available program and want to internationalize it you are welcome to use GNU 'gettext' in your package. Of course you have to respect the GNU Lesser General Public License which covers the use of the GNU 'gettext' library. This means in particular that even non-free programs can use 'libintl' as a shared library, whereas only free software can use 'libintl' as a static library or use modified versions of 'libintl'. Once the sources are changed appropriately and the setup can handle the use of 'gettext' the only thing missing are the translations. The Free Translation Project is also available for packages which are not developed inside the GNU project. Therefore the information given above applies also for every other Free Software Project. Contact 'coordinator@translationproject.org' to make the '.pot' files available to the translation teams. realmd-0.17.1/po/0000755003225100322510000000000014315277004013775 5ustar00sbosesbose00000000000000realmd-0.17.1/po/ro.po0000644003225100322510000003354114315277002014761 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Romanian (http://www.transifex.com/freedesktop/realmd/" "language/ro/)\n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" "2:1));\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/mr.gmo0000644003225100322510000000073414315277003015122 0ustar00sbosesbose00000000000000Þ•$,8¢9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Marathi (http://www.transifex.com/freedesktop/realmd/language/mr/) Language: mr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/stamp-po0000644003225100322510000000001214315277003015450 0ustar00sbosesbose00000000000000timestamp realmd-0.17.1/po/ru.po0000644003225100322510000006206014315277002014765 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Serge Vylekzhanin , 2014-2015 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 19:43+0000\n" "Last-Translator: Serge Vylekzhanin \n" "Language-Team: Russian (http://www.transifex.com/freedesktop/realmd/language/" "ru/)\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " "(n%100>=11 && n%100<=14)? 2 : 3);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Обнаружение облаÑти" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Ð”Ð»Ñ Ð¾Ð±Ð½Ð°Ñ€ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð¾Ð±Ð»Ð°Ñти ÐšÐµÑ€Ð±ÐµÑ€Ð¾Ñ Ñ‚Ñ€ÐµÐ±ÑƒÐµÑ‚ÑÑ Ð°ÑƒÑ‚ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "ПриÑоединить машину к облаÑти" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "Ð”Ð»Ñ Ð¿Ñ€Ð¸ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð¼Ð°ÑˆÐ¸Ð½Ñ‹ к облаÑти или домену требуетÑÑ Ð°ÑƒÑ‚ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Удалить машину из облаÑти" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Ð”Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ñтого компьютера из облаÑти или домена требуетÑÑ Ð°ÑƒÑ‚ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Изменить политику входа" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Ð”Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð»Ð¸Ñ‚Ð¸ÐºÐ¸ входа на Ñтот компьютер требуетÑÑ Ð°ÑƒÑ‚ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "ПроцеÑÑ Ð±Ñ‹Ð» прерван Ñигналом: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "ÐžÐ¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ð±Ñ‹Ð»Ð° отменена" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "ÐаÑÑ‚Ñ€Ð¾ÐµÐ½Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° не найдена: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "ÐŸÑ€Ð¾Ð¿ÑƒÑ‰ÐµÐ½Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð°: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "ÐаÑÑ‚Ñ€Ð¾ÐµÐ½Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° неверна: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Получены неверные или неподдерживаемые данные входа в Ñеть Ñ Ñервера" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "LDAP на Ñтом компьютере не поддерживает UDP ÑоединениÑ" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Ðеподдерживаемое или неизвеÑтное ПО Ð´Ð»Ñ Ñ‡Ð»ÐµÐ½Ñтва '%s'" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Уже приÑоединены к домену" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Ð˜Ð¼Ñ Ð¸Ð»Ð¸ пароль админиÑтратора недейÑтвительны" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Ð’ наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð½Ðµ приÑоединены к Ñтому домену" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Ðеобходимы учетные данные Ð´Ð»Ñ Ð¿Ð¾ÐºÐ¸Ð´Ð°Ð½Ð¸Ñ Ñтого домена" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Ðе удалоÑÑŒ запиÑать конфигурацию: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Ðе авторизованы Ð´Ð»Ñ Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ñтого дейÑтвиÑ" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "ÐžÐ¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ð±Ñ‹Ð»Ð° отменена." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" "Ðе удалоÑÑŒ внеÑти машину в облаÑть. Смотрите диагноÑтичеÑкие ÑообщениÑ." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" "Ðе удалоÑÑŒ вывеÑти машину из домена. Смотрите диагноÑтичеÑкие ÑообщениÑ." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "ПриÑоединение к Ñтой облаÑти без учетных данных не поддерживаетÑÑ" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "ОтÑоединение от Ñтой облаÑти без учетных данных не поддерживаетÑÑ" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "ПриÑоединение к Ñтой облаÑти Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ кÑша учетных данных не поддерживаетÑÑ" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "ОтÑоединение от Ñтой облаÑти Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ кÑша учетных данных не поддерживаетÑÑ" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" "ПриÑоединение к Ñтой облаÑти Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Ñекретного кода не поддерживаетÑÑ" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Покидание Ñтой облаÑти Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Ñекретного кода не поддерживаетÑÑ" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Ð’Ñтупление в Ñту облаÑть Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ðµ поддерживаетÑÑ" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Покидание Ñтой облаÑти Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ðµ поддерживаетÑÑ" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "ПриÑоединение к Ñтой облаÑти не поддерживаетÑÑ" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "ОтÑоединение от Ñтой облаÑти не поддерживаетÑÑ" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Уже запущено другое дейÑтвие" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Уже приÑоединены к другому домену: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" "Ðе удалоÑÑŒ изменить разрешённые учётные запиÑи. Смотрите диагноÑтичеÑкие " "ÑообщениÑ." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "ОблаÑть не позволÑет определÑть логины" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "Ðеверный аргумент учётной запиÑи %s%s%s не ÑоответÑтвует формату входа в " "ÑиÑтему." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Следующие пакеты не доÑтупны Ð´Ð»Ñ ÑƒÑтановки: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Ðеобходимые пакеты не уÑтановлены: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "УÑтановка необходимых пакетов" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Ðе удалоÑÑŒ обнаружить облаÑть. Смотрите диагноÑтичеÑкие ÑообщениÑ." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Ðе приÑоединены к Ñтому домену" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Провайдер Samba не может ограничить разрешенные учётные запиÑи." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" "Ðеверный аргумент учётной запиÑи '%s' Ñодержит неподдерживаемые Ñимволы." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Включение SSSD в nsswitch.conf и PAM не удалоÑÑŒ." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Ðевозможно автоматичеÑки приÑоединитьÑÑ Ðº домену" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "ПриÑоединение к домену Ñ Ð¾Ð´Ð½Ð¾Ñ€Ð°Ð·Ð¾Ð²Ñ‹Ð¼ паролем поддерживаетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ñ ÐŸÐž Ð´Ð»Ñ " "членÑтва '%s'" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "ПриÑоединение к домену Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒÑким паролем поддерживаетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ñ ÐŸÐž " "Ð´Ð»Ñ Ñ‡Ð»ÐµÐ½Ñтва '%s'" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Ðеподдерживаемые учетные данные Ð´Ð»Ñ Ð¿Ñ€Ð¸ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ðº домену" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Уже приÑоединены к Ñтому домену" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Домен Ñ Ñ‚Ð°ÐºÐ¸Ð¼ именем уже наÑтроен" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Уже еÑть домен %s в конфигурационном файле sssd.conf" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "ОтÑутÑтвует домен %s в конфигурационном файле sssd.conf" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" "Ðргумент «computer-ou» не поддерживаетÑÑ Ð¿Ñ€Ð¸ приÑоединении к домену IPA." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" "Ðргумент «computer-ou» не поддерживаетÑÑ Ð¿Ñ€Ð¸ приÑоединении к домену IPA." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Ð’ наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð½Ðµ приÑоединены к Ñтой облаÑти" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Обнаружение доÑтупной облаÑти" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "ВнеÑти Ñту машину в облаÑть" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "ВывеÑти Ñту машину из облаÑти" #: tools/realm.c:43 msgid "List known realms" msgstr "СпиÑок извеÑтных облаÑтей" #: tools/realm.c:44 msgid "Permit user logins" msgstr "ПозволÑть пользовательÑкие учётные запиÑи" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Запрещать пользовательÑкие учётные запиÑи" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Ðеверное значение параметра %s: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "УÑтановить режим в определённый префикÑ" #: tools/realm.c:215 msgid "Verbose output" msgstr "Подробный вывод" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Ðе выводить подÑказки при вводе" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Ðе удалоÑÑŒ подключитьÑÑ Ðº Ñлужбе облаÑти" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Ðе удалоÑÑŒ загрузить Ñлужбу облаÑти" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Ðе удалоÑÑŒ подключитьÑÑ Ðº ÑиÑтемной шине" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Ðе удалоÑÑŒ Ñоздать пару Ñокетов: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Ðе удалоÑÑŒ Ñоздать Ñокет" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Ðе удалоÑÑŒ запуÑтить realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Ðе удалоÑÑŒ Ñоздать каталог во Ð²Ñ€ÐµÐ¼Ñ Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Ðе удалоÑÑŒ Ñоздать кÑш-файл учётных данных: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Ðе удалоÑÑŒ определить кÑш учётных данных" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Ðеверный пароль %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Ðевозможно проверить подлинноÑть %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Ðе удалоÑÑŒ разобрать Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Ðе удалоÑÑŒ прочитать кÑш учётных данных" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Ðе удалоÑÑŒ инициализировать Kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" "ÐÐµÐ»ÑŒÐ·Ñ Ð²Ñ‹Ð²Ð¾Ð´Ð¸Ñ‚ÑŒ Ð·Ð°Ð¿Ñ€Ð¾Ñ Ð½Ð° ввод Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð¿Ñ€Ð¸ работе в автоматичеÑком режиме" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Пароль Ð´Ð»Ñ %s:" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Ðе удалоÑÑŒ запроÑить пароль: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "ОблаÑть не поддерживает членÑтво при помощи паролÑ" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "ОблаÑть не поддерживает членÑтво при помощи одноразового паролÑ" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Ðевозможно выбрать учётные данные Kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Ðевозможно прочитать учётные данные Kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "ОблаÑть не поддерживает автоматичеÑкое членÑтво" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Ðе удалоÑÑŒ обнаружить облаÑти" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "ОблаÑть по умолчанию не обнаружена" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Таких облаÑтей не найдено: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Показать вÑе обнаруженные облаÑти" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Показать только имена" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "ИÑпользовать определённый клиент ПО" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "ИÑпользовать определённое ПО Ð´Ð»Ñ Ñ‡Ð»ÐµÐ½Ñтва" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "ИÑпользовать определённое Ñерверное ПО" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Показать вÑе облаÑти" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Ðе удалоÑÑŒ приÑоединитьÑÑ Ðº облаÑти" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Ðе могу приÑоединитьÑÑ Ðº Ñтой облаÑти" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Ð¢Ð°ÐºÐ°Ñ Ð¾Ð±Ð»Ð°Ñть не найдена" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Отключить автоматичеÑкую привÑзку идентификаторов" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "ИÑпользовать определённый клиент ПО" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "Компьютерные «OU DN» Ð´Ð»Ñ Ð¿Ñ€Ð¸ÑоединениÑ" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "ПриÑоединÑтьÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑки, без ввода паролÑ" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "ПриÑоединÑтьÑÑ, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð¿Ñ€ÐµÐ´ÑƒÑтановленный одноразовый пароль" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "ИÑпользовать определённый клиент ПО" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "ИÑпользовать определённое Ñерверное ПО" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð´Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¸ вÑтуплении" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "УÑтановить главного Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð´Ð»Ñ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ запиÑи компьютера" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Определите одну облаÑть Ð´Ð»Ñ Ð¿Ñ€Ð¸ÑоединениÑ" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Ðргумент «--no-password» не может быть иÑпользован Ñ Â«--one-time-password» " "или «--user»" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "Ðргумент «--one-time-password» не может быть иÑпользован Ñ Â«--user»" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Ðе удалоÑÑŒ покинуть облаÑть" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Удалить компьютер из облаÑти" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð´Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¸ удалении" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Ðевозможно изменить разрешённые учётные запиÑи" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Разрешить региÑтрацию любой учётной запиÑи облаÑти" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Запретить региÑтрацию любой учётной запиÑи облаÑти" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Отозвать разрешение учётной запиÑи облаÑти на региÑтрацию." #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Трактовать имена как группы, которые разрешены" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "ОблаÑть Ð´Ð»Ñ Ñ€Ð°Ð·Ñ€ÐµÑˆÐµÐ½Ð¸Ñ/Ð·Ð°Ð¿Ñ€ÐµÑ‰ÐµÐ½Ð¸Ñ ÑƒÑ‡Ñ‘Ñ‚Ð½Ñ‹Ñ… запиÑей" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Учётные запиÑи не должны быть указаны Ñ Â«-a» или «--all»" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "Ðргументы «--withdraw» или «-x» не могут быть иÑпользованы при запрете " "учётных запиÑей" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Определённые учётные запиÑи должны быть определены Ñ Â«--withdraw»" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Группы не могут быть указаны Ñ Â«-a» или «--all»" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "ИÑпользовать «--all» Ð´Ð»Ñ Ð·Ð°Ð¿Ñ€ÐµÑ‰ÐµÐ½Ð¸Ñ Ð²Ñех учётных запиÑей" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Указать определённых пользователей Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¸Ð»Ð¸ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð²/из " "разрешённого ÑпиÑка" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Указание Ð·Ð°Ð¿Ñ€ÐµÑ‰ÐµÐ½Ð¸Ñ Ð±ÐµÐ· «--all» не рекомендуетÑÑ. ИÑпользуйте разрешение " "облаÑти «--withdraw»" realmd-0.17.1/po/ia.gmo0000644003225100322510000000074014315277003015072 0ustar00sbosesbose00000000000000Þ•$,8¦9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Interlingua (http://www.transifex.com/freedesktop/realmd/language/ia/) Language: ia MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/eo.po0000644003225100322510000003346614315277002014752 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Esperanto (http://www.transifex.com/freedesktop/realmd/" "language/eo/)\n" "Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/he.po0000644003225100322510000003362414315277002014737 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Hebrew (http://www.transifex.com/freedesktop/realmd/language/" "he/)\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % " "1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/as.po0000644003225100322510000003346514315277002014751 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Assamese (http://www.transifex.com/freedesktop/realmd/" "language/as/)\n" "Language: as\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/Makevars0000664003225100322510000000662114216036521015475 0ustar00sbosesbose00000000000000# Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # These options get passed to xgettext. XGETTEXT_OPTIONS = --from-code=UTF-8 --keyword=_ --keyword=N_ --keyword=C_:1c,2 --keyword=NC_:1c,2 --keyword=g_dngettext:2,3 --add-comments # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = Collabora Ltd., Red Hat Inc. # This tells whether or not to prepend "GNU " prefix to the package # name that gets inserted into the header of the $(DOMAIN).pot file. # Possible values are "yes", "no", or empty. If it is empty, try to # detect it automatically by scanning the files in $(top_srcdir) for # "GNU packagename" string. PACKAGE_GNU = no # This is the email address or URL to which the translators shall report # bugs in the untranslated strings: # - Strings which are not entire sentences, see the maintainer guidelines # in the GNU gettext documentation, section 'Preparing Strings'. # - Strings which use unclear terms or require additional context to be # understood. # - Strings which make invalid assumptions about notation of date, time or # money. # - Pluralisation problems. # - Incorrect English spelling. # - Incorrect formatting. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. MSGID_BUGS_ADDRESS = # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = # This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' # context. Possible values are "yes" and "no". Set this to yes if the # package uses functions taking also a message context, like pgettext(), or # if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. USE_MSGCTXT = no # These options get passed to msgmerge. # Useful options are in particular: # --previous to keep previous msgids of translated messages, # --quiet to reduce the verbosity. MSGMERGE_OPTIONS = # These options get passed to msginit. # If you want to disable line wrapping when writing PO files, add # --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and # MSGINIT_OPTIONS. MSGINIT_OPTIONS = # This tells whether or not to regenerate a PO file when $(DOMAIN).pot # has changed. Possible values are "yes" and "no". Set this to no if # the POT file is checked in the repository and the version control # program ignores timestamps. PO_DEPENDS_ON_POT = yes # This tells whether or not to forcibly update $(DOMAIN).pot and # regenerate PO files on "make dist". Possible values are "yes" and # "no". Set this to no if the POT file and PO files are maintained # externally. DIST_DEPENDS_ON_UPDATE_PO = yes realmd-0.17.1/po/ml.po0000644003225100322510000003346614315277002014757 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Malayalam (http://www.transifex.com/freedesktop/realmd/" "language/ml/)\n" "Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/insert-header.sin0000644003225100322510000000124014315276770017250 0ustar00sbosesbose00000000000000# Sed script that inserts the file called HEADER before the header entry. # # At each occurrence of a line starting with "msgid ", we execute the following # commands. At the first occurrence, insert the file. At the following # occurrences, do nothing. The distinction between the first and the following # occurrences is achieved by looking at the hold space. /^msgid /{ x # Test if the hold space is empty. s/m/m/ ta # Yes it was empty. First occurrence. Read the file. r HEADER # Output the file's contents by reading the next line. But don't lose the # current line while doing this. g N bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } realmd-0.17.1/po/ka.po0000644003225100322510000003346314315277002014737 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Georgian (http://www.transifex.com/freedesktop/realmd/" "language/ka/)\n" "Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/az.gmo0000644003225100322510000000074014315277003015113 0ustar00sbosesbose00000000000000Þ•$,8¦9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Azerbaijani (http://www.transifex.com/freedesktop/realmd/language/az/) Language: az MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/gu.po0000644003225100322510000003346514315277002014761 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Gujarati (http://www.transifex.com/freedesktop/realmd/" "language/gu/)\n" "Language: gu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/da.po0000644003225100322510000004726214315277002014732 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Joe Hansen , 2013-2016 # scootergrisen, 2019 # scootergrisen, 2019 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2019-03-08 19:02+0000\n" "Last-Translator: scootergrisen\n" "Language-Team: Danish (http://www.transifex.com/freedesktop/realmd/language/" "da/)\n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Registrer omrÃ¥de" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Godkendelse er krævet for at registrere et kerberosomrÃ¥de" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Slut maskine til omrÃ¥de" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Godkendelse er krævet for at slutte denne maskine til et omrÃ¥de eller domæne" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Fjern maskine fra omrÃ¥de" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Godkendelse er krævet for at fjerne denne computer fra et omrÃ¥de eller " "domæne." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Ændr loginpolitik" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Godkendelse er krævet for at ændre politikken for hvem der kan logge ind pÃ¥ " "denne computer." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Proces blev afsluttet med signal: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "Operationen blev afbrudt" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Konfigureret kommando blev ikke fundet: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Udeladt kommando: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Konfigureret kommando er ugyldig: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Modtog ugyldig eller ej understøttet Netlogon-data fra server" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "LDAP pÃ¥ dette system understøtter ikke UDP-forbindelser" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Ej understøttet eller ukendt medlemskabsprogram »%s«" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Allerede sluttet til et domæne" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Administratornavn eller adgangskode er ikke gyldig" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Er i øjeblikket ikke sluttet til dette domæne" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Skal bruge akkreditiver for at forlade dette domæne" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Kunne ikke skrive konfiguration: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Ikke godkendt til at udføre denne handling" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Operation blev afbrudt." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Kunne ikke tilmelde maskine i omrÃ¥de. Se diagnostik." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "Kunne ikke fjerne tilmelding af maskine fra domæne. Se diagnostik." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Tilslutning til dette omrÃ¥de uden akkreditiver er ikke understøttet" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "At forlade dette omrÃ¥de uden akkreditiver er ikke understøttet" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "Tilslutning til dette omrÃ¥de med et akkreditiv-mellemlager er ikke " "understøttet" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "At forlade dette omrÃ¥de via et akkreditiv-mellemlager er ikke understøttet" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" "Tilslutning til dette omrÃ¥de via en hemmelighed (secret) er ikke understøttet" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" "Fjernelse af tilmelding for dette omrÃ¥de med en hemmelighed er ikke " "understøttet" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" "Tilmelding af dette omrÃ¥de med brug af en adgangskode er ikke understøttet" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" "Fjernelse af tilmelding for dette omrÃ¥de med brug af en adgangskode er ikke " "understøttet" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Tilslutning til dette omrÃ¥de er ikke understøttet" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "At forlade dette omrÃ¥de er ikke understøttet" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Udfører allerede en anden handling" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Allerede tilsluttet et andet domæne: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "Kunne ikke ændre tilladte login. Se diagnostik." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "OmrÃ¥det tillader ikke specificering af login" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "Ugyldig loginparameter%s%s%s matcher ikke loginformatet." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "De følgende pakker er ikke tilgængelige for installation: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Nødvendige pakker er ikke installeret: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Installerer nødvendige pakker" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Kunne ikke registrere omrÃ¥de. Se diagnostik." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Ikke sluttet til dette domæne" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Sambaleverandøren kan ikke begrænse tilladte login." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "Ugyldig loginparameter »%s« indeholder tegn der ikke er understøttet." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Aktivering af SSSD i nsswitch.conf og PAM mislykkedes." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Kan ikke automatisk tilslutte til domænet" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Tilslutning til et domæne med en engangs adgangskode er kun understøttet med " "»%s«-medlemsprogrammet" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Tilslutning til et domæne med en brugeradgangskode er kun understøttet med " "»%s«-medlemsprogrammet" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Ej understøttet akkreditiver for tilslutning til et domæne" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Allerede sluttet til dette domæne" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Et domæne med dette navn er allerede konfigureret" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Har allerede domæne %s i sssd.conf-konfigurationsfilen" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Har ikke domænet %s i sssd.conf-konfigurationsfilen" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" "Argumentet computer-ou er ikke understøttet, nÃ¥r der tilsluttes til et IPA-" "domæne." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" "Argumentet computer-ou er ikke understøttet, nÃ¥r der tilsluttes til et IPA-" "domæne." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Er i øjeblikket ikke sluttet til dette realm" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Registrer tilgængelig omrÃ¥de" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Tilslut denne maskine i et omrÃ¥de" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Fjern tilslutning af denne maskine fra et omrÃ¥de" #: tools/realm.c:43 msgid "List known realms" msgstr "Vis kendte omrÃ¥der" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Tillad brugerlogin" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Nægt brugerlogin" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Ugyldig værdi for tilvalget %s: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Installationstilstand for et specifikt præfiks" #: tools/realm.c:215 msgid "Verbose output" msgstr "Uddybende uddata" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Spørg ikke efter inddata" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Kunne ikke forbinde til omrÃ¥detjeneste" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Kunne ikke indlæse omrÃ¥detjenesten" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Kunne ikke forbinde til systembussen" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Kunne ikke oprette sokkelpar: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Kunne ikke oprette sokkel" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Kunne ikke køre realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Kunne ikke oprette kørselstidsmappe: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Kunne ikke oprette akkreditiv-mellemlagerfil: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Kunne ikke slÃ¥ akkreditiv-mellemlager op" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Ugyldig adgangskode for %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Kunne ikke godkende som %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Kunne ikke fortolke brugernavn: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Kunne ikke læse akkreditiv-mellemlager" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Kunne ikke initialisere kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "Kan ikke anmode om adgangskode nÃ¥r tilstanden er unattended" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Adgangskode for %s: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Kunne ikke anmode om adgangskode: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Realm understøtter ikke medlemskab med brug af en adgangskode" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Realm understøtter ikke medlemskab via brug af en engangsadgangskode" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Kunne ikke vælge Kerberosakkreditiver" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Kunne ikke læse Kerberosakkreditiver" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Realm understøtter ikke automatisk medlemskab" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Kunne ikke registrere omrÃ¥der" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Intet standardomrÃ¥de registreret" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Intet sÃ¥dant omrÃ¥de fundet: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Vis alle registrerede omrÃ¥der" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Vis kun navnene" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Brug specifikt klientprogram" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Brug specifikt medlemskabsprogram" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Brug specifikt serverprogram" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Vis alle omrÃ¥der" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Kunne ikke sluttet til omrÃ¥de" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Kan ikke slutte sig til dette omrÃ¥de" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Intet sÃ¥dant omrÃ¥de fundet" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Sluk for automatisk id-oversættelse" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Brug specifikt klientprogram" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "Computer Ou DN at slutte til" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Tilslut automatisk uden en adgangskode" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Tilslut via en forhÃ¥ndsvalgt engangsadgangskode" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Brug specifikt klientprogram" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Brug specifikt serverprogram" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Brugernavn at bruge for indskrivning" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Angiv hovedbruger for computerkontoen" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Angiv et omrÃ¥de at tilslutte" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Parameteren --no-password kan ikke bruges sammen med --one-time-password " "eller --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "Parameteren --one-time-password kan ikke bruges sammen med --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Kunne ikke forlade omrÃ¥de" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Fjern computer fra omrÃ¥de" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Brugernavn at bruge for fjernelse" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Kunne ikke ændre tilladte login" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Tillad alle login for omrÃ¥dekonto" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Nægt alle login for omrÃ¥dekonto" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Træk tilladelse tilbage for omrÃ¥dekonto til login" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Opfat navne som grupper som at tillade" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "OmrÃ¥de at tillade/nægte login for" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Ingen login skal angives med -a eller --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "Parametrene --withdraw eller -x kan ikke bruges uden at nægte login" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Specifikke login skal angives med --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Grupper mÃ¥ ikke angives med -a eller --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Brug --all til at nægte alle login" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Angiv specifikke brugere at tilføje eller fjerne fra den tilladte liste" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Angivelse af deny uden --all er forældet. Brug omrÃ¥detilladelse --withdraw" realmd-0.17.1/po/pt_BR.gmo0000644003225100322510000003426414315277003015517 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,DÀq/2 (b ?‹ Ë "ç  !(!cD!A¨!Pê!S;"("M¸"'#!.#!P#'r#%š#:À#0û#4,$Ba$B¤$ç$+%&3%'Z%$‚%$§%/Ì%2ü%*/&-Z&1ˆ&0º&"ë&8'.G'(v'$Ÿ'Ä'à'ð'@(/I(#y(9(8×(3)<D)@)3Â)/ö)&*YF*h * +%!+%G+m+2ˆ+o»+m+,(™,GÂ,: -8E-8~-'·-Cß-7#.[.2t./§.×.?÷.7/M/&g/Ž/­/É/è/060'J0%r05˜0FÎ081*N1Fy1À1Ý16÷1".2Q2h2€2H•2$Þ2h3_l3OÌ3>4Z[4F¶4Jý4CH5Œ5*§5.Ò5%67'6&_6<†6=Ã637;574q7#¦7-Ê7$ø7&8'D8l86}8s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 15:03+0000 Last-Translator: Rafael Fontenelle Language-Team: Portuguese (Brazil) (http://www.transifex.com/freedesktop/realmd/language/pt_BR/) Language: pt_BR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); Um domínio com este nome já está configuradoNome de administrador ou senha inválidaJá existe O domínio %s no arquivo de configuração sssd.confJá associada a um domínioJá associada a outro domínio: %sJá associado a este domínioJá executando outra açãoAutenticação é necessária para alterara a política de quem pode se conectar a este computador.Autenticação é necessária para descobrir um reino em kerberosAutenticação é necessária para associar esta máquina a um reino ou domínioAutenticação é necessária para remover este computador de um reino ou domínio.Não foi possível associar a este reinoNão é possível solicitar uma senha ao ser executado em modo não assistidoAlterar política de início de sessãoComputador ou DN para se associarComando configurado inválido: %sComando configurado não encontrado: %sNão foi possível autenticar como %sNão foi possível alterar inícios de sessões permitidosNão foi possível conectar ao serviço de reinoNão foi possível conectar ao barramento do sistemaNão foi possível criar o arquivo de cache de credenciais: %s: %sNão foi possível criar diretório de tempo de execução: %s: %sNão foi possível criar socketNão foi possível criar par de sockets: %sNão foi possível descobrir os reinosNão foi possível inicializar kerberosNão foi possível associar ao reinoNão foi possível abandonar o reinoNão foi possível carregar o serviço de reinoNão foi possível analisar o nome de usuário: %sNão foi possível solicitar uma senha: %sNão foi possível ler o cache de credenciaisNão foi possível ler as credenciais do kerberosNão foi possível resolver cache de credenciaisNão foi possível executar realmdNão foi possível selecionar as credenciais do kerberosNão foi possível gravar a configuração: %sProibir qualquer jogin de conta de reinoNega a usuários iniciarem sessões.Descobrir reino disponívelDescobrir reinoNão solicitar entradasNão existe o domínio %s no arquivo de configuração sssd.confFalha ao habilitar SSSD em nsswitch.conf e PAM.Registrar esta máquina em um reinoNão há suporte a registrar neste reino usando uma senhaFalha ao alterar logins permitidas. Veja o diagnóstico.Falha ao descobrir o domínio. Veja o diagnóstico.Falha ao registrar a máquina no reino. Veja o diagnóstico.Falha ao desregistrar a máquina do domínio. Veja diagnóstico.Grupos não podem ser especificados com -a ou --allModo de instalação com um prefixo específicoInstalando pacotes necessáriosO argumento '%s' de início de sessão é inválido e contém caracteres não suportados.Argumento de início de sessão %s%s%s é inválido e não coincide com o formato de início de sessão.Senha inválida para %sValor inválido para a opção %s: %sAssocia automaticamente sem uma senhaAssociar máquina ao reinoAssocia usando uma senha predefinida de uso únicoAssociação a um domínio com uma senha de uso único tem suporte apenas com o software de participação "%s"Associação a um domínio com uma senha de usuário tem suporte apenas com o software de participação "%s"Não há suporte a associar a este reinoNão há suporte a associar a este reino usando um cache de credenciaisNão há suporte a associar a este reino usando um segredoNão há suporte a associar a este reino sem credenciaisO LDAP neste sistema não possui suporte a conexões UDPNão há suporte a abandonar este reinoNão há suporte a abandonar este reino sem um cache de credenciaisNão há suporte a abandonar este reino sem credenciaisListar reinos conhecidosOs pacotes necessários não estão instalados: %sRequer credenciais para abandonar este domínioNenhum reino padrão descobertoNenhum início de sessão deve ser especificado com -a ou --allReino não encontradoReino não encontrado: %sNão autorizado a realizar esta açãoNão associada a este domínioNão associada a este reinoNão associado a este domínioA operação foi cancelada.Senha para %s:Permitir qualquer início de sessão de conta de reinoPermite a usuários iniciarem sessões.Processo foi terminado c om sinal: %dO reino não tem suporte a participação automáticaReino não tem suporte a participação usando uma senha de uso únicoReino não tem suporte a participação usando uma senhaReino padrão o qual permitir/negar loginsForam recebidos dados inválidos ou sem suporte a Netlogon do servidorRemove o computador do reinoRemover máquina do reinoDefine o usuário principal para a conta do computadorMostra todos os reinos descobertosMostra todos os reinosMostra somente os nomesComando ignorado: %sInícios de sessões específicos devem ser especificados com --withdrawEspecifica um reino para se associarEspecifique usuários específicos para serem adicionaddos ou removidos da lista de usuários permitidosEspecificar proibição sem usar --all tornou-se obsoleto. Use a permissão de reino --withdrawO argumento --no-password não pode ser usado com --one-time-password ou --userO argumento --one-time-password não pode ser usado com --userOs argumentos --withdraw ou -x não podem ser usados ​​ao proibir inícios de sessõesO provedor Samba não pode restringir inícios de sessões permitidos.Não há suporte ao argumento --computer-ou ao associar a um domínio IPA.Os seguintes pacotes não estão disponíveis para instalação: %sA operação foi canceladaEste reino não permite especificar loginsTratar nomes como grupos a regular permissõesDesativa mapeamento automático de IDNão foi possível associar automaticamente ao domínioDesregistrar esta máquina de um reinoNão há suporte a desregistrar deste reino usando uma senhaNão há suporte a desregistrar deste reino usando um segredoCredenciais sem suporte para associar a um domínioSoftware de participação "%s" desconhecido ou sem suporteUse --all para proibir todos os inícios de sessõesUsa um software cliente específicoUsa um software de participação específicoUsa software de servidor específicoNome de usuário para usar no registroNome de usuário para usar na remoçãoSaída detalhadaRetirar permissão para uma conta de reino se conectarrealmd-0.17.1/po/fa.gmo0000644003225100322510000000073314315277003015071 0ustar00sbosesbose00000000000000Þ•$,8¡9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Persian (http://www.transifex.com/freedesktop/realmd/language/fa/) Language: fa MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); realmd-0.17.1/po/eo.gmo0000644003225100322510000000073614315277003015111 0ustar00sbosesbose00000000000000Þ•$,8¤9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Esperanto (http://www.transifex.com/freedesktop/realmd/language/eo/) Language: eo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/wa.gmo0000644003225100322510000000073314315277003015112 0ustar00sbosesbose00000000000000Þ•$,8¡9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Walloon (http://www.transifex.com/freedesktop/realmd/language/wa/) Language: wa MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); realmd-0.17.1/po/sr@latin.po0000644003225100322510000003362514315277003016121 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/freedesktop/realmd/" "language/sr@latin/)\n" "Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/ca@valencia.gmo0000644003225100322510000000077214315277003016674 0ustar00sbosesbose00000000000000Þ•$,8À9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Catalan (Valencian) (http://www.transifex.com/freedesktop/realmd/language/ca@valencia/) Language: ca@valencia MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/pl.gmo0000644003225100322510000003476114315277003015126 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D7q-© 3× 7 !C!$^!ƒ!%¢!aÈ!;*"Rf"P¹"& #I1#{#•#0µ#.æ#!$(7$,`$0$S¾$8%K%$h%%/ª%!Ú%ü%%&.?&!n&E&9Ö&G'$X'7}'$µ'Ú'ù'(.(A(.Z(E‰( Ï(Bð(Y3)N)\Ü)[9*/•*'Å*!í*I+HY+¢+)¿+"é+! ,2.,~a,}à,1^-m-Dþ-QC.3•.-É.d÷.M\/#ª/*Î/=ù/703W0‹0#«0.Ï0%þ0'$1L1j1€1#1 ´1+Õ112B324v24«2Eà2&3@33`3$”3¹3Ö3í3F4#M4Pq4UÂ4P5>i5N¨5:÷5N2696»6*Ù6'71,7.^7 7B®7Cñ7A58Aw8&¹8&à8+9&39*Z9+…9±9,Ä9s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 15:02+0000 Last-Translator: Piotr DrÄ…g Language-Team: Polish (http://www.transifex.com/freedesktop/realmd/language/pl/) Language: pl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3); Domena o tej nazwie jest już skonfigurowanaNazwa administratora lub hasÅ‚o jest nieprawidÅ‚oweDomena %s już istnieje w pliku konfiguracji sssd.confJuż dołączono do domenyJuż dołączono do innej domeny: %sJuż dołączono do tej domenyInne dziaÅ‚anie jest już uruchomioneWymagane jest uwierzytelnienie, aby zmienić politykÄ™ zezwalania na logowanie na tym komputerze.Wymagane jest uwierzytelnienie, aby wykryć obszar KerberosWymagane jest uwierzytelnienie, aby dołączyć ten komputer do obszaru lub domenyWymagane jest uwierzytelnienie, aby usunąć ten komputer z obszaru lub domeny.Nie można dołączyć do tego obszaruNie można zapytać o hasÅ‚o podczas dziaÅ‚ania w trybie bezobsÅ‚ugowymZmiana polityki logowaniaOU DN komputera do dołączeniaSkonfigurowane polecenie jest nieprawidÅ‚owe: %sNie odnaleziono skonfigurowanego polecenia: %sNie można uwierzytelnić jako %sNie można zmienić dozwolonych loginówNie można połączyć z usÅ‚ugÄ… obszarówNie można połączyć z magistralÄ… systemowÄ…Nie można utworzyć pliku pamiÄ™ci podrÄ™cznej danych uwierzytelniajÄ…cych: %s: %sNie można utworzyć katalogu czasu uruchamiania: %s: %sNie można utworzyć gniazdaNie można utworzyć pary gniazd: %sNie można wykryć obszarówNie można zainicjować oprogramowania KerberosNie można dołączyć do obszaruNie można opuÅ›cić obszaruNie można wczytać usÅ‚ugi obszarówNie można przetworzyć nazwy użytkownika: %sNie można zapytać o hasÅ‚o: %sNie można odczytać pamiÄ™ci podrÄ™cznej danych uwierzytelniajÄ…cychNie można odczytać danych uwierzytelniajÄ…cych KerberosNie można rozwiÄ…zać pamiÄ™ci podrÄ™cznej danych uwierzytelniajÄ…cychNie można uruchomić usÅ‚ugi realmdNie można wybrać danych uwierzytelniajÄ…cych KerberosNie można zapisać konfiguracji: %sOdmowa loginów kont obszarówOdmawia loginy użytkownikaWykrywa dostÄ™pny obszarWykrywanie obszaruBez pytania użytkownikaBrak domeny %s w pliku konfiguracji sssd.confWłączenie SSSD w pliku nsswitch.conf i w PAM siÄ™ nie powiodÅ‚o.Zapisuje ten komputer do obszaruZapisywanie do tego obszaru za pomocÄ… hasÅ‚a jest nieobsÅ‚ugiwaneZmiana dozwolonych loginów siÄ™ nie powiodÅ‚a. ProszÄ™ zobaczyć wyjÅ›cie diagnostyczne.Wykrycie obszaru siÄ™ nie powiodÅ‚o. ProszÄ™ zobaczyć wyjÅ›cie diagnostyczne.Zapisanie komputera do obszaru siÄ™ nie powiodÅ‚o. ProszÄ™ zobaczyć wyjÅ›cie diagnostyczne.Wypisanie komputera z domeny siÄ™ nie powiodÅ‚o. ProszÄ™ zobaczyć wyjÅ›cie diagnostyczne.Nie można podawać grup z opcjÄ… -a lub --allTryb instalacji do podanego przedrostkaInstalowanie wymaganych pakietówNieprawidÅ‚owy parametr logowania „%s†zawiera nieobsÅ‚ugiwane znaki.NieprawidÅ‚owy parametr logowania%s%s%s nie pasuje do formatu logowania.NieprawidÅ‚owe hasÅ‚o dla %sNieprawidÅ‚owa wartość dla opcji %s: %sDołącza automatycznie bez hasÅ‚aDołączenie komputera do obszaruDołącza za pomocÄ… obecnego jednorazowego hasÅ‚aDołączenie do domeny za pomocÄ… jednorazowego hasÅ‚a jest obsÅ‚ugiwane tylko za pomocÄ… oprogramowania czÅ‚onkostwa „%sâ€Dołączenie do domeny za pomocÄ… hasÅ‚a użytkownika jest obsÅ‚ugiwane tylko za pomocÄ… oprogramowania czÅ‚onkostwa „%sâ€Dołączenie do tego obszaru jest nieobsÅ‚ugiwaneDołączenie do tego obszaru za pomocÄ… pamiÄ™ci podrÄ™cznej danych uwierzytelniajÄ…cych jest nieobsÅ‚ugiwaneDołączenie do tego obszaru za pomocÄ… sekretu jest nieobsÅ‚ugiwaneDołączenie do tego obszaru bez danych uwierzytelniajÄ…cych jest nieobsÅ‚ugiwaneLDAP w tym systemie nie obsÅ‚uguje połączeÅ„ UDPOpuszczenie tego obszaru jest nieobsÅ‚ugiwaneOpuszczenie obszaru za pomocÄ… pamiÄ™ci podrÄ™cznej danych uwierzytelniajÄ…cych jest nieobsÅ‚ugiwaneOpuszczenie tego obszaru bez danych uwierzytelniajÄ…cych jest nieobsÅ‚ugiwaneWyÅ›wietla listÄ™ znanych obszarówWymagane pakiety nie sÄ… zainstalowane: %sWymagane sÄ… dane uwierzytelnienia, aby opuÅ›cić tÄ™ domenÄ™Nie wykryto domyÅ›lnego obszaruNie można podawać loginów z opcjÄ… -a lub --allNie odnaleziono takiego obszaruNie odnaleziono takiego obszaru: %sBrak upoważnienia do wykonania tej czynnoÅ›ciObecnie nie dołączono do tej domenyObecnie nie dołączono do tego obszaruNie dołączono do tej domenyAnulowano dziaÅ‚anie.HasÅ‚o dla %s: Zezwolenie na loginy kont obszarówZezwala na loginy użytkownikówProces zostaÅ‚ zakoÅ„czony z sygnaÅ‚em: %dObszar nie obsÅ‚uguje automatycznego czÅ‚onkostwaObszar nie obsÅ‚uguje czÅ‚onkostwa za pomocÄ… hasÅ‚a jednorazowegoObszar nie obsÅ‚uguje czÅ‚onkostwa za pomocÄ… hasÅ‚aObszar, do którego pozwolić/zabronić na logowanieOtrzymano nieprawidÅ‚owe lub nieobsÅ‚ugiwane dane Netlogon od serweraUsuwa komputer z obszaruUsuniÄ™cie komputera z obszaruUstawia naczelnika użytkownika dla konta komputeraWyÅ›wietla wszystkie wykryte obszaryWyÅ›wietla wszystkie obszaryWyÅ›wietla tylko nazwyPominiÄ™to polecenie: %sNależy podać konkretne loginy podczas używania parametru --withdrawPodaje jeden obszar do dołączeniaPodaje konkretnych użytkowników do dodania lub usuniÄ™cia z listy dozwolonychPodawanie odmowy bez --all jest przestarzaÅ‚e. Należy użyć realm permit --withdrawParametr --no-password nie może być używany z --one-time-password lub --userParametr --one-time-password nie może być używany z --userParametry --withdraw i -x nie mogÄ… być używane podczas odmawiania loginówDostawca Samby nie może ograniczać dozwolonych loginów.Parametr computer-ou nie jest obsÅ‚ugiwany podczas dołączania do domeny IPA.NastÄ™pujÄ…ce pakiety nie sÄ… dostÄ™pne do instalacji: %sDziaÅ‚anie zostaÅ‚o anulowaneObszar nie zezwala na okreÅ›lanie loginówTraktuje nazwy jako grupy do zezwoleniaWyłącza automatyczne mapowanie identyfikatorówNie można automatycznie dołączyć do domenyWypisuje ten komputer z obszaruWypisywanie z tego obszaru za pomocÄ… hasÅ‚a jest nieobsÅ‚ugiwaneWypisywanie z tego obszaru za pomocÄ… sekretu jest nieobsÅ‚ugiwaneNieobsÅ‚ugiwane dane uwierzytelniajÄ…ce do dołączenia do domenyNieobsÅ‚ugiwane lub nieznane oprogramowania czÅ‚onkostwa „%sâ€Użycie --all odmówi wszystkie loginyUżywa podanego oprogramowania klientaUżywa podanego oprogramowania czÅ‚onkostwaUżywa podanego oprogramowania serweraNazwa użytkownika do użycia do zapisaniaNazwa użytkownika do użycia do usuniÄ™ciaWiÄ™cej informacjiWycofanie zezwolenia na loginy konta obszarurealmd-0.17.1/po/gl.po0000644003225100322510000004772114315277002014750 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Fran Diéguez , 2013-2014 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-23 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Galician (http://www.transifex.com/freedesktop/realmd/" "language/gl/)\n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Descubrir reino" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Debe autenticarse para descubrir un reino de kerberos" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Unir máquina ao reino" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "Debe autenticarse para unir esta máquina ao reino ou dominio" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Quitar máquina do reino" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "Debe autenticarse para quitar este computador do reino ou dominio." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Cambiar a normativa de inicio de sesión" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Debe autenticarse para cambiar a normativa de quen pode iniciar sesión neste " "computador." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "O proceso rematou co sinal: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "A operación foi cancelada" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "A orde configurada non se atopou: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Orde omitida: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Orde configurada non válida: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" "Recibironse datos de Netlogon non válidos ou non compatíbeis do servidor" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "O LDAP deste sistema non admite as conexións UDP" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Membresía de software non admitida ou descoñecida «%s»" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Xa está unido ao dominio" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "O nome ou contrasinal do administrador non é válido" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Non está actualmente neste dominio" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Precisa credenciais para abandonar este dominio" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Non foi posíbel escribir a configuración: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Non está autorizado a levar a cabo esta acción" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "A operación foi cancelada." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Produciuse un fallo ao unir o computador ao reino. Vexa o diagnóstico." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" "Produciuse un fallo ao quitar o computador do dominio. Vexa o diagnóstico." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "No se admite a unión a este dominio sen credenciais" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "No se admite deixar a este dominio sen credenciais" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "Non se admite a unión a este reino usando unha caché de credencial." #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "Non se admite deixar a este reino usando unha caché de credencial." #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Non se admite a unión a este reino usando un segredo" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Non se admite quitarse deste reino sen usar un segredo" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Non se admite a unión a este reino usando un contrasinal" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Non se admite abandonar este reino usando un contrasinal" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Non se permite a unión a este reino" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Non se admite deixar este reino" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Esta executando outra acción" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Xa está unido a outro dominio: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" "Produciuse un fallo ao cambiar os inicios de sesión permitidos. Vexa o " "diagnóstico." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "O reino non permite especificar inicios de sesión" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "O argumento de inicio de sesión non é válido %s%s%s non coincide co formato " "de inicio de sesión." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Os seguintes paquetes non están dispoñíbeis para a súa instalación: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Os paquetes necesarios non están instalados: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Instalando os paquetes necesarios" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Produciuse un fallo ao descubrir o reino. Vexa o diagnóstico." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Non unido a este reino" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" "O fornecedor Samba non pode restrinxir os inicios de sesión permitidos." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" "O argumento «%s» de Inicio de sesión no válido contén caracteres non " "admitidos." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Produciuse un fallo ao activar SSSD en nsswitch.conf e en PAM." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Non foi posíbel a unión automática ao dominio" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "A unión a un dominio con un contrasinal dun só uso só se permite con " "software de membresía «%s»" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "A unión a un dominio con un contrasinal de usuario só se permite con " "software de membresía «%s»" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Credenciais non compatíbeis para a unión a un dominio" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Xa se uniu a este dominio" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Xa está configurado un dominio con este nome" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Xa hai un dominio %s no ficheiro de configuración sssd.conf" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Non ten o dominio %s no ficheiro de configuración sssd.conf" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" "O argumento de computador -ou non se admite ao unirse a un dominio IPA." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" "O argumento de computador -ou non se admite ao unirse a un dominio IPA." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Non unido a este reino actualmente" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Descubrir reino dispoñíbel" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Unir este computador no reino" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Quitar este computador do reino" #: tools/realm.c:43 msgid "List known realms" msgstr "Listar os reinos coñecidos" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Permitir inicios de sesión de usuario" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Denegar inicios de sesión de usuarios" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Modo de instalación para un prefixo específico" #: tools/realm.c:215 msgid "Verbose output" msgstr "Saída estendida" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Non preguntar por entrada" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Non foi posíbel conectarse ao servicio realm" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Non foi posíbel cargar o servizo realm" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Non foi posíbel conectarse ao bus do sistema" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Non foi posíbel crear o par do socket: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Non foi posíbel crear o socket" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Non foi posíbel executar realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Non foi posíbel crear o cartafol en tempo de execución: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Non foi posíbel crear o ficheiro de caché de credenciais: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Non foi posíbel resolver a caché de credenciais" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Contrasinal non válida para %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Non foi posíbel autenticarse como %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Non foi posíbel analizar o nome de usuario: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Non foi posíbel ler a caché das credenciais" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Non foi posíbel inicializar kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" "Non é posíbel solicitar un contrasinal mentres se está executando en modo " "non atendido" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Contrasinal para %s:" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Non foi posíbel solicitar o contrasinal: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Realm non admite a membresía usando un contrasinal" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Realm non admite a membresía usando un contrasinal de un único uso" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Non foi posíbel seleccionar as credenciais de kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Non foi posíbel ler as credenciais de kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Realm non admite a membresía automática" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Non foi posíbel descubrir reinos" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Non se descubriu un reino predeterminado" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Non se atopou o reino: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Mostrar todos os reinos descubertos" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Mostrar só os nomes" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Usar un software de cliente específico" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Usar un software de membresía específico" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Usar un software de servidor específico" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Mostrar todos os reinos" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Non foi posíbel unirse ao reino" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Non é posíbel unirse a este reino" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Non se atopou o reino" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Usar un software de cliente específico" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "Computador ou DN ao que unirse" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Unirse automaticamente sen un contrasinal" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Unirse usando un contrasinal dun só uso" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Usar un software de cliente específico" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Usar un software de servidor específico" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "O nome de usuario a usar para a unión" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Estabelecer o usuario principal para a conta do computador" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Especifique un reino ao que unirse" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "O argumento --no-password non pode usarse con --one-time-password ou --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "O argumento --one-time-password non pode usarse con --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Non foi posíbel deixar o reino" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Quitar o computador do reino" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Nome de usuario a usar na desunión" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr " Non foi posíbel cambiar os inicios de sesión permitidos" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Permitir calquera inicio de sesión de contas do reino" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Denegar calquera inicio de sesión de contas do reino" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Retirar o permiso para unha conta de inicio de sesión do reino" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Tratar nomes como grupos aos que permitir" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Reino no que permitir/denegar inicios de sesión" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Non debería especificar inicios de sesión con -a ou --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "Os argumentos --withdraw ou -x non poden usarse ao denegar inicios de sesión" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Inicios de sesión específicos deben ser especificados con --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Os grupos non deberían ser especificados con -a ou --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Use --all para denegar todos os inicios de sesión" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Especifice os usuarios específicos para engadir ou quitar da lista de " "permitidos" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Especificando denegación sen --all xa non se admite. Use realm permit --" "withdraw" realmd-0.17.1/po/kk.po0000644003225100322510000003346114315277002014747 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Kazakh (http://www.transifex.com/freedesktop/realmd/language/" "kk/)\n" "Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/ar.gmo0000644003225100322510000000105614315277003015104 0ustar00sbosesbose00000000000000Þ•$,8ô9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Arabic (http://www.transifex.com/freedesktop/realmd/language/ar/) Language: ar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5; realmd-0.17.1/po/hu.gmo0000644003225100322510000003563314315277003015126 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D’q4 49 Dn #³ .× '!.!iK!Eµ!Eû!PA"%’"A¸"'ú"@"#(c#(Œ#%µ#>Û#3$,N$I{$AÅ$!%))%*S%!~%) %$Ê%0ï%+ &!L&6n&8¥&8Þ&'=0',n'7›'(Ó''ü'$(C(C[(GŸ(!ç(A )\K)F¨)Mï)]=*4›*)Ð*!ú*[+^x+!×+.ù++(,%T,4z,b¯,h-+{-e§-A .JO.Dš.'ß.a/Fi/°//Î/?þ/0>0Ao0 ±0$Ò00÷00(10Y1&Š1±1 Ê1>Ø1/28G24€2Hµ2?þ2<>3M{3/É3%ù3E4.e4!”4¶4Ó4Dé4+.5jZ5hÅ5[.6EŠ6QÐ6N"7Kq7-½7ë7<8/@80p82¡81Ô8N9LU9E¢9;è9F$:#k:&:)¶:/à:4;E;BX;s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2019-02-13 19:11+0000 Last-Translator: Balázs Úr Language-Team: Hungarian (http://www.transifex.com/freedesktop/realmd/language/hu/) Language: hu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Már be van állítva egy tartomány ezzel a névvelAz adminisztrátor neve vagy jelszava nem érvényesAz sssd.conf beállítófájl már tartalmazza ezt a tartományt: %sMár csatlakozott egy tartományhozMár csatlakozott egy másik tartományhoz: %sMár csatlakozott ehhez a tartományhozMár fut egy másik műveletHitelesítés szükséges a házirend módosításához, hogy ki jelentkezhet be erre a számítógépre.Hitelesítés szükséges a kerberos tartomány feltérképezéséhezHitelesítés szükséges a gép csatlakoztatásához a tartományhozHitelesítés szükséges a számítógép eltávolításához a tartományból.Nem lehet csatlakozni a tartományhozNem lehet jelszót kérni felügyelet nélküli módban futáskorBejelentkezési házirend módosításaCsatlakozás az ezzel az OU DN-nel rendelkezÅ‘ számítógéphezA beállított parancs érvénytelen: %sNem található beállított parancs: %sNem sikerült a hitelesítés mint %sNem sikerült az engedélyezett bejelentkezések módosításaNem lehet csatlakozni a tartományszolgáltatáshozNem sikerült a rendszerbuszhoz kapcsolódniNem hozható létre a hitelesítési adatok gyorsítótárfájlja: %s: %sNem hozható létre a futtatókörnyezet „%s†könyvtára: %sA socket létrehozása sikertelenA socketpár létrehozása sikertelen: %sNem sikerült a tartományok felderítéseA kerberos nem készíthetÅ‘ elÅ‘Nem sikerült csatlakozni a tartományhozNem sikerült elhagyni a tartománytNem lehet betölteni a tartományszolgáltatástA felhasználónév nem dolgozható fel: %sNem lehet bekérni a jelszót: %sNem olvasható a hitelesítési adatok gyorsítótáraNem sikerült a kerberos hitelesítési adatok olvasásaNem oldható fel a hitelesítési adatok gyorsítótáraA realmd nem futtathatóNem sikerült a kerberos hitelesítési adatok kiválasztásaNem sikerült a beállítások kiírása: %sBármely tartományi fiók bejelentkezésének tiltásaFelhasználói bejelentkezések tiltásaElérhetÅ‘ tartomány feltérképezéseA tartomány feltérképezéseNe kérjen adatbeviteltAz sssd.conf beállítófájl nem tartalmazza ezt a tartományt: %sAz SSSD engedélyezése az nsswitch.conf-ban és a PAM-ban meghiúsult.Gép bejegyzése egy tartománybaA tartományba bejegyzés jelszó használatával nem támogatottNem sikerült az engedélyezett bejelentkezések módosítása. Nézze meg a diagnosztikát.Nem sikerült a tartomány felderítése. Nézze meg a diagnosztikát.Nem sikerült a gép bejegyzése a tartományba. Nézze meg a diagnosztikát.Nem sikerült a gép bejegyzésének törlése a tartományból. Nézze meg a diagnosztikát.A -a vagy --all kapcsolóval nem adható meg csoportTelepítési mód egy konkrét elÅ‘taghozSzükséges csomagok telepítéseÉrvénytelen bejelentkezési argumentum: „%sâ€. Nem támogatott karaktereket tartalmaz.Érvénytelen bejelentkezési argumentum: %s%s%s nem felel meg a bejelentkezési formátumnak.A jelszó érvénytelen ehhez: %sÉrvénytelen érték a(z) %s kapcsolóhoz: %sCsatlakozás automatikusan jelszó nélkülGép csatlakoztatása a tartományhozCsatlakozás elÅ‘re beállított egyszeri jelszóvalTartományhoz csatlakozás egyszeri jelszóval csak a(z) „%s†tagsági szoftverrel támogatottTartományhoz csatlakozás felhasználói jelszóval csak a(z) „%s†tagsági szoftverrel támogatottA tartományba csatlakozás nem támogatottA tartományba csatlakozás hitelesítési adatok gyorsítótárának használatával nem támogatottA tartományba csatlakozás titok használatával nem támogatottA tartományba csatlakozás hitelesítési adatok nélkül nem támogatottAz ezen a rendszeren lévÅ‘ LDAP nem támogatja az UDP kapcsolatokatA tartomány elhagyása nem támogatottA tartomány elhagyása hitelesítési adatok gyorsítótárának használatával nem támogatottA tartomány elhagyása hitelesítési adatok nélkül nem támogatottIsmert tartományok kiírásaA szükséges csomagok nincsenek telepítve: %sHitelesítési adatok szükségesek a tartomány elhagyásáhozNem lett felderítve alapértelmezett tartományA -a vagy --all kapcsolóval nem adható meg bejelentkezési névNem található ilyen tartományNem található ilyen tartomány: %sNincs felhatalmazva a művelet végrehajtásáraJelenleg nincs csatlakozva ehhez a tartományhozJelenleg nincs csatlakozva ehhez a tartományhozNem csatlakozott ehhez a tartományhozA művelet megszakítva.%s jelszava: Bármely tartományi fiók bejelentkezésének engedélyezéseFelhasználói bejelentkezések engedélyezéseA folyamat a következÅ‘ szignállal fejezÅ‘dött be: %dA tartomány nem támogatja az automatikus tagságotA tartomány nem támogatja a tagságot egyszeri jelszó használatávalA tartomány nem támogatja a tagságot jelszó használatávalBejelentkezések engedélyezése/tiltása ezen tartományhozÉrvénytelen vagy nem támogatott Netlogon adat érkezett a kiszolgálótólSzámítógép eltávolítása a tartománybólGép eltávolítása a tartománybólA felhasználó résztvevÅ‘ beállítása a számítógépes fiókhozMinden felderített tartomány megjelenítéseMinden tartomány megjelenítéseCsak a nevek megjelenítéseKihagyott parancs: %sA konkrét bejelentkezéseket a --withdraw kapcsolóval kell megadniAdjon meg egy tartományt a csatlakozáshozAdjon meg konkrét felhasználókat az engedélyezettek listájához adáshoz vagy onnan eltávolításhozA tiltás megadása elavult a --all használata nélkül. Használja a realm permit --withdraw parancsotA --no-password kapcsoló nem használható a --one-time-password vagy --user kapcsolókkalA --one-time-password kapcsoló nem használható --user kapcsolóvalA --withdraw vagy -x kapcsolók nem használhatók bejelentkezések letiltásakorA Samba szolgáltató nem korlátozhatja az engedélyezett bejelentkezéseket.A computer-ou argumentum nem támogatott IPA tartományhoz csatlakozáshoz.A következÅ‘ csomagok nem telepíthetÅ‘k: %sA művelet megszakítvaA tartomány nem engedélyezi a bejelentkezések megadásátNevek kezelése engedélyezendÅ‘ csoportokkéntAutomatikus azonosítóleképezés kikapcsolásaNem lehet automatikusan csatlakozni a tartománybaGép bejegyzésének törlése egy tartománybólA tartomány bejegyzésének törlése jelszó használatával nem támogatottA tartomány bejegyzésének törlése titok használatával nem támogatottNem támogatott hitelesítési adatok a tartományhoz csatlakozáshozNem támogatott vagy ismeretlen tagsági szoftver: „%sâ€Az összes bejelentkezés letiltásához használja a --all kapcsolótKonkrét kliensszoftver használataKonkrét tagsági szoftver használataKonkrét kiszolgálószoftver használataA bejegyzéshez használandó felhasználónévAz eltávolításhoz használandó felhasználónévRészletes kimenetEgy tartományi fiók bejelentkezési engedélyének visszavonásarealmd-0.17.1/po/nb.gmo0000644003225100322510000000074614315277003015106 0ustar00sbosesbose00000000000000Þ•$,8¬9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/freedesktop/realmd/language/nb/) Language: nb MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/ar.po0000644003225100322510000003361114315277002014741 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Arabic (http://www.transifex.com/freedesktop/realmd/language/" "ar/)\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/nn.po0000644003225100322510000003347614315277002014763 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Norwegian Nynorsk (http://www.transifex.com/freedesktop/" "realmd/language/nn/)\n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/de.gmo0000644003225100322510000003347714315277003015106 0ustar00sbosesbose00000000000000Þ•z주H -I #w /› Ë $æ  ) SH 7œ DÔ J d <{ ¸ Ì ë  ( !I k -Š )¸ â ù 2Ocx˜ µÖ"õ!:$Ns‘®¿Øç-ÿ.-\6{3²*æ38E,~«<É=D\%|¢%¸]ÞY<#–<º2÷7*4b#—<»7ø0(B(k”.°ßó% #1"Ux’«½Ü&ï+;B2~±9Ñ &/@p‹›¯1ÃõL;\A˜4Ú=M*i%”'º"â86>,u/¢Òï -Jj‡,–°Ã6t4«>à!-A"o$’c·F ^b hÁ ,*!PW!¨!"Â!'å!$ "62"4i"8ž"<×"5##J#,n#&›#*Â#+í#)$*C$,n$6›$.Ò$2%14%&f%6%1Ä%1ö%(&G&f&x&<˜&AÕ&('D@'N…'@Ô'S(Pi(8º($ó(F)E_) ¥)#Æ)#ê)*/.*u^*uÔ*3J+P~+GÏ+E,:],1˜,NÊ,C-]-1y-8«-ä-<.?.!].+.(«.(Ô. ý./9//L/|/#™/6½/Bô/<701t0H¦0ï0 16+1!b1„1›1²1=Ë1( 2o22X¢2fû2Hb3E«3ñ3=4(M45v4)¬4DÖ4E5<a5Cž5:â5#6,A6#n6*’6*½6è6Aý6D6#B*WX)H czL Q;u5[=ChY^.ma& VIJOgq!1e_ s`jyS\3txw l'Ed9Rb4,A:$iT%GPM<>?-fvU0"782 /@n+o](KZkFrNpA domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2020-10-23 11:54+0000 Last-Translator: Ben Wiederhake Language-Team: German (http://www.transifex.com/freedesktop/realmd/language/de/) Language: de MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Eine Domäne mit diesem Namen ist bereits eingerichtetSystemverwaltername oder -passwort ist nicht gültigDie Domäne %s ist bereits in der Datei sssd.conf eingerichtetBereits einer Domäne beigetretenBereits einer anderen Domäne beigetreten: %sDieser Domäne bereits beigetretenEs läuft bereits eine andere AktionLegitimierung ist zum Ändern der Richtlinie, wer sich auf diesem Rechner anmelden darf, notwendig.Legitimierung ist erforderlich, um einen Kerberos-Bereich zu entdeckenLegitimierung ist erforderlich, damit dieser Rechner einem Bereich oder einer Domäne beitrittLegitimierung ist erforderlich, um diesen Rechner aus einem Bereich oder aus einer Domäne zu entfernen.Diesem Bereich kann nicht beigetreten werdenKann nicht nach dem Passwort fragen, wenn im unbeaufsichtigten Modus ausgeführtAnmelderichtlinie ändernEingestellter Befehl ungültig: %sEingestellter Befehl nicht gefunden: %sKonnte nicht als %s authentifizierenZugelassene Anmeldungen konnten nicht geändert werdenMit dem Bereichsdienst konnte nicht verbunden werdenVerbindung zum Systembus konnte nicht hergestellt werdenAnmeldedaten-Cachedatei konnte nicht erstellt werden: %s: %sLaufzeit-Ordner konnte nicht erstellen werden: %s: %sSocket konnte nicht erstellt werdenSocket-Paar konnte nicht erstellt werden: %sBereiche konnten nicht entdeckt werdenKerberos konnte nicht initialisiert werdenDem Bereich konnte nicht beigetreten werdenDer Bereich konnte nicht verlassen werdenBereichsdienst konnte nicht geladen werdenBenutzername konnte nicht gelesen werden: %sEs konnte nicht nach einem Passwort gefragt werden: %sAnmeldedaten-Cache konnte nicht gelesen werdenKerberos-Anmeldedaten konnten nicht gelesen werdenAnmeldedaten-Cache konnte nicht aufgelöst werdenrealmd konnte nicht ausgeführt werdenKerberos-Anmeldedaten konnten nicht ausgewählt werdenKonfiguration konnte nicht geschrieben werden: %sAnmeldung jedes Bereichsbenutzerkontos verweigernBenutzeranmeldungen verweigernVerfügbaren Bereich entdeckenBereich entdeckenNicht nach einer Eingabe fragenDie Domäne %s ist nicht in der Datei sssd.conf eingerichtetAktivierung von SSSD in nsswitch.conf und PAM ist fehlgeschlagen.Diesen Rechner in einem Bereich anmeldenBeitreten dieses Bereichs mit einem Passwort wird nicht unterstütztFehler beim Ändern der zugelassenen Anmeldungen. Schauen Sie in die Diagnose.Fehler beim Entdecken des Bereichs. Schauen Sie in die Diagnose.Rechner konnte nicht in den Bereich angemeldet werden. Schauen Sie in die Diagnose.Rechner konnte nicht vom Bereich abgemeldet werden. Schauen Sie in die Diagnose.Gruppen dürfen nicht mit -a oder --all angegeben werdenBenötigte Pakete werden installiertUngültiges Anmeldeargument '%s' enthält nicht unterstützte Zeichen.Ungültiges Anmeldeargument%s%s%s entspricht nicht dem Anmeldeformat.Ungültiges Passwort für »%s«Ungültiger Wert für Option %s: %sAutomatisch ohne Passwort beitretenRechner einem Bereich beitretenMit einem vorgegebenen Einmalpasswort beitretenDas Beitreten zu einer Domäne mit einem Einmalpasswort wird nur mit der Mitgliedschafts-Software »%s« unterstütztDas Beitreten zu einer Domäne mit einem Nutzerpasswort wird nur mit der Mitgliedschafts-Software »%s« unterstütztBeitreten zu diesem Bereich wird nicht unterstütztBeitreten zu diesem Bereich mit einem Anmeldedaten-Cache wird nicht unterstütztBeitreten zu diesem Bereich mit einem Geheimnis wird nicht unterstütztBeitreten zu diesem Bereich wird ohne Anmeldedaten nicht unterstütztLDAP auf diesem System unterstützt keine UDP-VerbindungenVerlassen dieses Bereichs wird nicht unterstütztVerlassen dieses Bereichs mit einem Anmeldedaten-Cache wird nicht unterstütztVerlassen dieses Bereichs wird ohne Anmeldedaten nicht unterstütztBekannte Bereiche auflistenDie notwendigen Pakete sind nicht installiert: %sAnmeldedaten sind zum Verlassen der Domäne erforderlichKein Standardbereich entdecktKeine Anmeldungen sollten mit -a oder --all angegeben werdenKein solcher Bereich gefundenKein solcher Bereich gefunden: %sNicht berechtigt, diese Aktion auszuführenDieser Domäne derzeit nicht beigetretenDiesem Bereich derzeit nicht beigetretenDieser Domäne nicht beigetretenVorgang wurde abgebrochen.Passwort für %s: Anmeldung jedes Bereichsbenutzerkontos zulassenBenutzeranmeldungen zulassenProzess wurde mit Signal %d beendetBereich unterstützt keine automatische MitgliedschaftBereich unterstützt keine Mitgliedschaft mit einem EinmalpasswortBereich unterstützt keine Mitgliedschaft mit einem PasswortBereich soll Anmeldungen zulassen/verweigern fürUngültige oder nicht unterstützde Netzlogin-Daten vom Server empfangenRechner aus Bereich entfernenRechner aus Bereich entfernenDas Benutzer-Principal für das Rechnerkonto festlegenAlle entdeckten Bereiche anzeigenAlle Bereiche anzeigenNur die Namen anzeigenBefehl übersprungen: %sBestimmte Anmeldungen müssen mit --withdraw angegeben werdenGeben Sie einen Bereich zum Beitreten anDas Argument »--no-password« kann nicht zusammen mit »--one-time-password« oder »--user« verwendet werdenDas Argument »--one-time-password« kann nicht zusammen mit »--user« verwendet werdenDie Argumente »--withdraw« und »-x« dürfen nicht beim Verweigern von Anmeldungen verwendet werdenDer Samba-Anbieter kann die zugelassenen Anmeldungen nicht beschränken.Die folgenden Pakete sind nicht für eine Installation verfügbar: %sDer Vorgang wurde abgebrochenDieser Bereich erlaubt das Präzisieren von Anmeldungen nichtNamen wie zuzulassende Gruppen behandelnDer Domäne kann nicht automatisch beigetreten werdenDiesen Rechner aus einem Bereich abmeldenVerlassen dieses Bereichs mit einem Passwort wird nicht unterstütztVerlassen dieses Bereichs mit einem Geheimnis wird nicht unterstütztNicht unterstützte Anmeldedaten, um der Domäne beizutretenNicht unterstützte oder unbekannte Mitgliedschafts-Software »%s«Verwenden Sie »--all«, um alle Anmeldungen zu verweigernBestimmte Client-Software verwendenBestimmte Mitgliedschafts-Software verwendenBestimmte Server-Software verwendenZur Anmeldung zu verwendender BenutzernameZum Entfernen zu verwendender BenutzernameDetaillierte AusgabeErlaubnis für die zur Anmeldung mit Bereichskonten zurückziehenrealmd-0.17.1/po/el.gmo0000644003225100322510000004607514315277003015114 0ustar00sbosesbose00000000000000Þ•~ ­ü° -± #ß / 3 $N s ‘ S° 7 D< J Ì <ã  4 K j ‹ § !È ê - )7ax˜±Îâ÷ 4U"t!—¹$Íò->Wf-~.¬Û6ú31*e38Ä,ý!*L<j=§å%ý#%9]_Y½#<;2x7«4ã#<<7y±(Ã(ì.1`t%Œ#²"Öù,>]&p+—;Ã2ÿ29RŒ§/Áñ 01Dv?HÐL;fA¢4äE=_*¹%ä' "28U6Ž,Å/ò"? \}šº×,æ V´o W{ ;Ó H!DX!<!µÚ!i"Žú"›‰#>%$Œd$0ñ$0"%>S%>’%0Ñ%S&JV&N¡&vð&ag'7É'J(1L(:~(5¹(;ï(G+)Bs)I¶)[*Q\*W®*0+O7+;‡+lÃ+00,7a,$™,+¾,Wê,XB-N›-šê-}….b/zf/”á/Iv0XÀ0A1[1pÛ1=L2JŠ28Õ2Š3¶™3¯P4R5­S5‡6y‰6`7Zd7³¿7‚s88ö8W/9k‡9;ó9O/:-:1­:pß:UP;Q¦;?ø;+8<2d<j—<B==E=Gƒ=”Ë=€`>má>xO?CÈ?> @nK@Pº@4 A:@A,{AT¨A:ýA®8B•çBx}CgöC•^D{ôD pEiF*{FI¦F[ðFELGc’G­öGš¤Hf?IQ¦INøIAGJA‰JIËJAK]WKµKgÕKq+zB?T0D8NY iaVl$' @sQFA]x`tHC<-X5} c 6 [\7P 1dG_!uo;EMh{&W2K,*LU9Ik:~SwJmr^yRnv#b)(43%|Ofejp>/"g.Z=A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 19:43+0000 Last-Translator: Stef Walter Language-Team: Greek (http://www.transifex.com/freedesktop/realmd/language/el/) Language: el MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Ένας τομέας με αυτό το όνομα έχει ήδη ÏυθμιστείΤο όνομα διαχειÏιστή ή ο κωδικός Ï€Ïόσβασης δεν είναι έγκυÏοςΈχετε ήδη τον τομέα %s στο αÏχείο Ïυθμίσεων sssd.confΈχετε ήδη συνδεθεί με έναν τομέαΈχετε ήδη συνδεθεί σε έναν άλλο τομέα: %sΈχετε ήδη συνδεθεί με αυτόν τον τομέαΕκτελείται ήδη μια άλλη ενέÏγειαΑπαιτείται πιστοποίηση για να αλλάξετε την πολιτική δυνατότητας σÏνδεσης σε αυτόν τον υπολογιστή.Απαιτείται πιστοποίηση για να ανακαλÏψετε ένα πεδίο kerberosΑπαιτείται πιστοποίηση για να συνδέσετε αυτό το μηχάνημα σε ένα πεδίο ή τομέαΑπαιτείται πιστοποίηση για να αφαιÏέσετε αυτόν τον υπολογιστή από ένα πεδίο ή τομέα.ΑδÏνατη η σÏνδεση με αυτό το πεδίοΑδÏνατη η αίτηση για κωδικό Ï€Ïόσβασης όταν εκτελείται σε αφÏλακτη κατάστασηΑλλαγή πολιτικής σÏνδεσηςDN OU υπολογιστή για σÏνδεσηΗ Ïυθμισμένη εντολή είναι άκυÏη: %sΔεν βÏέθηκε η Ïυθμισμένη εντολή: %sΑδÏνατη η πιστοποίηση ως %sΑδÏνατη η αλλαγή των επιτÏεπόμενων συνδέσεωνΑδÏνατη η σÏνδεση με την υπηÏεσία πεδίουΑδÏνατη η σÏνδεση με τον δίαυλο συστήματοςΑδÏνατη η δημιουÏγία αÏχείου κÏυφής μνήμης διαπιστευτηÏίου: %s: %sΑδÏνατη η δημιουÏγία καταλόγου χÏόνου εκτέλεσης: %s: %sΑδÏνατη η δημιουÏγία υποδοχήςΑδÏνατη η δημιουÏγία ζεÏγους υποδοχής: %sΑδÏνατη η ανακάλυψη πεδίωνΑδÏνατη η αÏχικοποίηση του kerberosΑδÏνατη η σÏνδεση με το πεδίοΑδÏνατη η αποχώÏηση από το πεδίοΑδÏνατη η φόÏτωση της υπηÏεσίας πεδίουΑδÏνατη η ανάλυση ονόματος χÏήστη: %sΑδÏνατη η αίτηση για κωδικό Ï€Ïόσβασης: %sΑδÏνατη η ανάγνωση κÏυφής μνήμης διαπιστευτηÏίουΑδÏνατη η ανάγνωση διαπιστευτηÏίων του kerberosΑδÏνατη η εÏÏεση κÏυφής μνήμης διαπιστευτηÏίουΑδÏνατη η εκτέλεση του realmdΑδÏνατη η επιλογή διαπιστευτηÏίων του kerberosΑδÏνατη η εγγÏαφή διαμόÏφωσης: %sÎα απαγοÏεÏεται η σÏνδεση λογαÏÎ¹Î±ÏƒÎ¼Î¿Ï Î¿Ï€Î¿Î¹Î¿Ï…Î´Î®Ï€Î¿Ï„Îµ πεδίουΑπόÏÏιψη συνδέσεων χÏήστηΑνακαλÏψτε το διαθέσιμο πεδίοΑνακαλÏψτε το πεδίοÎα μην ζητείται είσοδοςΔεν έχετε τον τομέα %s στο αÏχείο Ïυθμίσεων sssd.confΑποτυχία ενεÏγοποίησης του SSSD στα nsswitch.conf και PAM.ΕγγÏαφή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… μηχανήματος σε ένα πεδίοΗ εγγÏαφή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χÏησιμοποιώντας έναν κωδικό Ï€Ïόσβασης δεν υποστηÏίζεταιΑποτυχία αλλαγής των επιτÏεπόμενων συνδέσεων. Δείτε τα διαγνωστικά.Αποτυχία ανακάλυψης του πεδίου. Δείτε τα διαγνωστικά.Αποτυχία εγγÏαφής του μηχανήματος στο πεδίο. Δείτε τα διαγνωστικά.Αποτυχία αφαίÏεσης εγγÏαφής του μηχανήματος από τον τομέα. Δείτε τα διαγνωστικά.Δεν μποÏοÏν να οÏιστοÏν ομάδες με -a ή --allΕγκατάσταση κατάστασης σε συγκεκÏιμένο Ï€ÏόθεμαΕγκαθίστανται τα απαÏαίτητα πακέταΤο άκυÏο ÏŒÏισμα σÏνδεσης '%s' πεÏιέχει μη υποστηÏιζόμενους χαÏακτήÏες.ΆκυÏο ÏŒÏισμα σÏνδεσης %s%s%s δεν ταιÏιάζει με τη μοÏφή σÏνδεσης.ΆκυÏος κωδικός Ï€Ïόσβασης για το %sΑυτόματη σÏνδεση χωÏίς κωδικό Ï€ÏόσβασηςΣυνδέστε το μηχάνημα στο πεδίοΣÏνδεση χÏησιμοποιώντας έναν Ï€ÏοκαθοÏισμένο κωδικό Ï€Ïόσβασης για μια φοÏάΗ σÏνδεση σε έναν τομέα με κωδικό Ï€Ïόσβασης μιας φοÏάς υποστηÏίζεται μόνο με το λογισμικό μέλους '%s'Η σÏνδεση σε έναν τομέα με κωδικό Ï€Ïόσβασης χÏήστη υποστηÏίζεται μόνο με το λογισμικό μέλους '%s'Η σÏνδεση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου δεν υποστηÏίζεταιΗ σÏνδεση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χÏησιμοποιώντας μια κÏυφή μνήμη διαπιστευτηÏίου δεν υποστηÏίζεταιΗ σÏνδεση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χÏησιμοποιώντας ένα μυστικό δεν υποστηÏίζεταιΗ σÏνδεση σε αυτό το πεδίο χωÏίς διαπιστευτήÏια δεν υποστηÏίζεταιΤο LDAP σε αυτό το σÏστημα δεν υποστηÏίζει συνδέσεις UDPΗ απομάκÏυνση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου δεν υποστηÏίζεταιΗ απομάκÏυνση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… τομέα χÏησιμοποιώντας μια κÏυφή μνήμη διαπιστευτηÏίου δεν υποστηÏίζεταιΗ απομάκÏυνση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χωÏίς διαπιστευτήÏια δεν υποστηÏίζεταιÎα αναφέÏονται τα γνωστά πεδίαΤα απαÏαίτητα πακέτα δεν είναι εγκατεστημένα: %sΧÏειάζονται διαπιστευτήÏια για να αφήσετε αυτόν τον τομέαΔεν βÏέθηκε Ï€Ïοεπιλεγμένο πεδίοΔεν Ï€Ïέπει να οÏίζονται συνδέσεις με -a ή --allΔεν βÏέθηκε τέτοιο πεδίοΔεν βÏέθηκε τέτοιο πεδίο: %sΔεν είστε εξουσιοδοτημένος να εκτελέσετε αυτήν την ενέÏγεια.Δεν είσαστε συνδεμένοι τώÏα σε αυτόν τον τομέαΔεν είσαστε συνδεμένοι τώÏα σε αυτό το πεδίοΔεν συνδεθήκατε σε αυτόν τον τομέαΗ λειτουÏγία ακυÏώθηκε.Κωδικός Ï€Ïόσβασης για το %s: Îα επιτÏέπεται η σÏνδεση λογαÏÎ¹Î±ÏƒÎ¼Î¿Ï Î¿Ï€Î¿Î¹Î¿Ï…Î´Î®Ï€Î¿Ï„Îµ πεδίουÎα επιτÏέπονται οι συνδέσεις χÏήστηΗ διεÏγασία τελείωσε με το σήμα: %dΤο πεδίο δεν υποστηÏίζει αυτόματα μέληΤο πεδίο δεν υποστηÏίζει μέλος χÏησιμοποιώντας έναν κωδικό Ï€Ïόσβασης μιας φοÏάςΤο πεδίο δεν υποστηÏίζει μέλος χÏησιμοποιώντας έναν κωδικό Ï€ÏόσβασηςΠεδίο για το οποίο επιτÏέπονται/απαγοÏεÏονται οι συνδέσειςΕλήφθησαν άκυÏα ή ανυποστήÏικτα δεδομένα Netlogon από τον διακομιστήΑφαίÏεση του υπολογιστή από το πεδίοΑφαίÏεση μηχανήματος από το πεδίοΟÏισμός του κÏÏιου χÏήστη για τον λογαÏιασμό του υπολογιστήÎα εμφανίζονται όλα τα πεδία που βÏίσκονταιÎα εμφανίζονται όλα τα πεδίαÎα εμφανίζονται μόνο τα ονόματαΠαÏαλείφθηκε η εντολή: %sΕιδικές συνδέσεις Ï€Ïέπει να οÏιστοÏν με --withdrawΟÏισμός ενός πεδίου για σÏνδεσηΟÏίστε συγκεκÏιμένους χÏήστες που θα Ï€ÏοστεθοÏν ή θα αφαιÏεθοÏν από τον επιτÏεπόμενο κατάλογοΟ οÏισμός άÏνησης χωÏίς --all είναι παÏωχημένος. ΧÏησιμοποιήστε άδεια πεδίου --withdraw Το ÏŒÏισμα --no-password δεν μποÏεί να χÏησιμοποιηθεί με --one-time-password ή --userΤο ÏŒÏισμα --one-time-password δεν μποÏεί να χÏησιμοποιηθεί με --userΤα οÏίσματα με --withdraw ή -x δεν μποÏοÏν να χÏησιμοποιηθοÏν κατά την άÏνηση συνδέσεωνΟ πάÏοχος Samba δεν μποÏεί να πεÏιοÏίσει τις επιτÏεπόμενες συνδέσεις.Το ÏŒÏισμα οÏγανωτικής μονάδας υπολογιστή δεν υποστηÏίζεται κατά τη σÏνδεση σε τομέα IPA.Τα παÏακάτω πακέτα δεν είναι διαθέσιμα για εγκατάσταση: %sΗ λειτουÏγία ακυÏώθηκεΤο πεδίο δεν επιτÏέπει οÏισμό συνδέσεωνÎα θεωÏοÏνται τα ονόματα ως ομάδες που επιτÏέπουνΑδÏνατη η αυτόματη σÏνδεση στον τομέαΑφαίÏεση εγγÏαφής Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… μηχανήματος από ένα πεδίοΗ αφαίÏεση εγγÏαφής Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χÏησιμοποιώντας έναν κωδικό Ï€Ïόσβασης δεν υποστηÏίζεταιΗ αφαίÏεση εγγÏαφής Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χÏησιμοποιώντας ένα μυστικό δεν υποστηÏίζεταιΑνυποστήÏικτα διαπιστευτήÏια για σÏνδεση σε έναν τομέαΑνυποστήÏικτο ή άγνωστο λογισμικό μέλους '%s'ΧÏήση του --all για άÏνηση όλων των συνδέσεωνΧÏήση ιδιαίτεÏου Î»Î¿Î³Î¹ÏƒÎ¼Î¹ÎºÎ¿Ï Ï€ÎµÎ»Î¬Ï„Î·Î§Ïήση ιδιαίτεÏου Î»Î¿Î³Î¹ÏƒÎ¼Î¹ÎºÎ¿Ï Î¼Î­Î»Î¿Ï…Ï‚Î§Ïήση ιδιαίτεÏου Î»Î¿Î³Î¹ÏƒÎ¼Î¹ÎºÎ¿Ï Î´Î¹Î±ÎºÎ¿Î¼Î¹ÏƒÏ„Î®ÎŒÎ½Î¿Î¼Î± χÏήστη για χÏήση στην εγγÏαφήΤο όνομα χÏήστη που θα χÏησιμοποιηθεί για αφαίÏεσηΑναλυτική έξοδοςΑπόσυÏση άδειας για έναν λογαÏιασμό πεδίου Ï€Ïος σÏνδεσηrealmd-0.17.1/po/id.po0000644003225100322510000004671414315277002014743 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Andika Triwidada , 2013,2016 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 17:00+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian (http://www.transifex.com/freedesktop/realmd/" "language/id/)\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Temukan realm" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Perlu otentikasi untuk menemukan suatu realm kerberos" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Gabungkan mesin ke realm" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Perlu otentikasi untuk menggabungkan mesin ini ke suatu realm atau domain" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Hapus mesin dari realm" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Perlu otentikasi untuk menghapus komputer ini dari suatu realm atau domain." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Ubah kebijakan log masuk" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Perlu otentikasi untuk mengubah kebijakan tentang siapa yang dapat log masuk " "ke komputer ini." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Proses diakhiri dengan sinyal: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "Operasi dibatalkan" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Perintah yang ditata tak ditemukan: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Perintah dilewati: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Perintah yang ditata tak valid: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Menerima data Netlogon yang tak valid atau tak didukung dari server" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "LDAP pada sistem ini tak mendukung koneksi UDP" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Perangkat lunak '%s' keanggotaan tak didukung atau tak dikenal" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Telah bergabung ke suatu domain" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Nama atau sandi admin tak valid" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Tak sedang bergabung ke domain ini" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Perlu kredensial untuk meninggalkan domain ini" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Tak bisa menulis config: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Tak diotorisasi untuk melakukan aksi ini" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Operasi dibatalkan." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Gagal mendaftarkan mesin ke realm. Lihat diagnostik." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "Gagal membatalkan pendaftaran mesin dari domain. Lihat diagnostik." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Bergabung ke realm ini tanpa kredensial tak didukung" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "Meninggalkan realm ini tanpa kredensial tak didukung" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "Bergabung ke realm ini memakai singgahan kredensial tak didukung" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "Meninggalkan realm ini memakai singgahan kredensial tak didukung" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Bergabung ke realm ini memakai suatu rahasia tak didukung" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" "Membatalkan pendaftaran ke realm ini memakai suatu rahasia tak didukung" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Mendaftar ke realm ini memakai suatu sandi tak didukung" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Membatalkan pendaftaran ke realm ini memakai suatu sandi tak didukung" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Bergabung ke realm ini tak didukung" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Meninggalkan realm ini tak didukung" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Tengah menjalankan aksi lain" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Telah bergabung ke domain lain: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "Gagal mengubah log masuk yang diijinkan. Lihat diagnostik." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "Realm ini tak mengijinkan menyatakan log masuk" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "Argumen%s%s%s log masuk yang tak valid tak cocok dengan format log masuk" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Paket berikut tak tersedia untuk pemasangan: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Paket yang dibutuhkan tak terpasang: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Memasang paket yang diperlukan" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Gagal menemukan realm. Lihat diagnostik." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Tak bergabung ke domain ini" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Penyedia Samba tak bisa membatasi log masuk yang diijinkan." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" "Argumen log masuk '%s' tak valid karena memuat karakter yang tak didukung." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Pemfungsian SSSD dalam nsswitch.conf dan PAM gagal." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Tak bisa secara otomatis bergabung ke domain" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Bergabung ke suatu domain dengan sandi satu waktu hanya didukung dengan " "perangkat lunak keanggotaan '%s'" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Bergabung ke suatu domain dengan sandi pengguna hanya didukung dengan " "perangkat lunak keanggotaan '%s'" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Kredensial yang tak didukung untuk bergabung ke suatu domain" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Telah bergabung ke domain ini" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Suatu domain dengan nama ini telah ditata" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Telah memiliki domain %s dalam berkas konfig sssd.conf" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Tak punya domain %s dalam berkas konfig sssd.conf" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" "Argumen computer-ou tak didukung ketika bergabung dengan suatu domain IPA." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" "Argumen computer-ou tak didukung ketika bergabung dengan suatu domain IPA." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Saat ini tidak sedang bergabung ke realm ini" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Temukan realm yang tersedia" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Daftarkan mesin ini ke suatu realm" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Batalkan pendaftaran mesin ini dari suatu realm" #: tools/realm.c:43 msgid "List known realms" msgstr "Sajikan daftar realm yang diketahui" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Ijinkan pengguna log masuk" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Tolak pengguna log masuk" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Nilai tak valid bagi opsi %s: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Mode pemasangan ke suatu prefiks tertentu" #: tools/realm.c:215 msgid "Verbose output" msgstr "Keluaran terinci" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Jangan minta masukan" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Tak bisa menyambung ke layanan realm" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Tak bisa memuat layanan realm" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Tak bisa menyambung ke bus sistem" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Tak bisa membuat pasangan soket: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Tak bisa membuat soket" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Tak bisa menjalankan realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Tak bisa membuat direktori runtime: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Tak bisa membuat berkas singgahan kredensial: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Tak bisa meresolve singgahan kredensial" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Sandi tak valid bagi %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Tak bisa mengotentikasi sebagai %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Tak bisa mengurai nama pengguna: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Tak bisa baca singgahan kredensial" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Tak bisa menginisialisasi kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "Tak bisa meminta sandi ketika berjalan dalam mode tak interaktif" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Sandi bagi %s:" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Tak bisa menanyakan sandi: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Realm tak mendukung keanggotaan memakai suatu sandi" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Realm tak mendukung keanggotaan memakai suatu sandi satu waktu" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Tak bisa memilih kredensial kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Tak bisa membaca kredensial kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Realm tak mendukung keanggotaan otomatis" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Tak bisa temukan realm" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Tak temukan realm baku" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Realm seperti itu tak ditemukan: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Tampilkan semua realm yang ditemukan" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Hanya tampilkan nama" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Gunakan perangkat lunak klien tertentu" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Gunakan perangkat lunak keanggotaan tertentu" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Gunakan perangkat lunak server tertentu" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Tunjukkan semua realm" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Tak bisa gabung realm" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Tak bisa bergabung ke realm ini" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Realm seperti itu tak ditemukan" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Matikan pemetaan id otomatis" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Gunakan perangkat lunak klien tertentu" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "OU DN komputer untuk bergabung" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Secara otomatis bergabung tanpa suatu sandi" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Bergabung memakai sandi sekali waktu yang dipratata" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Gunakan perangkat lunak klien tertentu" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Gunakan perangkat lunak server tertentu" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Nama pengguna yang dipakai untuk pendaftaran" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Menata pengguna utama bagi akun komputer" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Nyatakan satu realm tempat bergabung" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Argumen --no-password tak bisa dipakai dengan --one-time-password atau --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "Argumen --one-time-password tak bisa dipakai dengan --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Tak bisa tinggalkan realm" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Hapus komputer dari realm" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Nama pengguna yang dipakai untuk penghapusan" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Tak bisa mengubah log masuk yang diijinkan" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Ijinkan log masuk akun realm manapun" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Tolak log masuk akun realm manapun" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Cabut ijin bagi suatu akun realm untuk log masuk" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Perlakukan nama sebagai grup yang diijinkan" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Realm yang akan diijinkan/ditolak log masuknya" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Tak ada log masuk yang mesti dinyatakan dengan -a atau --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "Argumen --withdraw atau -x tak bisa dipakai ketika menolak log masuk" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Log masuk tertentu mesti dinyatakan dengan --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Grup tak boleh dinyatakan dengan -a atau --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Pakai --all untuk menolak semua log masuk" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Nyatakan pengguna tertentu untuk menambah atau menghapus dari daftar yang " "diijinkan" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Menyatakan penolakan tanpa --all tak berlaku lagi. Gunakan realm permit --" "withdraw" realmd-0.17.1/po/or.gmo0000644003225100322510000000073214315277003015122 0ustar00sbosesbose00000000000000Þ•$,8 9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Oriya (http://www.transifex.com/freedesktop/realmd/language/or/) Language: or MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/cs.po0000644003225100322510000005030714315277002014745 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Marek ÄŒernocký , 2018 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2018-09-24 16:08+0000\n" "Last-Translator: Marek ÄŒernocký \n" "Language-Team: Czech (http://www.transifex.com/freedesktop/realmd/language/" "cs/)\n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " "<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Vyhledat sféru" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "K vyhledání sféry Kerberos je vyžadováno ověření." #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "PÅ™idat stroj do sféry" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "K pÅ™idání tohoto stroje do sféry nebo domény je vyžadováno ověření." #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Odebrat stroj ze sféry" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "K odebrání tohoto stroje ze sféry nebo domény je vyžadováno ověření." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "ZmÄ›nit zásady pÅ™ihlaÅ¡ování" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Ke zmÄ›nÄ› zásad, kdo se může pÅ™ihlaÅ¡ovat k tomuto poÄítaÄi, je vyžadováno " "ověření." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Proces byl ukonÄen signálem: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "Operace byla zruÅ¡ena" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Nastavený příkaz nebyl nalezen: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Byl pÅ™eskoÄen příkaz: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Nastavený příkaz není platný: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Ze serveru byla pÅ™ijata neplatná nebo nepodporovaná data Netlogon" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "LDAP na tomto systému nepodporuje přípojení pÅ™es UDP" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Nepodporovaný nebo neznámý Älenský software „%s“" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Již je pÅ™idáno do domény" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Jméno nebo heslo správce jsou neplatné" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Do této domény aktuálnÄ› nepÅ™idáno" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "K opuÅ¡tÄ›ní této domény je zapotÅ™ebí pověření" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "NezdaÅ™ilo se zapsat nastavení: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Nejste oprávnÄ›ni k provedení této akce" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Operace byla zruÅ¡ena." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Selhala registrace stroje do sféry. Viz diagnostika." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "Selhalo zruÅ¡ení registrace stroje ve sféře. Viz diagnostika." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "PÅ™idání do této sféry bez pověření není podporováno" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "OpuÅ¡tÄ›ní této sféry bez pověření není podporováno" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "PÅ™idání do této sféry pomocí pověření z mezipamÄ›ti není podporováno" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "OpuÅ¡tÄ›ní této sféry pomocí pověření z mezipamÄ›ti není podporováno" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "PÅ™idání do této sféry pomocí hesla není podporováno" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "ZruÅ¡ení registrace v této sféře pomocí tajného údaje není podporováno" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Registrace v této sféře pomocí hesla není podporována" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "ZruÅ¡ení registrace v této sféře pomocí hesla není podporováno" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "PÅ™idání do této sféry není podporováno" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "OpuÅ¡tÄ›ní této sféry není podporováno" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Již běží nÄ›jaká jiná akce" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Již je pÅ™idáno do jiné domény: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "Selhala zmÄ›na povolených pÅ™ihlášení. Viz diagnostika." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "Sféra neumožňuje zadávání pÅ™ihlaÅ¡ovacích údajů" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "Neplatný pÅ™ihlaÅ¡ovací argument%s%s%s neodpovídá pÅ™ihlaÅ¡ovacímu formátu." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Následující balíÄky nejsou dostupné k instalaci: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Nejsou nainstalované potÅ™ebné balíÄky: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Instalují se potÅ™ebné balíÄky" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Selhalo vyhledání sféry. Viz diagnostika." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Není pÅ™idáno do této domény" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Poskytovatel Samba nemůže omezit povolená pÅ™ihlášení." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "Neplatný argument pÅ™ihlášení „%s“ obsahuje nepodporované znaky." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Povolení SSSD v nsswitch.conf a PAM selhalo." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Nelze automaticky pÅ™idat do domény" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "PÅ™idání se do domény pomocí jednorázového hesla je podporováno pouze pomocí " "Älenského softwaru „%s“" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "PÅ™idání se do domény pomocí uživatelského hesla je podporováno pouze pomocí " "Älenského softwaru „%s“" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Nepodporovaná pověření pro pÅ™idání do domény" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Do této domény je již pÅ™idáno" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Doména s tímto názvem je již nastavená" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Doména %s se již v souboru s nastavením sssd.conf nachází" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Doména %s se nenachází v souboru s nastavením sssd.conf" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "PÅ™idávání do domény IPA není podporováno s argumentem computer-ou." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "PÅ™idávání do domény IPA není podporováno s argumentem computer-ou." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "V tuto chvíli není pÅ™idáno do této sféry" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Vyhledat dostupné sféry" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Registrovat tento stroj do sféry" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "ZruÅ¡it registraci tohoto stroje ve sféře" #: tools/realm.c:43 msgid "List known realms" msgstr "Vypsat známé sféry" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Povolit uživatelům pÅ™ihlášení" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Odepřít uživatelům pÅ™ihlášení" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Neplatná hodnota pro volbu %s: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Režim instalace do zadané složky" #: tools/realm.c:215 msgid "Verbose output" msgstr "Podrobný výstup" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Nedotazovat se na vstup" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "NezdaÅ™ilo se pÅ™ipojit ke službÄ› sféry" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "NezdaÅ™ilo se naÄíst službu sféry" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "NezdaÅ™ilo se pÅ™ipojit k systémové sbÄ›rnici" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "NezdaÅ™ilo se vytvoÅ™it pár soketů: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "NezdaÅ™ilo se vytvoÅ™it soket" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "NezdaÅ™ilo se spustit realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "NezdaÅ™ilo se vytvoÅ™it pracovní složku: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "NezdaÅ™ilo se vytvoÅ™it soubor mezipamÄ›ti pro pověření: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "NezdaÅ™ilo se pÅ™eložit pověření z mezipamÄ›ti" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Neplatné heslo pro uživatele %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "NezdaÅ™ilo se ověřit jako uživatel %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "NezdaÅ™ilo se zpravovat uživatelské jméno: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "NezdaÅ™ilo se Ätení z mezipamÄ›ti pověření" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "NezdaÅ™ilo se inicializovat Kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "PÅ™i spuÅ¡tÄ›ní v bezobslužném režimu není možné požádat o heslo" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Heslo pro uživatele %s: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "NezdaÅ™ilo se dotázat na heslo: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Sféra nepodporuje Älenství pomocí hesla" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Sféra nepodporuje Älenství pomocí jednorázového hesla" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "NezdaÅ™ilo se vybrat pověření pro Kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "NezdaÅ™ilo se pÅ™eÄíst pověření pro Kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Sféra nepodporuje automatické Älenství" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "NezdaÅ™ilo se vyhledat sféry" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Nebyla nalezena žádná výchozí sféra" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Žádná taková sféra nebyl nalezena: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Zobrazit vÅ¡echny nalezené sféry" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Zobrazit jen názvy" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Použít konkrétní klientský software" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Použít konkrétní Älenský software" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Použít konkrétní serverový software" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Zobrazit vÅ¡echny sféry" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "NezdaÅ™ilo se pÅ™idat do sféry" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "NezdaÅ™ilo se pÅ™idat do této sféry" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Žádná taková sféra nebyla nalezena" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Vypnout automatické mapování ID" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Použít konkrétní klientský software" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" "PoÄítaÄ urÄený OU (organizaÄní jednotka) DN (rozliÅ¡ovací název), ke kterému " "se má pÅ™ipojit" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "PÅ™idat automaticky bez hesla" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "PÅ™idat pomocí pÅ™ednastaveného jednorázového hesla" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Použít konkrétní klientský software" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Použít konkrétní serverový software" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Uživatelské jméno, které se má použít pro registraci" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Nastavit uživatelského principála pro úÄet poÄítaÄe" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Zadejte jednu sféru, do které se má pÅ™idat" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Argument --no-password nelze použít zároveň s --one-time-password nebo --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "Argument --one-time-password nelze použít zároveň s --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "NezdaÅ™ilo se opustit sféru" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Odebrat poÄítaÄ ze sféry" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Uživatelské jméno, které se má použít pÅ™i odebrání" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "NezdaÅ™ilo se zmÄ›nit povolená pÅ™ihlaÅ¡ování" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Povolit pÅ™ihlášení libovolnému úÄtu ze sféry" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Odepřít pÅ™ihlášení vÅ¡em úÄtům z této sféry" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "ZruÅ¡it úÄtu ze sféry oprávnÄ›ní se pÅ™ihlaÅ¡ovat" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Považovat názvy za skupinamy, které se povolují" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Sféra, pro kterou se má povolit/zakázat pÅ™ihlaÅ¡ování" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "S -a nebo --all by nemÄ›lo být zadané žádné pÅ™ihlášení" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "PÅ™i odpírání pÅ™ihlášení nelze použít argumenty --withdraw nebo -x" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Konkrétní pÅ™ihlášení musí být zadané s --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Skupiny nelze zadat souÄasnÄ› s -a nebo --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "VeÅ¡kerá pÅ™ihlášení odepÅ™ete pomocí --all" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Zadejte konkrétní uživatele, kteří se mají pÅ™idat nebo odebrat ze seznamu " "povolených" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Zadání odepÅ™ení bez --all se už nepoužívá. Použijte „realm permit --withdraw“" realmd-0.17.1/po/zh_CN.gmo0000644003225100322510000003034214315277003015503 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D°q" !; ] z  ¨ ¸ E× "!-@!3n!¢!*µ!à!ó! " 0"Q"b""š"(³""Ü"ÿ"#3#F#_#r#…#ž##¹#Ý#ö#$,$@$]$u$”$ª$ À$Í$Ý$3ú$.%-M%3{%-¯%<Ý%?&&Z&& &8¿&:ø&3'F'['t'$'E²'Gø'@('V(!~(- (&Î(õ(' )3)R)h)†)¢))»)å)ø)$*5*Q*d*w*Š*›*º*Ð**ë*9+0P+"++¤+Ð+ì+$,-,L,_,o,-,¯,6Î,I-CO-1“-7Å-<ý-3:.&n.•.'¥.'Í.õ./$$/0I/8z/³//Ï/%ÿ/%0!>0`0y0’0«0'º0s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 15:16+0000 Last-Translator: Mingye Wang Language-Team: Chinese (China) (http://www.transifex.com/freedesktop/realmd/language/zh_CN/) Language: zh_CN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; åŒå的域已ç»é…置管ç†å‘˜ç”¨æˆ·åæˆ–å¯†ç æ— æ•ˆsssd.conf ä¸­å·²ç»æœ‰åŸŸ %s已加入一个域已加入å¦ä¸€ä¸ªåŸŸï¼š%s已加入该域已ç»åœ¨è¿è¡Œå¦ä¸€ä¸ªæ“作更改哪些用户å¯ç™»å½•此计算机的策略需è¦è¿›è¡Œè®¤è¯ã€‚æœç´¢ Kerberos 领域需è¦è®¤è¯å°†æ­¤è®¡ç®—机加入领域或域需è¦è®¤è¯ä»Žé¢†åŸŸæˆ–域中移除此计算机需è¦è®¤è¯ã€‚无法加入此域未å‚与模å¼è¿è¡Œæ˜¯æ— æ³•æç¤ºå¯†ç å˜æ›´ç™»å½•ç­–ç•¥è¦åŠ å…¥çš„è®¡ç®—æœº OU DNå·²é…ç½®çš„å‘½ä»¤ä¸æ­£ç¡®ï¼š%s未找到已é…置的命令:%sæ— æ³•è®¤è¯ %s æ— æ³•å˜æ›´è®¸å¯çš„ç™»å½•åæ— æ³•连接领域æœåŠ¡æ— æ³•è¿žæŽ¥ç³»ç»Ÿæ€»çº¿æ— æ³•åˆ›å»ºè¯ä¹¦ç¼“存文件:%s:%s无法创建è¿è¡Œç›®å½•:%s:%s无法创建套接字无法创建套接字对:%s无法找到领域无法åˆå§‹åŒ– Kerberos无法加入领域无法离开领域无法加载领域æœåŠ¡æ— æ³•è§£æžç”¨æˆ·å:%sæ— æ³•å¼¹å‡ºè¾“å…¥å¯†ç æç¤ºï¼š%s无法读物凭æ®ç¼“å­˜æ— æ³•è¯»å– kerberos è¯ä¹¦æ— æ³•è§£æžå‡­æ®ç¼“存无法è¿è¡Œ realmdæ— æ³•é€‰å– kerberos è¯ä¹¦æ— æ³•写入é…置:%sæ‹’ç»ä»»æ„åŸŸå¸æˆ·ç™»å½•åæ‹’ç»ç”¨æˆ·ç™»å½•åæœç´¢å¯ç”¨çš„é¢†åŸŸæŽ¢ç´¢é¢†åŸŸä¸æç¤ºè¾“å…¥sssd.conf 中未包å«åŸŸ %s在 nsswitch.conf å’Œ PAM 中å¯ç”¨ SSSD å¤±è´¥ã€‚åœ¨é¢†åŸŸä¸­ç™»è®°æ­¤è®¡ç®—æœºä¸æ”¯æŒä½¿ç”¨å¯†ç æ¥ç™»è®°åˆ°è¿™ä¸ªé¢†åŸŸå˜æ›´è®¸å¯çš„登录å失败。请查看诊断。æœç´¢é¢†åŸŸå¤±è´¥ã€‚请查看诊断信æ¯ã€‚在领域中登记计算机失败。请查看诊断信æ¯ã€‚ä»ŽåŸŸä¸­å–æ¶ˆç™»è®°è®¡ç®—机失败。请查看诊断信æ¯ã€‚使用 -a 或 --all ä¸èƒ½æŒ‡å®šç¾¤ç»„将模å¼å®‰è£…到指定å‰ç¼€æ­£åœ¨å®‰è£…å¿…è¦çš„è½¯ä»¶åŒ…æ— æ•ˆç™»å½•å‚æ•°ã€Œ%sã€ï¼Œå«æœ‰ä¸æ”¯æŒçš„字符。无效的登录å傿•°%s%s%s ä¸Žç™»å½•åæ ¼å¼ä¸ç¬¦ã€‚%s çš„å¯†ç æ— æ•ˆ%s 选项无效:%s无需密ç è‡ªåŠ¨åŠ å…¥å°†è®¡ç®—æœºåŠ å…¥é¢†åŸŸä½¿ç”¨é¢„è®¾çš„ä¸€æ¬¡æ€§å¯†ç åŠ å…¥åªæœ‰â€œ%s†æˆå‘˜ç®¡ç†è½¯ä»¶æ”¯æŒé€šè¿‡ä¸€æ¬¡å¯†ç æ€§åŠ å…¥åŸŸåªæœ‰â€œ%sâ€æˆå‘˜ç®¡ç†è½¯ä»¶æ”¯æŒé€šè¿‡ä¸€ä¸ªç”¨æˆ·å¯†ç åŠ å…¥åŸŸä¸æ”¯æŒåŠ å…¥æ­¤åŸŸä¸æ”¯æŒä½¿ç”¨è¯ä¹¦ç¼“å­˜åŠ å…¥æ­¤åŸŸä¸æ”¯æŒä½¿ç”¨ç§˜å¯†åŠ å…¥æ­¤åŸŸä¸æ”¯æŒæ²¡æœ‰å‡­æ®å°±åŠ å…¥åˆ°è¿™ä¸ªé¢†åŸŸæœ¬ç³»ç»Ÿçš„ LDAP 䏿”¯æŒ UDP è¿žæŽ¥ä¸æ”¯æŒç¦»å¼€æ­¤åŸŸä¸æ”¯æŒä½¿ç”¨è¯ä¹¦ç¼“å­˜ç¦»å¼€æ­¤åŸŸä¸æ”¯æŒæ— è¯ä¹¦ç¦»å¼€æ­¤åŸŸåˆ—出已知的领域必è¦è½¯ä»¶åŒ…未安装:%s需è¦å‡­æ®ä»¥ç¦»å¼€è¯¥åŸŸæœªæ‰¾åˆ°é»˜è®¤çš„领域使用 -a 或 --all ä¸èƒ½æŒ‡å®šç™»å½•åæœªæ‰¾åˆ°è¯¥é¢†åŸŸæœªæ‰¾åˆ°è¯¥é¢†åŸŸï¼š%s没有足够的æƒé™æ‰§è¡Œè¯¥æ“ä½œå½“å‰æœªåŠ å…¥è‡³è¯¥åŸŸä¸­è¿˜æœªåŠ å…¥æ­¤åŸŸå°šæœªåŠ å…¥è¯¥åŸŸæ“ä½œå·²å–æ¶ˆã€‚%s 的密ç ï¼š å…许任æ„åŸŸå¸æˆ·ç™»å½•åå…许用户登录å进程被信å·ç»ˆæ­¢ï¼š%dé¢†åŸŸä¸æ”¯æŒè‡ªåŠ¨çš„æˆå‘˜èº«ä»½æ“ä½œé¢†åŸŸä¸æ”¯æŒä½¿ç”¨ä¸€æ¬¡æ€§å¯†ç çš„æˆå‘˜èº«ä»½æ“ä½œé¢†åŸŸä¸æ”¯æŒä½¿ç”¨å¯†ç çš„æˆå‘˜èº«ä»½æ“作è¦å…许/æ‹’ç»ç™»å½•å的领域从æœåŠ¡å™¨æ”¶åˆ°æ— æ•ˆçš„ Netlogon æ•°æ®ä»Žé¢†åŸŸä¸­ç§»é™¤è®¡ç®—机从领域中移除计算机设置计算机å¸å·çš„主è¦ç”¨æˆ·æ˜¾ç¤ºæ‰€æœ‰å·²æ‰¾åˆ°çš„é¢†åŸŸæ˜¾ç¤ºå…¨éƒ¨é¢†åŸŸåªæ˜¾ç¤ºå称跳过命令:%s指定的登录å必须与 --withdraw 共用指定一个待加入的领域指定需è¦ä»Žå…许列表里添加或删除的用户ä¸å¸¦ --all 指定拒ç»å·²è¢«å¼ƒç”¨ï¼›è¯·æ”¹ç”¨ realm permit --withdraw--no-password 傿•°ä¸èƒ½å’Œ --one-time-password 或 --user 共用--one-time-password 傿•°ä¸èƒ½ä¸Ž --user 共用拒ç»ç™»å½•åæ—¶ä¸èƒ½ä½¿ç”¨ --withdraw 或 -x 选项Samba æä¾›ç¨‹åºæ— æ³•对å…许的登录å进行é™åˆ¶ã€‚在加入 IPA åŸŸæ—¶ä¸æ”¯æŒ computer-ou 傿•°ã€‚无法获å–安装这些软件包:%sæ“ä½œå·²å–æ¶ˆè¿™ä¸ªé¢†åŸŸä¸å…许指定的登录åå°†å称视为è¦å…è®¸çš„ç¾¤ç»„åˆ—è¡¨å…³é—­è‡ªåŠ¨èº«ä»½æ˜ å°„æ— æ³•è‡ªåŠ¨åŠ å…¥åŸŸä»Žé¢†åŸŸä¸­å–æ¶ˆç™»è®°æ­¤è®¡ç®—æœºä¸æ”¯æŒä½¿ç”¨å¯†ç æ¥å–æ¶ˆç™»è®°è¿™ä¸ªé¢†åŸŸä¸æ”¯æŒä½¿ç”¨æœºå¯†(secret)æ¥å–æ¶ˆç™»è®°è¿™ä¸ªé¢†åŸŸä¸æ”¯æŒçš„域加入凭æ®ä¸æ”¯æŒæˆ–未知的æˆå‘˜ç®¡ç†è½¯ä»¶â€œ%sâ€ä½¿ç”¨ --all æ¥æ‹’ç»æ‰€æœ‰ç™»å½•å使用指定的客户端使用指定的æˆå‘˜ç®¡ç†è½¯ä»¶ä½¿ç”¨æŒ‡å®šçš„æœåŠ¡ç«¯ç”¨äºŽç™»è®°çš„ç”¨æˆ·å用于移除的用户åVerbose è¾“å‡ºæ”¶å›žä¸€ä¸ªåŸŸå¸æˆ·çš„登录å许å¯realmd-0.17.1/po/it.gmo0000644003225100322510000000073414315277003015120 0ustar00sbosesbose00000000000000Þ•$,8¢9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Italian (http://www.transifex.com/freedesktop/realmd/language/it/) Language: it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/Rules-quot0000644003225100322510000000423314315276770016013 0ustar00sbosesbose00000000000000# This file, Rules-quot, can be copied and used freely without restrictions. # Special Makefile rules for English message catalogs with quotation marks. DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot .SUFFIXES: .insert-header .po-update-en en@quot.po-create: $(MAKE) en@quot.po-update en@boldquot.po-create: $(MAKE) en@boldquot.po-update en@quot.po-update: en@quot.po-update-en en@boldquot.po-update: en@boldquot.po-update-en .insert-header.po-update-en: @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ if test "$(PACKAGE)" = "gettext-tools" && test "$(CROSS_COMPILING)" != "yes"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ ll=`echo $$lang | sed -e 's/@.*//'`; \ LC_ALL=C; export LC_ALL; \ cd $(srcdir); \ if $(MSGINIT) $(MSGINIT_OPTIONS) -i $(DOMAIN).pot --no-translator -l $$lang -o - 2>/dev/null \ | $(SED) -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | \ { case `$(MSGFILTER) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-8] | 0.1[0-8].*) \ $(MSGFILTER) $(SED) -f `echo $$lang | sed -e 's/.*@//'`.sed \ ;; \ *) \ $(MSGFILTER) `echo $$lang | sed -e 's/.*@//'` \ ;; \ esac } 2>/dev/null > $$tmpdir/$$lang.new.po \ ; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "creation of $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi en@quot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header en@boldquot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header mostlyclean: mostlyclean-quot mostlyclean-quot: rm -f *.insert-header realmd-0.17.1/po/hu.po0000644003225100322510000005175314315277002014762 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Balázs Úr , 2014,2019 # Balázs Úr, 2014 # Gabor Kelemen , 2016 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2019-02-13 19:11+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/freedesktop/realmd/" "language/hu/)\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "A tartomány feltérképezése" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Hitelesítés szükséges a kerberos tartomány feltérképezéséhez" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Gép csatlakoztatása a tartományhoz" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "Hitelesítés szükséges a gép csatlakoztatásához a tartományhoz" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Gép eltávolítása a tartományból" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "Hitelesítés szükséges a számítógép eltávolításához a tartományból." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Bejelentkezési házirend módosítása" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Hitelesítés szükséges a házirend módosításához, hogy ki jelentkezhet be erre " "a számítógépre." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "A folyamat a következÅ‘ szignállal fejezÅ‘dött be: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "A művelet megszakítva" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Nem található beállított parancs: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Kihagyott parancs: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "A beállított parancs érvénytelen: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Érvénytelen vagy nem támogatott Netlogon adat érkezett a kiszolgálótól" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "Az ezen a rendszeren lévÅ‘ LDAP nem támogatja az UDP kapcsolatokat" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Nem támogatott vagy ismeretlen tagsági szoftver: „%sâ€" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Már csatlakozott egy tartományhoz" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Az adminisztrátor neve vagy jelszava nem érvényes" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Jelenleg nincs csatlakozva ehhez a tartományhoz" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Hitelesítési adatok szükségesek a tartomány elhagyásához" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Nem sikerült a beállítások kiírása: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Nincs felhatalmazva a művelet végrehajtására" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "A művelet megszakítva." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" "Nem sikerült a gép bejegyzése a tartományba. Nézze meg a diagnosztikát." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" "Nem sikerült a gép bejegyzésének törlése a tartományból. Nézze meg a " "diagnosztikát." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "A tartományba csatlakozás hitelesítési adatok nélkül nem támogatott" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "A tartomány elhagyása hitelesítési adatok nélkül nem támogatott" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "A tartományba csatlakozás hitelesítési adatok gyorsítótárának használatával " "nem támogatott" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "A tartomány elhagyása hitelesítési adatok gyorsítótárának használatával nem " "támogatott" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "A tartományba csatlakozás titok használatával nem támogatott" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "A tartomány bejegyzésének törlése titok használatával nem támogatott" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "A tartományba bejegyzés jelszó használatával nem támogatott" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "A tartomány bejegyzésének törlése jelszó használatával nem támogatott" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "A tartományba csatlakozás nem támogatott" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "A tartomány elhagyása nem támogatott" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Már fut egy másik művelet" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Már csatlakozott egy másik tartományhoz: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" "Nem sikerült az engedélyezett bejelentkezések módosítása. Nézze meg a " "diagnosztikát." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "A tartomány nem engedélyezi a bejelentkezések megadását" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "Érvénytelen bejelentkezési argumentum: %s%s%s nem felel meg a bejelentkezési " "formátumnak." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "A következÅ‘ csomagok nem telepíthetÅ‘k: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "A szükséges csomagok nincsenek telepítve: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Szükséges csomagok telepítése" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Nem sikerült a tartomány felderítése. Nézze meg a diagnosztikát." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Nem csatlakozott ehhez a tartományhoz" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" "A Samba szolgáltató nem korlátozhatja az engedélyezett bejelentkezéseket." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" "Érvénytelen bejelentkezési argumentum: „%sâ€. Nem támogatott karaktereket " "tartalmaz." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Az SSSD engedélyezése az nsswitch.conf-ban és a PAM-ban meghiúsult." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Nem lehet automatikusan csatlakozni a tartományba" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Tartományhoz csatlakozás egyszeri jelszóval csak a(z) „%s†tagsági " "szoftverrel támogatott" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Tartományhoz csatlakozás felhasználói jelszóval csak a(z) „%s†tagsági " "szoftverrel támogatott" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Nem támogatott hitelesítési adatok a tartományhoz csatlakozáshoz" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Már csatlakozott ehhez a tartományhoz" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Már be van állítva egy tartomány ezzel a névvel" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Az sssd.conf beállítófájl már tartalmazza ezt a tartományt: %s" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Az sssd.conf beállítófájl nem tartalmazza ezt a tartományt: %s" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" "A computer-ou argumentum nem támogatott IPA tartományhoz csatlakozáshoz." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" "A computer-ou argumentum nem támogatott IPA tartományhoz csatlakozáshoz." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Jelenleg nincs csatlakozva ehhez a tartományhoz" #: tools/realm.c:40 msgid "Discover available realm" msgstr "ElérhetÅ‘ tartomány feltérképezése" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Gép bejegyzése egy tartományba" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Gép bejegyzésének törlése egy tartományból" #: tools/realm.c:43 msgid "List known realms" msgstr "Ismert tartományok kiírása" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Felhasználói bejelentkezések engedélyezése" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Felhasználói bejelentkezések tiltása" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Érvénytelen érték a(z) %s kapcsolóhoz: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Telepítési mód egy konkrét elÅ‘taghoz" #: tools/realm.c:215 msgid "Verbose output" msgstr "Részletes kimenet" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Ne kérjen adatbevitelt" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Nem lehet csatlakozni a tartományszolgáltatáshoz" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Nem lehet betölteni a tartományszolgáltatást" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Nem sikerült a rendszerbuszhoz kapcsolódni" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "A socketpár létrehozása sikertelen: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "A socket létrehozása sikertelen" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "A realmd nem futtatható" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Nem hozható létre a futtatókörnyezet „%s†könyvtára: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Nem hozható létre a hitelesítési adatok gyorsítótárfájlja: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Nem oldható fel a hitelesítési adatok gyorsítótára" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "A jelszó érvénytelen ehhez: %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Nem sikerült a hitelesítés mint %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "A felhasználónév nem dolgozható fel: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Nem olvasható a hitelesítési adatok gyorsítótára" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "A kerberos nem készíthetÅ‘ elÅ‘" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "Nem lehet jelszót kérni felügyelet nélküli módban futáskor" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "%s jelszava: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Nem lehet bekérni a jelszót: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "A tartomány nem támogatja a tagságot jelszó használatával" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "A tartomány nem támogatja a tagságot egyszeri jelszó használatával" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Nem sikerült a kerberos hitelesítési adatok kiválasztása" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Nem sikerült a kerberos hitelesítési adatok olvasása" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "A tartomány nem támogatja az automatikus tagságot" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Nem sikerült a tartományok felderítése" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Nem lett felderítve alapértelmezett tartomány" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Nem található ilyen tartomány: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Minden felderített tartomány megjelenítése" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Csak a nevek megjelenítése" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Konkrét kliensszoftver használata" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Konkrét tagsági szoftver használata" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Konkrét kiszolgálószoftver használata" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Minden tartomány megjelenítése" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Nem sikerült csatlakozni a tartományhoz" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Nem lehet csatlakozni a tartományhoz" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Nem található ilyen tartomány" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Automatikus azonosítóleképezés kikapcsolása" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Konkrét kliensszoftver használata" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "Csatlakozás az ezzel az OU DN-nel rendelkezÅ‘ számítógéphez" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Csatlakozás automatikusan jelszó nélkül" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Csatlakozás elÅ‘re beállított egyszeri jelszóval" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Konkrét kliensszoftver használata" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Konkrét kiszolgálószoftver használata" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "A bejegyzéshez használandó felhasználónév" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "A felhasználó résztvevÅ‘ beállítása a számítógépes fiókhoz" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Adjon meg egy tartományt a csatlakozáshoz" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "A --no-password kapcsoló nem használható a --one-time-password vagy --user " "kapcsolókkal" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "A --one-time-password kapcsoló nem használható --user kapcsolóval" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Nem sikerült elhagyni a tartományt" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Számítógép eltávolítása a tartományból" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Az eltávolításhoz használandó felhasználónév" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Nem sikerült az engedélyezett bejelentkezések módosítása" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Bármely tartományi fiók bejelentkezésének engedélyezése" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Bármely tartományi fiók bejelentkezésének tiltása" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Egy tartományi fiók bejelentkezési engedélyének visszavonása" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Nevek kezelése engedélyezendÅ‘ csoportokként" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Bejelentkezések engedélyezése/tiltása ezen tartományhoz" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "A -a vagy --all kapcsolóval nem adható meg bejelentkezési név" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "A --withdraw vagy -x kapcsolók nem használhatók bejelentkezések letiltásakor" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "A konkrét bejelentkezéseket a --withdraw kapcsolóval kell megadni" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "A -a vagy --all kapcsolóval nem adható meg csoport" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Az összes bejelentkezés letiltásához használja a --all kapcsolót" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Adjon meg konkrét felhasználókat az engedélyezettek listájához adáshoz vagy " "onnan eltávolításhoz" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "A tiltás megadása elavult a --all használata nélkül. Használja a realm " "permit --withdraw parancsot" realmd-0.17.1/po/fa.po0000644003225100322510000003346314315277002014732 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Persian (http://www.transifex.com/freedesktop/realmd/language/" "fa/)\n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/POTFILES.in0000644003225100322510000000103114046520517015546 0ustar00sbosesbose00000000000000service/org.freedesktop.realmd.policy.in service/realm-command.c service/realm-disco-mscldap.c service/realm-disco-rootdse.c service/realm-example.c service/realm-ini-config.c service/realm-invocation.c service/realm-kerberos.c service/realm-ldap.c service/realm-packages.c service/realm-provider.c service/realm-samba.c service/realm-sssd.c service/realm-sssd-ad.c service/realm-sssd-config.c service/realm-sssd-ipa.c tools/realm.c tools/realm-client.c tools/realm-discover.c tools/realm-join.c tools/realm-leave.c tools/realm-logins.c realmd-0.17.1/po/si.po0000644003225100322510000006650114315277002014756 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Collabora Ltd., Red Hat Inc. # This file is distributed under the same license as the realmd package. # # Translators: # හෙළබස, 2021 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2013-01-14 15:31+0000\n" "Last-Translator: හෙළබස, 2021\n" "Language-Team: Sinhala (http://www.transifex.com/freedesktop/realmd/language/" "si/)\n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º සොය෠ගන්න" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "kerberos à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·Š සොය෠ගà·à¶±à·“මට සත්â€à¶ºà·à¶´à¶±à¶º à¶…à·€à·à·Šâ€à¶º වේ" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "යන්ත්â€à¶»à¶º à¶»à·à¶¢à¶°à·à¶±à·’යට සම්බන්ධ වන්න" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "මෙම යන්ත්â€à¶»à¶º à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà¶§ හ෠වසමකට සම්බන්ධ වීමට සත්â€à¶ºà·à¶´à¶±à¶º à¶…à·€à·à·Šâ€à¶º වේ" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "à¶»à·à¶¢à¶°à·à¶±à·’යෙන් යන්ත්රය ඉවත් කරන්න" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "මෙම පරිගණකය à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·’න් හ෠වසමකින් ඉවත් කිරීමට සත්â€à¶ºà·à¶´à¶±à¶º à¶…à·€à·à·Šâ€à¶º වේ." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "පිවිසුම් à¶´à·Šâ€à¶»à¶­à·’පත්තිය වෙනස් කරන්න" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "මෙම පරිගණකයට ලොග් විය à·„à·à¶šà·Šà¶šà·š à¶šà·à¶§à¶¯ යන à¶´à·Šâ€à¶»à¶­à·’පත්තිය වෙනස් කිරීමට සත්â€à¶ºà·à¶´à¶±à¶º à¶…à·€à·à·Šâ€à¶º වේ." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "සංඥà·à·€: %dසමඟ ක්රියà·à·€à¶½à·’ය අවසන් විය" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "මෙහෙයුම අවලංගු කරන ලදී" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "වින්â€à¶ºà·à·ƒ à¶šà·… විධà·à¶±à¶º හමු නොවීය: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "මඟ à·„à·à¶»à·’ය විධà·à¶±à¶º: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "වින්â€à¶ºà·à·ƒ à¶šà·… විධà·à¶±à¶º වලංගු à¶±à·à¶­: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "සේවà·à¶¯à·à¶ºà¶šà¶ºà·™à¶±à·Š වලංගු නොවන හ෠සහà·à¶º නොදක්වන Netlogon දත්ත à¶½à·à¶¶à·“ ඇත" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "මෙම පද්ධතියේ LDAP UDP සම්බන්ධත෠සඳහ෠සහය නොදක්වයි" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "සහà·à¶º නොදක්වන හ෠නොදන්න෠සà·à¶¸à·à¶¢à·’à¶š මෘදුකà·à¶‚à¶œ '%s'" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "දà·à¶±à¶§à¶¸à¶­à·Š වසමකට සම්බන්ධ වී ඇත" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "පරිපà·à¶½à¶š නම හ෠මුරපදය වලංගු නොවේ" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "දà·à¶±à¶§ මෙම වසමට සම්බන්ධ වී නොමà·à¶­" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "මෙම වසම à·„à·à¶» යà·à¶¸ සඳහ෠අක්තපත්â€à¶» à¶…à·€à·à·Šâ€à¶ºà¶ºà·’" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "වින්â€à¶ºà·à·ƒà¶º ලිවීමට නොහà·à¶šà·’ විය: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "මෙම à¶šà·Šâ€à¶»à·’යà·à·€ සිදු කිරීමට අවසර à¶±à·à¶­" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "මෙහෙයුම අවලංගු කරන ලදී." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "යන්ත්â€à¶»à¶º à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ ඇතුළත් කිරීමට අපොහොසත් විය. à¶»à·à¶œ විනිà·à·Šà¶ à¶º බලන්න." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "වසම වෙතින් යන්ත්â€à¶»à¶º බඳව෠නොගà·à¶±à·“ම à¶…à·ƒà·à¶»à·Šà¶®à¶š විය. à¶»à·à¶œ විනිà·à·Šà¶ à¶º බලන්න." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» නොමà·à¶­à·’à·€ මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ වීමට සහය නොදක්වයි" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» නොමà·à¶­à·’à·€ මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º à·„à·à¶» යà·à¶¸à¶§ සහය නොදක්වයි" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» à·„à·à¶¹à·’ලියක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ වීමට සහය නොදක්වයි" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» à·„à·à¶¹à·’ලියක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà·™à¶±à·Š ඉවත් වීමට සහය නොදක්වයි" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "රහසක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ වීමට සහය නොදක්වයි" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "රහසක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º බඳව෠නොගà·à¶±à·“ම සඳහ෠සහය නොදක්වයි" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "මුරපදයක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º ලියà·à¶´à¶¯à·’à¶‚à¶ à·’ කිරීම සහà·à¶º නොදක්වයි" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "මුරපදයක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º බඳව෠නොගà·à¶±à·“ම සඳහ෠සහය නොදක්වයි" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ වීමට සහය නොදක්වයි" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º à·„à·à¶» යà·à¶¸ සහය නොදක්වයි" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "දà·à¶±à¶§à¶¸à¶­à·Š වෙනත් à¶šà·Šâ€à¶»à·’යà·à·€à¶šà·Š à¶šà·Šâ€à¶»à·’යà·à¶­à·Šà¶¸à¶š වේ" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "දà·à¶±à¶§à¶¸à¶­à·Š වෙනත් වසමකට සම්බන්ධ වී ඇත: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "අවසර ලත් පිවිසුම් වෙනස් කිරීමට අසමත් විය. à¶»à·à¶œ විනිà·à·Šà¶ à¶º බලන්න." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º පිවිසුම් සඳහන් කිරීමට ඉඩ නොදේ" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "වලංගු නොවන පිවිසුම් තර්කය%s%s%s පිවිසුම් ආකෘතියට නොගà·à¶½à¶´à·š." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "ස්ථà·à¶´à¶±à¶º සඳහ෠පහත à¶´à·à¶šà·šà¶¢ නොමà·à¶­: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "à¶…à·€à·à·Šâ€à¶º à¶´à·à¶šà·šà¶¢ ස්ථà·à¶´à¶±à¶º à¶šà¶» නොමà·à¶­: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "à¶…à·€à·à·Šà¶º à¶´à·à¶šà·šà¶¢ ස්ථà·à¶´à¶±à¶º කිරීම" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º සොය෠ගà·à¶±à·“මට අපොහොසත් විය. à¶»à·à¶œ විනිà·à·Šà¶ à¶º බලන්න." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "මෙම වසමට සම්බන්ධ වී à¶±à·à¶­" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "සම්බ෠සපයන්නà·à¶§ අවසර ලත් පිවිසුම් සීම෠කළ නොහà·à¶š." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "වලංගු නොවන පිවිසුම් තර්කය '%s' à·„à·’ සහය නොදක්වන à¶…à¶šà·Šà·‚à¶» අඩංගු වේ." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "nsswitch.conf සහ PAM à·„à·’ SSSD සබල කිරීම à¶…à·ƒà·à¶»à·Šà¶®à¶š විය." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "වසම වෙත ස්වයංක්â€à¶»à·“යව සම්බන්ධ විය නොහà·à¶š" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "à¶‘à¶šà·Š වරක් මුරපදයක් සමඟ වසමකට සම්බන්ධ වීමට සහà·à¶º වන්නේ '%s' à·ƒà·à¶¸à·à¶¢à·’à¶šà¶­à·Šà·€ මෘදුකà·à¶‚ගය සමඟ පමණි" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "පරිà·à·“ලක මුරපදයක් සමඟ වසමකට සම්බන්ධ වීමට සහà·à¶º වන්නේ '%s' à·ƒà·à¶¸à·à¶¢à·’à¶šà¶­à·Šà·€ මෘදුකà·à¶‚ගය සමඟ පමණි" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "වසමකට සම්බන්ධ වීම සඳහ෠සහà·à¶º නොදක්වන à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶»" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "දà·à¶±à¶§à¶¸à¶­à·Š මෙම වසමට සම්බන්ධ වී ඇත" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "මෙම නම සහිත වසමක් දà·à¶±à¶§à¶¸à¶­à·Š වින්â€à¶ºà·à·ƒ à¶šà¶» ඇත" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "දà·à¶±à¶§à¶¸à¶­à·Š sssd.conf config ගොනුවේ වසම %s ඇත" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "sssd.conf config ගොනුවේ වසම් %s නොමà·à¶­" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "IPA වසමකට සම්බන්ධ වන විට computer-ou තර්කය සහà·à¶º නොදක්වයි." #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "දà·à¶±à¶§ මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ වී නොමà·à¶­" #: tools/realm.c:40 msgid "Discover available realm" msgstr "පවතින à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º සොය෠ගන්න" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "මෙම යන්ත්â€à¶»à¶º à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà¶§ ඇතුළත් කරන්න" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "මෙම යන්ත්â€à¶»à¶º à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·’න් ඉවත් කරන්න" #: tools/realm.c:43 msgid "List known realms" msgstr "දන්න෠ක්ෂේත්â€à¶» à¶½à·à¶ºà·’ස්තුගත කරන්න" #: tools/realm.c:44 msgid "Permit user logins" msgstr "පරිà·à·“ලක පුරනය වීමට අවසර දෙන්න" #: tools/realm.c:45 msgid "Deny user logins" msgstr "පරිà·à·“ලක පිවිසුම් à¶´à·Šâ€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කරන්න" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "%s විකල්පය සඳහ෠වලංගු නොවන අගයක්: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "නිà·à·Šà¶ à·’à¶­ උපසර්ගයකට මà·à¶¯à·’ලිය ස්ථà·à¶´à¶±à¶º කරන්න" #: tools/realm.c:215 msgid "Verbose output" msgstr "à·€à·à¶ à·’à¶š à¶´à·Šâ€à¶»à¶­à·’දà·à¶±à¶º" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "ආදà·à¶±à¶º සඳහ෠විමසන්න à¶‘à¶´à·" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "රියල්ම් සේවà·à·€à¶§ සම්බන්ධ වීමට නොහà·à¶šà·’ විය" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "රියල්ම් සේවà·à·€ පූරණය à¶šà·… නොහà·à¶šà·’ විය" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "පද්ධති බසයට සම්බන්ධ වීමට නොහà·à¶šà·’ විය" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "සොකට් යුගලයක් à¶­à·à¶±à·“මට නොහà·à¶šà·’ විය: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "සොකට් සෑදීමට නොහà·à¶šà·’ විය" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "realmd à¶°à·à·€à¶±à¶º à¶šà·… නොහà·à¶šà·’ විය" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "à¶°à·à·€à¶± à¶šà·à¶½ à¶±à·à¶¸à·à·€à¶½à·’ය à¶­à·à¶±à·“මට නොහà·à¶šà·’ විය: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» à·„à·à¶¹à·’ලි ගොනුවක් à¶­à·à¶±à·“මට නොහà·à¶šà·’ විය: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» à·„à·à¶¹à·’ලිය විසඳà·à¶œà¶­ නොහà·à¶šà·’ විය" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "%sසඳහ෠වලංගු නොවන මුරපදයකි" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "%sලෙස සත්â€à¶ºà·à¶´à¶±à¶º à¶šà·… නොහà·à¶šà·’ විය" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "පරිà·à·“ලක à¶±à·à¶¸à¶º විග්â€à¶»à·„ කිරීමට නොහà·à¶šà·’ විය: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» à·„à·à¶¹à·’ලිය කියවීමට නොහà·à¶šà·’ විය" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "kerberos ආරම්භ කිරීමට නොහà·à¶šà·’ විය" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "නොපà·à¶¸à·’à¶«à·’ මà·à¶¯à·’ලියේ à¶°à·à·€à¶±à¶º වන විට මුරපදයක් ඉල්ල෠සිටිය නොහà·à¶š" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "%sසඳහ෠මුරපදය: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "මුරපදය සඳහ෠විමසිය නොහà·à¶š: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Realm මුරපදයක් à¶·à·à·€à·’තයෙන් à·ƒà·à¶¸à·à¶¢à·’කත්වය සඳහ෠සහà·à¶º නොදක්වයි" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Realm à¶‘à¶šà·Š වරක් මුරපදයක් à¶·à·à·€à·’ත෠කරමින් à·ƒà·à¶¸à·à¶¢à·’කත්වය සඳහ෠සහà·à¶º නොදක්වයි" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "kerberos à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» à¶­à·à¶»à· à¶œà·à¶±à·“මට නොහà·à¶šà·’ විය" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "kerberos à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» කියවීමට නොහà·à¶šà·’ විය" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Realm ස්වයංක්â€à¶»à·“ය à·ƒà·à¶¸à·à¶¢à·’කත්වය සඳහ෠සහà·à¶º නොදක්වයි" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "à¶šà·Šà·‚à·šà¶­à·Šâ€à¶» සොය෠ගà·à¶±à·“මට නොහà·à¶šà·’ විය" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "පෙරනිමි à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·Š සොය෠ගෙන නොමà·à¶­" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "à¶‘à·€à·à¶±à·’ à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·Š හමු නොවීය: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "සොයà·à¶œà¶­à·Š සියලුම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶» පෙන්වන්න" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "නම් පමණක් පෙන්වන්න" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "විà·à·šà·‚à·’à¶­ සේවà·à¶¯à·à¶ºà¶š මෘදුකà·à¶‚à¶œ à¶·à·à·€à·’ත෠කරන්න" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "විà·à·šà·‚à·’à¶­ à·ƒà·à¶¸à·à¶¢à·’à¶š මෘදුකà·à¶‚à¶œ à¶·à·à·€à·’ත෠කරන්න" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "විà·à·šà·‚à·’à¶­ සේවà·à¶¯à·à¶ºà¶š මෘදුකà·à¶‚à¶œ à¶·à·à·€à·’ත෠කරන්න" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "සියලුම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶» පෙන්වන්න" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ වීමට නොහà·à¶šà·’ විය" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ විය නොහà·à¶š" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "à¶‘à·€à·à¶±à·’ à¶šà¶½à·à¶´à¶ºà¶šà·Š හමු නොවීය" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "ස්වයංක්â€à¶»à·“ය id සිතියම්කරණය à¶…à¶šà·Šâ€à¶»à·’ය කරන්න" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "සම්බන්ධ වීමට පරිගණක OU DN" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "මුරපදයක් නොමà·à¶­à·’à·€ ස්වයංක්â€à¶»à·“යව සම්බන්ධ වන්න" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "පෙර à·ƒà·à¶šà·ƒà·– à¶‘à¶šà·Š වරක් මුරපදයක් à¶·à·à·€à·’තයෙන් සම්බන්ධ වන්න" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "ලියà·à¶´à¶¯à·’ංචිය සඳහ෠භà·à·€à·’à¶­à· à¶šà·… යුතු පරිà·à·“ලක à¶±à·à¶¸à¶º" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "පරිගණක ගිණුම සඳහ෠පරිà·à·“ලක විදුහල්පති සකසන්න" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "සම්බන්ධ වීමට à¶‘à¶šà·Š à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·Š සඳහන් කරන්න" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "--no-password තර්කය --one-time-password à·„à· --user සමඟ à¶·à·à·€à·’à¶­à· à¶šà·… නොහà·à¶š" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "--user සමඟ --one-time-මුරපද තර්කය à¶·à·à·€à·’à¶­à· à¶šà·… නොහà·à¶š" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "à¶»à·à¶¢à¶°à·à¶±à·’ය à·„à·à¶» යà·à¶¸à¶§ නොහà·à¶šà·’ විය" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "පරිගණකය à¶»à·à¶¢à¶°à·à¶±à·’යෙන් ඉවත් කරන්න" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "ඉවත් කිරීම සඳහ෠භà·à·€à·’à¶­à· à¶šà·… යුතු පරිà·à·“ලක à¶±à·à¶¸à¶º" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "අවසර ලත් පිවිසුම් වෙනස් කිරීමට නොහà·à¶šà·’ විය" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "ඕනෑම Realm ගිණුමකට ඇතුල් වීමට අවසර දෙන්න" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "ඕනෑම Realm ගිණුමට ඇතුල් වීම à¶´à·Šâ€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කරන්න" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Realm ගිණුමක් සඳහ෠පුරනය වීමට බලපත්â€à¶»à¶º ආපසු ගන්න" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "අවසර දිය යුතු à¶šà¶«à·Šà¶©à·à¶ºà¶¸à·Š ලෙස නම් සලකන්න" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "ලොගින් වීමට/à¶´à·Šâ€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කිරීමට Realm" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "-a à·„à· --all සමඟින් පිවිසුම් කිසිවක් සඳහන් නොකළ යුතුය" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "පිවිසුම් à¶´à·Šâ€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කිරීමේදී --withdraw à·„à· -x තර්ක à¶·à·à·€à·’à¶­à· à¶šà·… නොහà·à¶š" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "විà·à·šà·‚à·’à¶­ පිවිසුම් --withdraw සමඟ සඳහන් à¶šà·… යුතුය" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "à¶šà¶«à·Šà¶©à·à¶ºà¶¸à·Š -a à·„à· --all සමඟ සඳහන් නොකළ à·„à·à¶š" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "සියලුම පිවිසුම් à¶´à·Šâ€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කිරීමට --all à¶·à·à·€à·’ත෠කරන්න" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "අවසර ලත් à¶½à·à¶ºà·’ස්තුවෙන් à¶‘à¶šà·Š කිරීමට හ෠ඉවත් කිරීමට නිà·à·Šà¶ à·’à¶­ පරිà·à·“ලකයන් සඳහන් කරන්න" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "à¶´à·Šâ€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කිරීම නොමà·à¶­à·’à·€ --සියල්ල අත්හරිනු à¶½à·à¶¶à·š. Realm permit à¶·à·à·€à·’ත෠කරන්න --withdraw" realmd-0.17.1/po/sv.gmo0000644003225100322510000003314414315277003015135 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D²q/$ #T 7x ° !Î ð !V.!9…!M¿!N "!\"=~"¼"Õ""õ"'#@#(^#'‡#"¯#1Ò#*$/$,O$|$—$´$Ò$"ê$$ %%2%$X%6}%$´%Ù%7ñ%()& R&s&Ž&ª&¹&6Õ&< '"I'6l'B£'4æ'>(EZ(* (*Ë(ö(I)D^)£)"¾)%á)*. *eO*fµ*&+AC+7…+C½+4, 6,;W,=“,Ñ,,æ,=-Q-/o-Ÿ-»-+Ú-..-5.c..–.#ª.Î.%ì.*/8=/,v/)£/BÍ/0*0,E0r00¡0²02Ë0þ0T1Ir1X¼1<2IR2:œ2C×2<3X3,l3&™3 À3,á3(48747p4B¨4;ë4-'5"U5'x5" 5+Ã5+ï564/6s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-23 19:12+0000 Last-Translator: Josef Andersson Language-Team: Swedish (http://www.transifex.com/freedesktop/realmd/language/sv/) Language: sv MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); En domän med detta namn är redan konfigureradAdmin-namn eller lösenord ogiltigtDomänen %s finns redan i konfigurationsfilen sssd.confRedan anslutit till en domänRedan anslutit till en domän: %sRedan anslutit till denna domänKör redan en annan Ã¥tgärdAutentisering krävs för att ändra policy för vem som kan logga in pÃ¥ denna dator.Autentisering krävs för att upptäcka en kerberos-sfärAutentisering krävs för att ansluta denna maskin till en sfär eller domänAutentisering krävs för att ta bort denna dator frÃ¥n en sfär eller domän.Kan inte ansluta till denna sfärKan inte frÃ¥ga efter lösenord vid körning i obevakat lägeÄndra inloggningspolicyComputer OU DN att ansluta tillKonfigurerat kommando ogiltigt: %sKonfigurerat kommando hittades inte: %sKunde inte autentisera som %sKunde inte ändra tillÃ¥tna inloggningarKunde inte ansluta till en sfärtjänstKunde inte ansluta till systembussKunde inte skapa autentiseringscachefilen: %s: %sKunde inte skapa körtidskatalogen: %s: %sKunde inte skapa uttag (socket)Kunde inte skapa uttagspar (socket pair): %sKunde inte upptäcka sfärKunde inte initiera kerberosKunde inte ansluta till sfärKunde inte lämna sfärKunde inte läsa in sfärtjänstenKunde inte tolka användarnamnet: %sKunde inte frÃ¥ga efter lösenord: %sKunde inte läsa autentiseringscacheKunde inte läsa autentiseringsuppgifter för kerberosKunde inte lösa autentiseringscacheKunde inte köra realmdKunde inte välja autentiseringsuppgifter för kerberosKunde inte skriva ut konfigurationen: %sNeka alla sfärkontoinloggningarNeka användarinloggningarUpptäck tillgänglig sfärUpptäck sfärFrÃ¥ga inte efter inmatningDomänen %s finns inte i konfigurationsfilen sssd.confMisslyckades med aktivering av SSSD i nsswitch.conf och PAM.Registrera denna maskin i en sfärAtt registrera denna sfär med ett lösenord stöds ejMisslyckades med att ändra tillÃ¥tna inloggningar. Se diagnostik.Misslyckades med att upptäcka sfär. Se diagnostik.Misslyckades med att registrera maskin i sfär. Se diagnostik.Misslyckades med att avregistrera maskin frÃ¥n domän. Se diagnostik.Grupper fÃ¥r inte anges med -a eller --allInstallera läge till ett specifikt prefixInstallera nödvändiga paketOgiltigt inloggningsargument â€%s†innehÃ¥ller tecken som inte stöds.Ogiltigt inloggningsargument%s%s%s matchar inte inloggningsformatet.Ogiltigt lösenord för %sOgiltigt värde för %s-flagga: %sAnslut automatiskt utan ett lösenordAnslut maskin till sfärAnslut med ett förinställt engÃ¥ngslösenordAtt ansluta till en domän med ett engÃ¥ngslösenord stöds bara med medlemskapsprogramvaran â€%sâ€Att ansluta till en domän med ett användarlösenord stöds bara med medlemskapsprogramvaran â€%sâ€Att ansluta till denna sfär stöds ejAtt ansluta till denna sfär med en autentiseringscache stöds ejAtt ansluta till denna sfär med en hemlighet stöds ejAtt ansluta till denna sfär utan autentiseringsuppgifter stöds ejLDAP pÃ¥ detta system stödjer inte UDP-anslutningarAtt lämna denna sfär stöds ejAtt lämna denna sfär med en autentiseringscache stöds ejAtt lämna denna sfär utan autentiseringsuppgifter stöds ejLista kända sfärerNödvändiga paket är inte installerade: %sBehöver autentiseringsuppgifter för att lämna denna domänIngen standardsfär upptäcktInga inloggningar bör anges med -a eller --allIngen sÃ¥dan sfär hittadesHittade ingen sÃ¥dan sfär: %sEj behörig till att utföra denna Ã¥tgärdEj ansluten till denna domän för tillfälletEj ansluten till denna sfär för tillfälletEj ansluten till denna domänÃ…tgärden avbröts.Lösenord för %s: TillÃ¥t alla sfärkontoinloggningarTillÃ¥t användarinloggningarProcessen avslutades med signalen: %dSfär stödjer inte automatiskt medlemskapSfär stödjer inte medlemskap med ett engÃ¥ngslösenordSfär stödjer inte medlemskap med lösenordSfär att tillÃ¥ta/neka inloggningar förTog emot ogiltigt eller Netlogon-data som inte stöds frÃ¥n serverTa bort dator frÃ¥n sfärTa bort maskin frÃ¥n sfärAnge användarens huvudnamn för datorkontotVisa alla upptäckta sfärerVisa alla sfärerVisa bara namnenÖverhoppat kommando: %sSpecifika inloggningar mÃ¥ste anges med --withdrawAnge en sfär att ansluta tillAnge specifika användare att lägga till eller ta bort frÃ¥n listan över tillÃ¥tnaAtt ange deny utan --all är förÃ¥ldrat. Använd realm permit --withdrawArgumentet--no-password argument kan inte användas med --one-time-password eller --userArgumentet --one-time-password kan inte användas med --userArgumenten --withdraw eller -x kan inte användas när inloggningar nekasSambaleverantören kan inte hindra tillÃ¥tna inloggningar.Argumentet computer-ou stöds ej vid anslutning till en IPA-domän.Följande paket är inte tillgängliga för installation: %sÃ…tgärden avbrötsSfären tillÃ¥ter inte att ange inloggningarBehandla namn som grupper att tillÃ¥taStäng av automatisk id-mappningKunde inte ansluta till domänen automatisktAvregistrera denna maskin frÃ¥n en sfärAtt avregistrera denna sfär med ett lösenord stöds ejAtt avregistrera denna sfär med en hemlighet stöds ejEj stödda autentiseringsuppgifter för att ansluta till en domänMedlemskapsprogramvaran â€%s†är okänd eller stöds ejAnvänd --all för att neka alla inloggningarAnvänd specifik klientprogramvaraAnvänd specifik medlemskapsprogramvaraAnvänd specifik serverprogramvaraAnvändarnamn att använda vid registreringAnvändarnamn att använda för borttagningDetaljerad utskriftDra in tillstÃ¥ndet att logga in för ett sfärkontorealmd-0.17.1/po/kn.po0000644003225100322510000003346314315277002014754 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Kannada (http://www.transifex.com/freedesktop/realmd/language/" "kn/)\n" "Language: kn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/hi.gmo0000644003225100322510000000073214315277003015102 0ustar00sbosesbose00000000000000Þ•$,8 9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Hindi (http://www.transifex.com/freedesktop/realmd/language/hi/) Language: hi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/hr.po0000644003225100322510000004746014315277002014757 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # milotype , 2020 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2020-09-23 19:34+0000\n" "Last-Translator: milotype \n" "Language-Team: Croatian (http://www.transifex.com/freedesktop/realmd/" "language/hr/)\n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Otkrij podruÄje" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Za otkrivanje podruÄja kerberos potrebna je ovjera" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Pridruži stroj podruÄju" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "Za pridruživanje ovog ureÄ‘aja podruÄju ili domeni potrebna je ovjera" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Ukloni stroj iz podruÄja" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "Za uklanjanje ovog raÄunala iz podruÄja ili domene potrebna je ovjera." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Promjeni politiku prijave" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Za mijenjanje politike odreÄ‘ivanja korisnika koji se mogu prijaviti na ovo " "raÄunalo potrebna je ovjera." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Proces je prekinut sa signalom: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "Operacija je prekinuta" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Konfigurirana naredba nije pronaÄ‘ena: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "PreskoÄena naredba: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Konfigurirana naredba nevažeća: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Primljeni su nevažeći ili nepodržani Netlogon podaci od poslužitelja" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "LDAP na ovom sustavu ne podržava UDP veze" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Nepodržan ili nepoznat softver za Älanstvo „%sâ€" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Već je pridružen jednoj domeni" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Ime administratora ili lozinka ne važi" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Nije trenutaÄno pridružen ovoj domeni" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Za napuÅ¡tanje ove domene potrebni su podaci za prijavu" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Neuspjelo ispisivanje konfiguracije: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Nema autorizaciju za izvrÅ¡avanje ove radnje" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Operacija je prekinuta." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Neuspjelo upisivanje stroja u podruÄje. Vidi dijagnozu." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "Neuspjelo ispisivanje stroja iz podruÄja. Vidi dijagnozu." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Pridruživanje ovom podruÄju bez podataka za prijavu nije podržano" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" "NapuÅ¡tanje ovog podruÄja bez predmemorije podataka za prijavu nije podržano" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "Pridruživanje ovom podruÄju pomoću predmemorije podataka za prijavu nije " "podržano" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "NapuÅ¡tanje ovog podruÄja pomoću predmemorije podataka za prijavu nije " "podržano" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Pridruživanje ovom podruÄju pomoću tajne nije podržano" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Ispisivanje ovog podruÄja pomoću tajne nije podržano" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Upisivanje ovog podruÄja pomoću lozinke nije podržano" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Ispisivanje ovog podruÄja pomoću lozinke nije podržano" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Pridruživanje ovom podruÄju nije podržano" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "NapuÅ¡tanje ovog podruÄja nije podržano" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Već pokreće jednu drugu radnju" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Već je pridružen jednoj drugoj domeni: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "Neuspjelo mijenjanje dozvoljenih prijava. Vidi dijagnozu." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "PodruÄje ne dozvoljava odreÄ‘ivanje prijava" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "Nevažeći argument prijave%s%s%s ne poklapa se s formatom prijave." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Sljedeći se paketi ne mogu instalirati, jer nisu dostupni: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Potrebni paketi nisu instalirani: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Instaliranje potrebnih paketa" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Neuspjelo otkrivanje podruÄja. Vidi dijagnozu." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Nije pridružen ovoj domeni" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Pružatelj Sambe ne može ograniÄiti dozvoljene prijave." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "Nevažeći argument prijave „%s†sadrži nepodržane znakove." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "UkljuÄivanje SSSD-a u nsswitch.conf i PAM neuspjelo." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Automatsko pridruživanje domeni nije moguće" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Pridruživanje domeni s jednokratnom lozinkom podržano je samo sa softverom " "za Älanstvo „%sâ€" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Pridruživanje domeni s korisniÄkom lozinkom podržano je samo sa softverom za " "Älanstvo „%sâ€" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Nepodržani podaci za prijavu za pridruživanje domeni" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Već je pridružen ovoj domeni" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Domena s ovim nazivom je već konfigurirana" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Domena %s već postoji u sssd.conf datoteci konfiguracije" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Domena %s ne postoji u sssd.conf datoteci konfiguracije" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "Argument computer-ou nije podržan kad se pridružuje IPA domeni." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "Argument computer-ou nije podržan kad se pridružuje IPA domeni." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "TrenutaÄno nije pridružen ovom podruÄju" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Otkrij dostupno podruÄje" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "UpiÅ¡i ovaj stroj u jedno podruÄje" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "IspiÅ¡i ovaj stroj iz jednog podruÄja" #: tools/realm.c:43 msgid "List known realms" msgstr "Nabroji poznata podruÄja" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Dozvoli prijave korisnika" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Odbij prijave korisnika" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Nevažeća vrijednost za %s mogućnost: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Instaliraj naÄin rada na odreÄ‘eni prefiks" #: tools/realm.c:215 msgid "Verbose output" msgstr "OpÅ¡iran rezultat" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Ne zahtijevaj unos" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Neuspjelo povezivanje na uslugu podruÄja" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Neuspjelo uÄitavanje usluge podruÄja" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Neuspjelo povezivanje na bus sustava" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Neuspjelo stvaranje para utiÄnica: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Neuspjelo stvaranje utiÄnice" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Neuspjelo pokretanje realmd-a" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Neuspjelo stvaranje izvrÅ¡nog direktorija: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" "Neuspjelo stvaranje predmemorijske datoteke podataka za prijavu: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Neuspjelo razrjeÅ¡avanje predmemorije podataka za prijavu" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Nevažeća lozinka za %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Neuspjela ovjera kao %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Neusjpela obrada korisniÄkog imena: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Neuspjelo Äitanje predmemorije podataka za prijavu" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Neuspjelo inicijaliziranje kerbosa" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" "Lozinka se ne može zahtijevati kad se pokreće u naÄinu rada bez nadzora" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Lozinka za %s: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Neuspjelo zahtijevanje lozinke: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "PodruÄje ne podržava Älanstvo pomoću lozinke" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "PodruÄje ne podržava Älanstvo pomoću jednokratne lozinke" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Neuspjelo biranje podataka za prijavu na kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Neuspjelo Äitanje podataka za prijavu na kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "PodruÄje ne podržava automatsko Älanstvo" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Neuspjelo otkrivanje podruÄja" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Nijedno zadano podruÄje nije pronaÄ‘eno" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Takvo podruÄje nije pronaÄ‘eno: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Prikaži sva otkrivena podruÄja" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Prikaži samo nazive" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Koristi odreÄ‘eni softver klijenta" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Koristi odreÄ‘eni softver Älanstva" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Koristi odreÄ‘eni softver poslužitelja" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Prikaži sva podruÄja" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Neuspjelo pridruživanje podruÄju" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Pridruživanje ovom podruÄju nije moguće" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Takvo podruÄje nije pronaÄ‘eno" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "IskljuÄi automatsko povezivanje id-a" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Koristi odreÄ‘eni softver klijenta" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" "Jedinstveni naziv raÄunala organizacijske jedinice kojemu se pridružuje" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Pridruži se automatski bez lozinke" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Pridruži se pomoću jednokratne lozinke" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Koristi odreÄ‘eni softver klijenta" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Koristi odreÄ‘eni softver poslužitelja" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "KorisniÄko ime koriÅ¡teno za upis" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Postavi glavnog korisnika za raÄun na raÄunalu" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Odredi jedno podruÄje za pridruživanje" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Argument --no-password ne može se koristiti s --one-time-password ili --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "Argument --one-time-password ne može se koristiti s --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Neuspjelo napuÅ¡tanje podruÄja" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Ukloni raÄunalo iz podruÄja" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "KorisniÄko ime koriÅ¡teno za uklanjanje" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Neuspjelo mijenjanje dozvoljenih prijava" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Dozvoli sve prijave raÄuna podruÄja" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Odbij sve prijave raÄuna podruÄja" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Povuci dozvolu prijave raÄunu podruÄja" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Tretiraj nazive kao grupe kojima se dozvoljava" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "PodruÄje za dozvoljavanje/odbijanje prijava za" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Prijave se ne bi trebale odrediti pomoću -a ili --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "Argumenti --withdraw ili -x ne mogu se koristiti kad se prijave odbijaju" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "OdreÄ‘ene prijave moraju se odrediti pomoću --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Grupe se ne mogu odrediti pomoću -a ili --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Koristi --all za odbijanje svih prijava" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Odredi korisnike koji se trebaju dodati ili ukloniti iz popisa dopuÅ¡tenih" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "OdreÄ‘ivanje odbijanja bez --all viÅ¡e se ne podržava. Koristi dozvolu " "podruÄja --withdraw" realmd-0.17.1/po/tr.gmo0000644003225100322510000003412014315277003015125 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D§q+ )E ;o « 'È ð !l.!H›!Rä!^7"–"0µ"&æ"" #%0#'V# ~#)Ÿ#)É##ó#2$2J$}$!”$ ¶$×$ñ$%#-%)Q%{%’%±% Ð%ñ%&!,&,N&({&)¤&Î&è&9ú&E4'*z'J¥'@ð'B1(Pt(VÅ(+)$H)m)Mˆ)NÖ)%*(?*h*ƒ*=Ÿ*eÝ*fC+,ª+W×+C/,Es,=¹,.÷,Y&-G€-$È-!í-6.)F.2p.%£.(É.0ò.#/,C/p/‰/Ÿ/.±/(à/+ 0/50He06®05å0@1%\1 ‚14£1-Ø1!2(2@20R2+ƒ2Z¯2m 3Tx3AÍ3F4;V4D’44×4 56!5.X5#‡5%«5*Ñ5Dü5EA69‡67Á60ù6%*7%P7!v7.˜7,Ç7ô7E 8s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 19:43+0000 Last-Translator: Muhammet Kara Language-Team: Turkish (http://www.transifex.com/freedesktop/realmd/language/tr/) Language: tr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); Bu isimli bir alan zaten yapılandırıldıYönetici adı veya parolası gereçersizsssd.conf yapılandırma dosyasında %s alanı zaten mevcutZaten bir alana katılındıZaten baÅŸka bir alana katılındı: %sBu alana zaten katıldınızZaten baÅŸka eylem çalışıyorBu bilgisayarda kimin oturum açacağı ile ilgili politikayı deÄŸiÅŸtirmek kimlik doÄŸrulama gerektiriyor.Bir kerberos eriÅŸim alanını keÅŸfetmek kimlik doÄŸrulama gerektiriyorBu makineyi bir eriÅŸim alanına veya alana eklemek kimlik doÄŸrulama gerektiriyorBu makineyi bir eriÅŸim alanından veya bir alandan çıkarmak kimlik doÄŸrulama gerektiriyor.Bu eriÅŸim alanına katılamazSahipsiz kipte çalışırken parola sorulamadıOturum açma politikasını deÄŸiÅŸtirKatılmak için bilgisayar OU DN'iYapılandırılan komut geçersiz: %sYapılandırılan komut bulunamadı: %s%s olarak kimlik doÄŸrulanamadıİzin verilen oturumlar deÄŸiÅŸtirilemediEriÅŸim alanı servisine baÄŸlanılamadıSistem veri yoluna baÄŸlanılamadıKimlik önbellek dosyası oluÅŸturulamadı: %s: %sÇalışma zamanı dizini oluÅŸturulamadı: %s: %sSoket oluÅŸturulamadıSoket çifti oluÅŸturulamadı: %sEriÅŸim alanları keÅŸfedilemediKerberos baÅŸlatılamadıEriÅŸim alanına katılamadıEriÅŸim alanı terk edilemediEriÅŸim alanı servisi yüklenemediKullanıcı adı ayrıştırılamadı: %sParola sorulamadı: %sKimlik ön belleÄŸi okunamadıKerberos kimlikleri okunamadıKimlik önbelleÄŸi çözülemedirealmd çalıştırılamadıKerberos kimliÄŸi seçilemediYapılandırmaya yazılamadı: %sHerhangi bir eriÅŸim alanı giriÅŸini reddetKullanıcı oturum açmasına izin vermeKullanılabilir eriÅŸim alanını keÅŸfetEriÅŸim alanını keÅŸfetGirdi için sormasssd.conf yapılandırma dosyasında %s alanı bulunmuyorPAM ve nsswitch.conf içinde SSSD etkinleÅŸtirmesi baÅŸarısız oldu.Bu makineyi bir eriÅŸim alanına kaydettirBu eriÅŸim alanına bir parola kullanarak kayıt yaptırmak desteklenmiyorİzin verilen oturumlar deÄŸiÅŸtirilemedi. Tanılamalara bakın.EriÅŸim alanının keÅŸfi baÅŸarısız oldu. Tanılamalara bakın.Makinenin eriÅŸim alanına kaydedilmesi baÅŸarısız oldu. Tanılamalara bakın.Makinenin eriÅŸim alanından çıkartılması baÅŸarısız oldu. Tanılamalara bakın.Gruplar -a veya --all ile belirtilmemelidirBelirli bir önek için kurulum kipiGerekli paketler kuruluyorGeçersiz oturum açma deÄŸiÅŸkeni '%s' desteklenmeyen karakterler içeriyor.Geçersiz oturum açma deÄŸiÅŸkeni%s%s%s oturum açma biçimiyle eÅŸleÅŸmiyor.%s için geçersiz parola%s seçeneÄŸi için geçersiz deÄŸer: %sParolasız otomatik katılMakineyi etki alanına ekleÖnceden ayarlanmış bir tek kullanımlık parola ile katılBir alana tek kullanımlık parola ile katılmak ancak '%s' üyelik yazılımı ile desteklenmektedirBir alana bir kullanıcı parolası ile katılmak ancak '%s' üyelik yazılımı ile desteklenmektedirBu eriÅŸim alanına katılmak desteklenmiyorBu eriÅŸim alanına bir kimlik bilgisi ön belleÄŸi kullanarak katılmak desteklenmiyorBu eriÅŸim alanına bir sırrı kullanarak katılmak desteklenmiyorBu eriÅŸim alanına kimlik bilgileri olmadan katılmak desteklenmiyorSistem üzerindeki LDAP, UDP baÄŸlantılarını desteklemiyorBu eriÅŸim alanından ayrılmak desteklenmiyorBu eriÅŸim alanından bir kimlik bilgisi ön belleÄŸi kullanarak ayrılmak desteklenmiyorBu eriÅŸim alanından kimlik bilgileri olmadan ayrılmak desteklenmiyorBilinen eriÅŸim alanlarını listeleGerekli paketler kurulmamış: %sBu alandan ayrılmak için kimlik bilgileri gereklidirVarsayılan eriÅŸim alanı keÅŸfedilemediHiç bir oturum -a veya --all ile blirtilmemelidirBöyle bir eriÅŸim alanı bulunamadıBöyle bir eriÅŸim alanı bulunmadı: %sBu eylemi gerçekleÅŸtirmeye yetkili deÄŸilsinizYakında bu alana katılmamışBu eriÅŸim alanına yakında katılmadınızBu alana katılınmadı İşlem iptal edildi.%s için parola: Herhangi bir eriÅŸim alanı giriÅŸine izin verKullanıcı oturum açmasını kısıtlaSüreç ÅŸu sinyal ile sonlandırıldı: %dEriÅŸim alanı otomatik üyeliÄŸi desteklemiyorEriÅŸim alanı tek kullanımlık parola kullanan üyeliÄŸi desteklemiyorEriÅŸim alanı parola kullanan üyeliÄŸi desteklemiyorOturumlara izin verilecek/reddedilecek eriÅŸim alanıSunucudan geçersiz veya desteklenmeyen Netlogon verisi alındıBilgisayarı eriÅŸim alanından ayırMakineyi etki alanından çıkarBilgisayar hesabı için temel kullanıcıyı ayarlaKeÅŸfedilen tüm eriÅŸim alanlarını gösterTüm eriÅŸim alanlarını gösterSadece isimleri gösterAtlanan komut: %sBelirli oturumlar --withdraw ile belirtilmelidirKatılmak için bir eriÅŸim alanı belirtinIzin verilen listeden ekleme veya çıkarma yapmak için belirli kullanıcıları belirtin--all kullanmadan reddetme tanımlamak artık kullanılmıyor. EriÅŸim alanı iznini --withdraw ile kullanın--no-password parametresi --one-time-password veya --user ile birlikte kullanılamaz--one-time-password parametresi --user ile birlikte kullanılamaz--withdraw veya -x parametreleri oturumları reddederken kullanılamazSamba saÄŸlayıcı izin verilen oturumları kısıtlayamaz.computer-ou parametresi bir IPA alanına baÄŸlanırken desteklenmez.AÅŸağıdaki paketler kurulum için uygun deÄŸil: %sİşlem iptal edildiBu eriÅŸim alanı oturumları belirtmeye izin vermiyorİsimlere izin verilecek gruplar olarak davranOtomatik kimlik haritalamayı kapatAlana otomatik olarak katılınamadıBu makineyi bir eriÅŸim alanından çıkarBu eriÅŸim alanından bir parola kullanarak ayrılmak desteklenmiyorBu eriÅŸim alanından bir sırrı kullanarak ayrılmak desteklenmiyorBir alana katılmak için desteklenmeyen kimlik bilgileriDesteklenmeyen veya bilinmeyen '%s' üyelik yazılımıTüm oturumları reddetmek için --all kullanınBelirli istemci yazılımını kullanBelirli üyelik yazılımını kullanBelirli sunucu yazılımı kullanBu kayıt için kullanılacak kullanıcı adıAyırma için kullanılacak kullanıcı adıAyrıntılı çıktıBir eriÅŸim alanı için oturum açma hesabına verilen izni iptal etrealmd-0.17.1/po/cy.po0000644003225100322510000003354214315277002014755 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Welsh (http://www.transifex.com/freedesktop/realmd/language/" "cy/)\n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " "11) ? 2 : 3;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/lv.gmo0000644003225100322510000000077714315277003015134 0ustar00sbosesbose00000000000000Þ•$,8Å9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Latvian (http://www.transifex.com/freedesktop/realmd/language/lv/) Language: lv MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2); realmd-0.17.1/po/sq.po0000644003225100322510000003346514315277003014772 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Albanian (http://www.transifex.com/freedesktop/realmd/" "language/sq/)\n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/el.po0000644003225100322510000006257314315277002014750 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # ΔΗΜΗΤΡΗΣ ΣΠΙΓΓΟΣ , 2014 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 19:43+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Greek (http://www.transifex.com/freedesktop/realmd/language/" "el/)\n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "ΑνακαλÏψτε το πεδίο" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Απαιτείται πιστοποίηση για να ανακαλÏψετε ένα πεδίο kerberos" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Συνδέστε το μηχάνημα στο πεδίο" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Απαιτείται πιστοποίηση για να συνδέσετε αυτό το μηχάνημα σε ένα πεδίο ή τομέα" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "ΑφαίÏεση μηχανήματος από το πεδίο" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Απαιτείται πιστοποίηση για να αφαιÏέσετε αυτόν τον υπολογιστή από ένα πεδίο " "ή τομέα." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Αλλαγή πολιτικής σÏνδεσης" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Απαιτείται πιστοποίηση για να αλλάξετε την πολιτική δυνατότητας σÏνδεσης σε " "αυτόν τον υπολογιστή." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Η διεÏγασία τελείωσε με το σήμα: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "Η λειτουÏγία ακυÏώθηκε" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Δεν βÏέθηκε η Ïυθμισμένη εντολή: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "ΠαÏαλείφθηκε η εντολή: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Η Ïυθμισμένη εντολή είναι άκυÏη: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Ελήφθησαν άκυÏα ή ανυποστήÏικτα δεδομένα Netlogon από τον διακομιστή" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "Το LDAP σε αυτό το σÏστημα δεν υποστηÏίζει συνδέσεις UDP" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "ΑνυποστήÏικτο ή άγνωστο λογισμικό μέλους '%s'" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Έχετε ήδη συνδεθεί με έναν τομέα" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Το όνομα διαχειÏιστή ή ο κωδικός Ï€Ïόσβασης δεν είναι έγκυÏος" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Δεν είσαστε συνδεμένοι τώÏα σε αυτόν τον τομέα" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "ΧÏειάζονται διαπιστευτήÏια για να αφήσετε αυτόν τον τομέα" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "ΑδÏνατη η εγγÏαφή διαμόÏφωσης: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Δεν είστε εξουσιοδοτημένος να εκτελέσετε αυτήν την ενέÏγεια." #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Η λειτουÏγία ακυÏώθηκε." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Αποτυχία εγγÏαφής του μηχανήματος στο πεδίο. Δείτε τα διαγνωστικά." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" "Αποτυχία αφαίÏεσης εγγÏαφής του μηχανήματος από τον τομέα. Δείτε τα " "διαγνωστικά." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Η σÏνδεση σε αυτό το πεδίο χωÏίς διαπιστευτήÏια δεν υποστηÏίζεται" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "Η απομάκÏυνση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χωÏίς διαπιστευτήÏια δεν υποστηÏίζεται" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "Η σÏνδεση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χÏησιμοποιώντας μια κÏυφή μνήμη διαπιστευτηÏίου " "δεν υποστηÏίζεται" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "Η απομάκÏυνση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… τομέα χÏησιμοποιώντας μια κÏυφή μνήμη " "διαπιστευτηÏίου δεν υποστηÏίζεται" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" "Η σÏνδεση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χÏησιμοποιώντας ένα μυστικό δεν υποστηÏίζεται" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" "Η αφαίÏεση εγγÏαφής Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χÏησιμοποιώντας ένα μυστικό δεν " "υποστηÏίζεται" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" "Η εγγÏαφή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χÏησιμοποιώντας έναν κωδικό Ï€Ïόσβασης δεν " "υποστηÏίζεται" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" "Η αφαίÏεση εγγÏαφής Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου χÏησιμοποιώντας έναν κωδικό Ï€Ïόσβασης " "δεν υποστηÏίζεται" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Η σÏνδεση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου δεν υποστηÏίζεται" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Η απομάκÏυνση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεδίου δεν υποστηÏίζεται" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Εκτελείται ήδη μια άλλη ενέÏγεια" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Έχετε ήδη συνδεθεί σε έναν άλλο τομέα: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "Αποτυχία αλλαγής των επιτÏεπόμενων συνδέσεων. Δείτε τα διαγνωστικά." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "Το πεδίο δεν επιτÏέπει οÏισμό συνδέσεων" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "ΆκυÏο ÏŒÏισμα σÏνδεσης %s%s%s δεν ταιÏιάζει με τη μοÏφή σÏνδεσης." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Τα παÏακάτω πακέτα δεν είναι διαθέσιμα για εγκατάσταση: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Τα απαÏαίτητα πακέτα δεν είναι εγκατεστημένα: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Εγκαθίστανται τα απαÏαίτητα πακέτα" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Αποτυχία ανακάλυψης του πεδίου. Δείτε τα διαγνωστικά." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Δεν συνδεθήκατε σε αυτόν τον τομέα" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Ο πάÏοχος Samba δεν μποÏεί να πεÏιοÏίσει τις επιτÏεπόμενες συνδέσεις." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "Το άκυÏο ÏŒÏισμα σÏνδεσης '%s' πεÏιέχει μη υποστηÏιζόμενους χαÏακτήÏες." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Αποτυχία ενεÏγοποίησης του SSSD στα nsswitch.conf και PAM." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "ΑδÏνατη η αυτόματη σÏνδεση στον τομέα" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Η σÏνδεση σε έναν τομέα με κωδικό Ï€Ïόσβασης μιας φοÏάς υποστηÏίζεται μόνο με " "το λογισμικό μέλους '%s'" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Η σÏνδεση σε έναν τομέα με κωδικό Ï€Ïόσβασης χÏήστη υποστηÏίζεται μόνο με το " "λογισμικό μέλους '%s'" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "ΑνυποστήÏικτα διαπιστευτήÏια για σÏνδεση σε έναν τομέα" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Έχετε ήδη συνδεθεί με αυτόν τον τομέα" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Ένας τομέας με αυτό το όνομα έχει ήδη Ïυθμιστεί" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Έχετε ήδη τον τομέα %s στο αÏχείο Ïυθμίσεων sssd.conf" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Δεν έχετε τον τομέα %s στο αÏχείο Ïυθμίσεων sssd.conf" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" "Το ÏŒÏισμα οÏγανωτικής μονάδας υπολογιστή δεν υποστηÏίζεται κατά τη σÏνδεση " "σε τομέα IPA." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" "Το ÏŒÏισμα οÏγανωτικής μονάδας υπολογιστή δεν υποστηÏίζεται κατά τη σÏνδεση " "σε τομέα IPA." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Δεν είσαστε συνδεμένοι τώÏα σε αυτό το πεδίο" #: tools/realm.c:40 msgid "Discover available realm" msgstr "ΑνακαλÏψτε το διαθέσιμο πεδίο" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "ΕγγÏαφή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… μηχανήματος σε ένα πεδίο" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "ΑφαίÏεση εγγÏαφής Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… μηχανήματος από ένα πεδίο" #: tools/realm.c:43 msgid "List known realms" msgstr "Îα αναφέÏονται τα γνωστά πεδία" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Îα επιτÏέπονται οι συνδέσεις χÏήστη" #: tools/realm.c:45 msgid "Deny user logins" msgstr "ΑπόÏÏιψη συνδέσεων χÏήστη" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Εγκατάσταση κατάστασης σε συγκεκÏιμένο Ï€Ïόθεμα" #: tools/realm.c:215 msgid "Verbose output" msgstr "Αναλυτική έξοδος" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Îα μην ζητείται είσοδος" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "ΑδÏνατη η σÏνδεση με την υπηÏεσία πεδίου" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "ΑδÏνατη η φόÏτωση της υπηÏεσίας πεδίου" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "ΑδÏνατη η σÏνδεση με τον δίαυλο συστήματος" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "ΑδÏνατη η δημιουÏγία ζεÏγους υποδοχής: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "ΑδÏνατη η δημιουÏγία υποδοχής" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "ΑδÏνατη η εκτέλεση του realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "ΑδÏνατη η δημιουÏγία καταλόγου χÏόνου εκτέλεσης: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "ΑδÏνατη η δημιουÏγία αÏχείου κÏυφής μνήμης διαπιστευτηÏίου: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "ΑδÏνατη η εÏÏεση κÏυφής μνήμης διαπιστευτηÏίου" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "ΆκυÏος κωδικός Ï€Ïόσβασης για το %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "ΑδÏνατη η πιστοποίηση ως %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "ΑδÏνατη η ανάλυση ονόματος χÏήστη: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "ΑδÏνατη η ανάγνωση κÏυφής μνήμης διαπιστευτηÏίου" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "ΑδÏνατη η αÏχικοποίηση του kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" "ΑδÏνατη η αίτηση για κωδικό Ï€Ïόσβασης όταν εκτελείται σε αφÏλακτη κατάσταση" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Κωδικός Ï€Ïόσβασης για το %s: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "ΑδÏνατη η αίτηση για κωδικό Ï€Ïόσβασης: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Το πεδίο δεν υποστηÏίζει μέλος χÏησιμοποιώντας έναν κωδικό Ï€Ïόσβασης" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" "Το πεδίο δεν υποστηÏίζει μέλος χÏησιμοποιώντας έναν κωδικό Ï€Ïόσβασης μιας " "φοÏάς" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "ΑδÏνατη η επιλογή διαπιστευτηÏίων του kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "ΑδÏνατη η ανάγνωση διαπιστευτηÏίων του kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Το πεδίο δεν υποστηÏίζει αυτόματα μέλη" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "ΑδÏνατη η ανακάλυψη πεδίων" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Δεν βÏέθηκε Ï€Ïοεπιλεγμένο πεδίο" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Δεν βÏέθηκε τέτοιο πεδίο: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Îα εμφανίζονται όλα τα πεδία που βÏίσκονται" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Îα εμφανίζονται μόνο τα ονόματα" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "ΧÏήση ιδιαίτεÏου Î»Î¿Î³Î¹ÏƒÎ¼Î¹ÎºÎ¿Ï Ï€ÎµÎ»Î¬Ï„Î·" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "ΧÏήση ιδιαίτεÏου Î»Î¿Î³Î¹ÏƒÎ¼Î¹ÎºÎ¿Ï Î¼Î­Î»Î¿Ï…Ï‚" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "ΧÏήση ιδιαίτεÏου Î»Î¿Î³Î¹ÏƒÎ¼Î¹ÎºÎ¿Ï Î´Î¹Î±ÎºÎ¿Î¼Î¹ÏƒÏ„Î®" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Îα εμφανίζονται όλα τα πεδία" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "ΑδÏνατη η σÏνδεση με το πεδίο" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "ΑδÏνατη η σÏνδεση με αυτό το πεδίο" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Δεν βÏέθηκε τέτοιο πεδίο" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "ΧÏήση ιδιαίτεÏου Î»Î¿Î³Î¹ÏƒÎ¼Î¹ÎºÎ¿Ï Ï€ÎµÎ»Î¬Ï„Î·" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "DN OU υπολογιστή για σÏνδεση" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Αυτόματη σÏνδεση χωÏίς κωδικό Ï€Ïόσβασης" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" "ΣÏνδεση χÏησιμοποιώντας έναν Ï€ÏοκαθοÏισμένο κωδικό Ï€Ïόσβασης για μια φοÏά" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "ΧÏήση ιδιαίτεÏου Î»Î¿Î³Î¹ÏƒÎ¼Î¹ÎºÎ¿Ï Ï€ÎµÎ»Î¬Ï„Î·" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "ΧÏήση ιδιαίτεÏου Î»Î¿Î³Î¹ÏƒÎ¼Î¹ÎºÎ¿Ï Î´Î¹Î±ÎºÎ¿Î¼Î¹ÏƒÏ„Î®" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Όνομα χÏήστη για χÏήση στην εγγÏαφή" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "ΟÏισμός του κÏÏιου χÏήστη για τον λογαÏιασμό του υπολογιστή" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "ΟÏισμός ενός πεδίου για σÏνδεση" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Το ÏŒÏισμα --no-password δεν μποÏεί να χÏησιμοποιηθεί με --one-time-password " "ή --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "Το ÏŒÏισμα --one-time-password δεν μποÏεί να χÏησιμοποιηθεί με --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "ΑδÏνατη η αποχώÏηση από το πεδίο" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "ΑφαίÏεση του υπολογιστή από το πεδίο" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Το όνομα χÏήστη που θα χÏησιμοποιηθεί για αφαίÏεση" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "ΑδÏνατη η αλλαγή των επιτÏεπόμενων συνδέσεων" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Îα επιτÏέπεται η σÏνδεση λογαÏÎ¹Î±ÏƒÎ¼Î¿Ï Î¿Ï€Î¿Î¹Î¿Ï…Î´Î®Ï€Î¿Ï„Îµ πεδίου" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Îα απαγοÏεÏεται η σÏνδεση λογαÏÎ¹Î±ÏƒÎ¼Î¿Ï Î¿Ï€Î¿Î¹Î¿Ï…Î´Î®Ï€Î¿Ï„Îµ πεδίου" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "ΑπόσυÏση άδειας για έναν λογαÏιασμό πεδίου Ï€Ïος σÏνδεση" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Îα θεωÏοÏνται τα ονόματα ως ομάδες που επιτÏέπουν" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Πεδίο για το οποίο επιτÏέπονται/απαγοÏεÏονται οι συνδέσεις" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Δεν Ï€Ïέπει να οÏίζονται συνδέσεις με -a ή --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "Τα οÏίσματα με --withdraw ή -x δεν μποÏοÏν να χÏησιμοποιηθοÏν κατά την " "άÏνηση συνδέσεων" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Ειδικές συνδέσεις Ï€Ïέπει να οÏιστοÏν με --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Δεν μποÏοÏν να οÏιστοÏν ομάδες με -a ή --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "ΧÏήση του --all για άÏνηση όλων των συνδέσεων" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "ΟÏίστε συγκεκÏιμένους χÏήστες που θα Ï€ÏοστεθοÏν ή θα αφαιÏεθοÏν από τον " "επιτÏεπόμενο κατάλογο" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Ο οÏισμός άÏνησης χωÏίς --all είναι παÏωχημένος. ΧÏησιμοποιήστε άδεια πεδίου " "--withdraw " realmd-0.17.1/po/kn.gmo0000644003225100322510000000073314315277003015113 0ustar00sbosesbose00000000000000Þ•$,8¡9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Kannada (http://www.transifex.com/freedesktop/realmd/language/kn/) Language: kn MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); realmd-0.17.1/po/sv.po0000644003225100322510000004722114315277003014772 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Anders Jonsson , 2016 # Josef Andersson , 2015 # Sebastian Rasmussen , 2015 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-23 19:12+0000\n" "Last-Translator: Josef Andersson \n" "Language-Team: Swedish (http://www.transifex.com/freedesktop/realmd/language/" "sv/)\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Upptäck sfär" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Autentisering krävs för att upptäcka en kerberos-sfär" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Anslut maskin till sfär" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Autentisering krävs för att ansluta denna maskin till en sfär eller domän" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Ta bort maskin frÃ¥n sfär" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Autentisering krävs för att ta bort denna dator frÃ¥n en sfär eller domän." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Ändra inloggningspolicy" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Autentisering krävs för att ändra policy för vem som kan logga in pÃ¥ denna " "dator." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Processen avslutades med signalen: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "Ã…tgärden avbröts" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Konfigurerat kommando hittades inte: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Överhoppat kommando: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Konfigurerat kommando ogiltigt: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Tog emot ogiltigt eller Netlogon-data som inte stöds frÃ¥n server" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "LDAP pÃ¥ detta system stödjer inte UDP-anslutningar" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Medlemskapsprogramvaran â€%s†är okänd eller stöds ej" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Redan anslutit till en domän" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Admin-namn eller lösenord ogiltigt" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Ej ansluten till denna domän för tillfället" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Behöver autentiseringsuppgifter för att lämna denna domän" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Kunde inte skriva ut konfigurationen: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Ej behörig till att utföra denna Ã¥tgärd" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Ã…tgärden avbröts." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Misslyckades med att registrera maskin i sfär. Se diagnostik." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "Misslyckades med att avregistrera maskin frÃ¥n domän. Se diagnostik." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Att ansluta till denna sfär utan autentiseringsuppgifter stöds ej" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "Att lämna denna sfär utan autentiseringsuppgifter stöds ej" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "Att ansluta till denna sfär med en autentiseringscache stöds ej" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "Att lämna denna sfär med en autentiseringscache stöds ej" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Att ansluta till denna sfär med en hemlighet stöds ej" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Att avregistrera denna sfär med en hemlighet stöds ej" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Att registrera denna sfär med ett lösenord stöds ej" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Att avregistrera denna sfär med ett lösenord stöds ej" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Att ansluta till denna sfär stöds ej" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Att lämna denna sfär stöds ej" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Kör redan en annan Ã¥tgärd" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Redan anslutit till en domän: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "Misslyckades med att ändra tillÃ¥tna inloggningar. Se diagnostik." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "Sfären tillÃ¥ter inte att ange inloggningar" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "Ogiltigt inloggningsargument%s%s%s matchar inte inloggningsformatet." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Följande paket är inte tillgängliga för installation: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Nödvändiga paket är inte installerade: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Installera nödvändiga paket" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Misslyckades med att upptäcka sfär. Se diagnostik." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Ej ansluten till denna domän" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Sambaleverantören kan inte hindra tillÃ¥tna inloggningar." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "Ogiltigt inloggningsargument â€%s†innehÃ¥ller tecken som inte stöds." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Misslyckades med aktivering av SSSD i nsswitch.conf och PAM." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Kunde inte ansluta till domänen automatiskt" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Att ansluta till en domän med ett engÃ¥ngslösenord stöds bara med " "medlemskapsprogramvaran â€%sâ€" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Att ansluta till en domän med ett användarlösenord stöds bara med " "medlemskapsprogramvaran â€%sâ€" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Ej stödda autentiseringsuppgifter för att ansluta till en domän" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Redan anslutit till denna domän" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "En domän med detta namn är redan konfigurerad" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Domänen %s finns redan i konfigurationsfilen sssd.conf" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Domänen %s finns inte i konfigurationsfilen sssd.conf" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "Argumentet computer-ou stöds ej vid anslutning till en IPA-domän." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "Argumentet computer-ou stöds ej vid anslutning till en IPA-domän." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Ej ansluten till denna sfär för tillfället" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Upptäck tillgänglig sfär" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Registrera denna maskin i en sfär" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Avregistrera denna maskin frÃ¥n en sfär" #: tools/realm.c:43 msgid "List known realms" msgstr "Lista kända sfärer" #: tools/realm.c:44 msgid "Permit user logins" msgstr "TillÃ¥t användarinloggningar" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Neka användarinloggningar" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Ogiltigt värde för %s-flagga: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Installera läge till ett specifikt prefix" #: tools/realm.c:215 msgid "Verbose output" msgstr "Detaljerad utskrift" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "FrÃ¥ga inte efter inmatning" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Kunde inte ansluta till en sfärtjänst" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Kunde inte läsa in sfärtjänsten" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Kunde inte ansluta till systembuss" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Kunde inte skapa uttagspar (socket pair): %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Kunde inte skapa uttag (socket)" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Kunde inte köra realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Kunde inte skapa körtidskatalogen: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Kunde inte skapa autentiseringscachefilen: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Kunde inte lösa autentiseringscache" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Ogiltigt lösenord för %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Kunde inte autentisera som %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Kunde inte tolka användarnamnet: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Kunde inte läsa autentiseringscache" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Kunde inte initiera kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "Kan inte frÃ¥ga efter lösenord vid körning i obevakat läge" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Lösenord för %s: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Kunde inte frÃ¥ga efter lösenord: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Sfär stödjer inte medlemskap med lösenord" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Sfär stödjer inte medlemskap med ett engÃ¥ngslösenord" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Kunde inte välja autentiseringsuppgifter för kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Kunde inte läsa autentiseringsuppgifter för kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Sfär stödjer inte automatiskt medlemskap" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Kunde inte upptäcka sfär" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Ingen standardsfär upptäckt" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Hittade ingen sÃ¥dan sfär: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Visa alla upptäckta sfärer" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Visa bara namnen" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Använd specifik klientprogramvara" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Använd specifik medlemskapsprogramvara" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Använd specifik serverprogramvara" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Visa alla sfärer" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Kunde inte ansluta till sfär" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Kan inte ansluta till denna sfär" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Ingen sÃ¥dan sfär hittades" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Stäng av automatisk id-mappning" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Använd specifik klientprogramvara" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "Computer OU DN att ansluta till" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Anslut automatiskt utan ett lösenord" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Anslut med ett förinställt engÃ¥ngslösenord" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Använd specifik klientprogramvara" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Använd specifik serverprogramvara" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Användarnamn att använda vid registrering" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Ange användarens huvudnamn för datorkontot" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Ange en sfär att ansluta till" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Argumentet--no-password argument kan inte användas med --one-time-password " "eller --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "Argumentet --one-time-password kan inte användas med --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Kunde inte lämna sfär" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Ta bort dator frÃ¥n sfär" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Användarnamn att använda för borttagning" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Kunde inte ändra tillÃ¥tna inloggningar" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "TillÃ¥t alla sfärkontoinloggningar" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Neka alla sfärkontoinloggningar" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Dra in tillstÃ¥ndet att logga in för ett sfärkonto" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Behandla namn som grupper att tillÃ¥ta" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Sfär att tillÃ¥ta/neka inloggningar för" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Inga inloggningar bör anges med -a eller --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "Argumenten --withdraw eller -x kan inte användas när inloggningar nekas" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Specifika inloggningar mÃ¥ste anges med --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Grupper fÃ¥r inte anges med -a eller --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Använd --all för att neka alla inloggningar" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Ange specifika användare att lägga till eller ta bort frÃ¥n listan över " "tillÃ¥tna" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "Att ange deny utan --all är förÃ¥ldrat. Använd realm permit --withdraw" realmd-0.17.1/po/oc.po0000644003225100322510000003406414315277002014743 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Cédric Valmary , 2016 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-23 20:04+0000\n" "Last-Translator: Cédric Valmary \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/freedesktop/" "realmd/language/oc/)\n" "Language: oc\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Descobèrta del domeni" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Jónher la maquina al domeni" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Suprimir la maquina del domeni" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Modificar la politica de connexion" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "L'operacion es estada anullada" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Comanda sautada : %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "L'operacion es estada anullada." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/bg.gmo0000644003225100322510000000073614315277003015076 0ustar00sbosesbose00000000000000Þ•$,8¤9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Bulgarian (http://www.transifex.com/freedesktop/realmd/language/bg/) Language: bg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/wa.po0000644003225100322510000003346314315277003014754 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Walloon (http://www.transifex.com/freedesktop/realmd/language/" "wa/)\n" "Language: wa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/fr.po0000644003225100322510000003533614315277002014754 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Jérôme Fenal , 2013 # 4a14a73d523224463300dea5e0502458_3dab472, 2013 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 16:36+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: French (http://www.transifex.com/freedesktop/realmd/language/" "fr/)\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Découverte du domaine" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" "L'authentification est nécessaire afin de découvrir un domaine kerberos" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Joindre la machine au domaine" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "L'authentification est nécessaire afin d'inscrire cette machine au domaine " "kerberos" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Supprimer la machine du domaine" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "L'authentification est nécessaire afin de supprimer cette machine du domaine." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Modifier la politique de connexion" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "L'authentification est nécessaire afin de modifier la politique de qui peut " "se connecter sur cet ordinateur." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Le processus s'est terminé avec un signal : %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "L'opération a été annulée" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Commande configurée introuvable : %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Commande sautée : %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Commande configurée invalide : %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Déjà adjoint à un domaine" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Le nom ou mot de passe de l'administrateur est invalide" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Actuellement disjoint d'un quelconque domaine" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Afficher seulement les noms" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Utiliser --add pour interdire toute connexion" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/fo.gmo0000644003225100322510000000073414315277003015110 0ustar00sbosesbose00000000000000Þ•$,8¢9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Faroese (http://www.transifex.com/freedesktop/realmd/language/fo/) Language: fo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/lt.po0000644003225100322510000003370014315277002014755 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Lithuanian (http://www.transifex.com/freedesktop/realmd/" "language/lt/)\n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < " "11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? " "1 : n % 1 != 0 ? 2: 3);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/eu.gmo0000644003225100322510000000073314315277003015114 0ustar00sbosesbose00000000000000Þ•$,8¡9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Basque (http://www.transifex.com/freedesktop/realmd/language/eu/) Language: eu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/or.po0000644003225100322510000003346214315277002014763 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Oriya (http://www.transifex.com/freedesktop/realmd/language/" "or/)\n" "Language: or\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/vi.gmo0000644003225100322510000000073014315277003015116 0ustar00sbosesbose00000000000000Þ•$,8ž9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Vietnamese (http://www.transifex.com/freedesktop/realmd/language/vi/) Language: vi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; realmd-0.17.1/po/bn_IN.gmo0000644003225100322510000000075214315277003015471 0ustar00sbosesbose00000000000000Þ•$,8°9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Bengali (India) (http://www.transifex.com/freedesktop/realmd/language/bn_IN/) Language: bn_IN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/mr.po0000644003225100322510000003346414315277002014763 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Marathi (http://www.transifex.com/freedesktop/realmd/language/" "mr/)\n" "Language: mr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/ga.po0000644003225100322510000003353314315277002014731 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Irish (http://www.transifex.com/freedesktop/realmd/language/" "ga/)\n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " "4);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/ml.gmo0000644003225100322510000000073614315277003015116 0ustar00sbosesbose00000000000000Þ•$,8¤9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Malayalam (http://www.transifex.com/freedesktop/realmd/language/ml/) Language: ml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/sl.po0000644003225100322510000004673614315277002014771 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Martin Srebotnjak , 2013 # Matej UrbanÄiÄ <>, 2013 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 15:03+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Slovenian (http://www.transifex.com/freedesktop/realmd/" "language/sl/)\n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Odkrij polje" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Za zaznavanje polja kerberos je zahtevana overitev" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Pridruži napravo v polje" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "Za prijavo naprave v polje ali domeno je zahtevana overitev" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Odstrani napravo iz polja" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "Za odstranitev naprave iz polja ali domene je zahtevana overitev" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Spremeni pravila prijavljanja" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Za spreminjanje dovoljenj prijave za uporabo naprave je zahtevana overitev" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Postopek je prekinjen s signalom: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "Opravilo je preklicano" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Nastavljenega ukaza ni mogoÄe najti: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "PreskoÄen ukaz: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Nastavljen ukaz ni veljaven: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "S strežnika prejeti neveljavni ali nepodprti podatki Netlogon" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "LDAP tega sistema ne podpira povezav UDP." #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Nepodprta ali neznana Älanska programska oprema '%s'" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Naprava je že pridružena domeni" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Ime ali geslo skrbnika ni veljavno" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Naprava trenutno ni pridružena domeni" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Za odjavo domene so zahtevana poverila" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Izpisovanje prilagoditev je spodletelo: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Za to dejanje ni ustreznih dovoljenj" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Opravilo je preklicano" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" "Vpisovanje naprave v polje je spodletelo. Oglejte si podrobnosti napake." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" "Izpisovanje naprave iz polja je spodletelo. Oglejte si podrobnosti napake." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Pridruževanju temu polju brez poverilni podprto." #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "ZapuÅ¡Äanje tega polja brez overil ni podprto." #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "Pridruževanju temu polju s predpomnjenimi poverili ni podprto." #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "ZapuÅ¡Äanje tega polja s predpomnjenimi poverili ni podprto." #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Pridruževanju temu polju s skrivnim kljuÄem ni podprto." #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Izpisovanje naprave iz polja z uporabo skrivnega kljuÄa ni podprto." #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Vpisovanje naprave v polje z uporabo gesla ni podprto." #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Izpisovanje naprave iz polja z uporabo gesla ni podprto." #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Pridruževanju temu polju ni podprto." #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "ZapuÅ¡Äanje tega polja ni podprto." #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Trenutno je dejavno že drugo opravilo." #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Že pridruženi drugi domeni: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" "Spreminjanje dovoljenih prijav je spodletelo. VeÄ podrobnosti je v odvodu " "opravila." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "V polju ni dovoljeno navajanje prijav." #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "Neveljaven prijavni argument %s%s%s ni skladen s prijavnim zapisom." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Naslednji paketi niso na voljo za namestitev: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Obvezni paketi niso nameÅ¡Äeni: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "NameÅ¡Äanje obveznih paketov" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Zaznavanje polja je spodletelo. VeÄ podrobnosti napake je v odvodu." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Naprava ni pridružena domeni." #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Ponudnik Samba ne omogoÄa omejevanja dovoljenih prijav." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "Neveljaven prijavni argument '%s' vsebuje nepodprte znake." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "OmogoÄanje SSSD v nastavitvah nsswitch.conf in PAM je spodletelo." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Domeni se ni mogoÄe samodejno pridružiti domeni" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Pridruženje domeni z uporabo enkratnega gesla je podprto le s Älansko " "programsko opremo '%s'" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Pridruženje domeni z uporabo uporabniÅ¡kega gesla je podprto le s Älansko " "programsko opremo '%s'" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Nepodprta vrsta poveril za pridruženje domeni" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Naprava je že pridružena tej domeni." #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Domena s tem imenom je že nastavljena" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Domena %s je že doloÄena v datoteki nastavitev sssd.conf" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Domena %s ni zavedena v nastavitveni datoteki " #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "Ob pridruževanju domeni IPA argument computer-ou ni podprt." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "Ob pridruževanju domeni IPA argument computer-ou ni podprt." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "V to polje trenutno niste pridruženi." #: tools/realm.c:40 msgid "Discover available realm" msgstr "Zaznaj razpoložljiva polja" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "VpiÅ¡i napravo v polje." #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "IzpiÅ¡i napravo iz polja." #: tools/realm.c:43 msgid "List known realms" msgstr "IzpiÅ¡i znana polja" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Dovoli prijave uporabnikov" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Zavrni prijave uporabnikov" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Namesti naÄin na doloÄeno predpono" #: tools/realm.c:215 msgid "Verbose output" msgstr "Podroben izpis" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Ne Äakaj na vnos" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Ni se mogoÄe povezati s storitvijo polja" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Ni mogoÄe naložiti storitve polja" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Povezava s sistemskim vodilom ni mogoÄa." #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Ni mogoÄe ustvariti para vtiÄa: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Ni mogoÄe ustvariti vtiÄa" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Ni mogoÄe zagnati ozadnjega programa realmd." #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Ustvarjanje izvajalne mape je spodletelo: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Datoteke predpomnilnika poveril ni mogoÄe ustvariti: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Ni mogoÄe razreÅ¡iti predpomnilnika poveril." #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Neslo za %s ni veljavno." #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Ni mogoÄe overiti kot %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Ni mogoÄe razÄleniti uporabniÅ¡kega imena: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Ni mogoÄe prebrati predpomnilnika poveril." #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Ni mogoÄe zaÄeti ozadja kerberos." #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "Za geslo ni mogoÄe povpraÅ¡ati, Äe program teÄe v nenadzorovanem naÄinu" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Geslo za %s:" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Ni mogoÄe zahtevati gesla: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Polje ne podpira Älanstva z uporabo gesla" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Polje ne podpira Älanstva z uporabo enkratnega gesla" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Poveril kerberos ni mogoÄe izbrati" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Poveril kerberos ni mogoÄe prebrati" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Polje ne podpira samodejnega Älanstva" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Ni mogoÄe zaznati razpoložljivih polj" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Ni zaznanih privzetih polj" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Ni mogoÄe najti polja: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Pokaži sva zaznana polja" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Pokaži le imena" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Uporabi posebno odjemalno programsko opremo" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Uporabi posebno Älansko programsko opremo" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Uporabi posebno strežniÅ¡ko programsko opremo" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Pokaži vsa polja" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Pridružitev v polje je spodletela" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Pridružitev v polje ni možna" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Takega polja ni mogoÄe najti" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Uporabi posebno odjemalno programsko opremo" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "EnoliÄno ime organizacijske enote raÄunalnika za pridružitev" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Pridruži se samodejno brez gesla" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Pridruži se z uporabo enkratnega gesla" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Uporabi posebno odjemalno programsko opremo" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Uporabi posebno strežniÅ¡ko programsko opremo" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "UporabniÅ¡ko ime za vpis" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "DoloÄite glavnega uporabnika za raÄun raÄunalnika" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "DoloÄi polje za pridružitev" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Argumenta --no-password ni mogoÄe uporabiti z argumentom --one-time-password " "ali --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "Argumenta --one-time-password ni mogoÄe uporabiti z argumentom --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Polja ni mogoÄe zapustiti" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Odstrani raÄunalnik iz polja" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "UporabniÅ¡ko ime za odstranjevanje" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Spreminjanje dovoljenih prijav je spodletelo." #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Dovoli uporabniÅ¡ko prijavo poljubnega polja" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Zavrni uporabniÅ¡ke prijave vseh polj" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Umakni dovoljenje prijave za uporabniÅ¡ki raÄun polja" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Obravnavaj imena kot skupine z dovoljenji" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Polje za katerega so dovoljene/zavrnjene prijave" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Nobena prija ne sme biti doloÄena z -a ali --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "Argumentov --withdraw in -x pri prepovedi prijave ni mogoÄe uporabiti" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Nekatere prijave morajo biti doloÄene z --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Skupin ni dovoljeno doloÄiti z argumentom -a ali --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Uporabite --all za prepoved vseh prijav" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Navedite uporabnike, ki jih želite dodati ali odstraniti s seznama dovoljenih" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "DoloÄanje deny brez --all je opuÅ¡Äeno. Uporabite realm permit --withdraw" realmd-0.17.1/po/pt.gmo0000644003225100322510000003332514315277003015131 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D¨q/ 1J ?| ¼ $Ø ý "!e>!>¤!Nã!Q2""„"B§")ê""#!7#'Y##' #&È##ï#9$-M${$#”$¸$ Õ$ö$%(/%,X%…%#¡%'Å%*í%&.6&)e&(&¸&Õ&ñ&'@',W'!„';¦':â'0(<N(B‹(6Î(%)+)GK)X“)ì)%*#**N*=g*l¥*c+(v+EŸ+:å+8 ,0Y,"Š,?­,2í, -/9-6i- -.¶-å-.,!.+N.(z.!£.Å.à.+ð./"0\0x0<’0#Ï0ó0 1 1;41#p1R”1Oç1O72>‡2FÆ2< 3IJ3C”3Ø3)ó3+4%I41o4&¡4>È4?58G5,€5&­5$Ô5$ù5%6%D6(j6“62¢6s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 19:43+0000 Last-Translator: Pedro Albuquerque Language-Team: Portuguese (http://www.transifex.com/freedesktop/realmd/language/pt/) Language: pt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Já está configurado um domínio com este nomeNome ou senha de administrador não são válidosO domínio %s já está no ficheiro de configuração sssd.confJá se juntou a um domínioJá está junto a outro domínio: %sJá se juntou a este domínioJá há outra ação em execuçãoÉ necessária autenticação para alterar a política de quem pode iniciar sessão neste computador.É necessária autenticação para descobrir um reino kerberosÉ necessária autenticação para juntar esta máquina a um reino ou domínioÉ necessária autenticação para remover esta máquina de um reino ou domínio.Impossível juntar-se a este reinoImpossível pedir uma senha quando excutado em modo não assistidoAlterar política dos inícios de sessãoOU DN de computador para se juntarComando configurado inválido: %sComando configurado não encontrado: %sImpossível autenticar como %sImpossível alterar sessões permitidasImpossível ligar ao serviço do reinoImpossível ligar ao bus do sistemaImpossível criar ficheiro de cache de credencial: %s: %sImpossível criar pasta de execução: %s: %sImpossível criar tomadaImpossível criar par da tomada: %sImpossível descobrir reinosImpossível inicializar kerberosImpossível juntar-se ao reinoImpossível sair do reinoImpossível carregar o serviço do reinoImpossível processar nome de utilizador: %sImpossível pedir senha: %sImpossível ler cache de credencialImpossível ler as credenciais kerberosImpossível resolver a cache de credencialImpossível executar o realmdImpossível selecionar as credenciais kerberosImpossível escrever a configuração: %sNegar sessão de qualquer conta do reinoNegar sessões de utilizadorDescobrir reino disponívelDescobrir o reinoNão pedir entradaO domínio %s não está no ficheiro de configuração sssd.confFalha ao ativar SSSD em nsswitch.conf e PAM.Inscrever esta máquina num reinoInscrever-se neste reino usando uma senha não é suportadoFalha ao alterar sessões permitidas. Veja o diagnóstico.Falha ao descobrir o reino. Veja o diagnóstico.Falha ao inscrever a máquina no reino. Veja o diagnóstico.Falha ao desinscrever a máquina no domínio. Veja o diagnóstico.Os grupos não podem ser especificados com -a ou --allInstalar modo num prefixo específicoA instalar pacotes necessáriosArgumento "%s" de sessão inválido contém caracteres não suportados.Argumento%s%s%s se início de sessão inválido, não corresponde ao formato de sessão.Senha inválida para %sValor inválido para a opção %s: %sJuntar-se automaticamente sem senhaJuntar máquina ao reinoJuntar-se usando uma senha predefinida de utilização únicaJuntar-se a um domínio com uma senha de utilização única só é suportado com o programa de membros "%s"Juntar-se a um domínio com uma senha de utilizador só é suportado com o programa de membros "%s"Juntar-se a este reino não é suportadoJuntar-se a este reino com uma cache de credenciais não é suportadoJuntar-se a este reino usando um segredo não é suportadoJuntar-se a este reino sem credenciais não é suportadoO LDAP neste sistema não suporta ligações UDPSair deste reino não é suportadoSair deste reino com uma cache de credenciais não é suportadoSair deste reino sem credenciais não é suportadoListar reinos conhecidosNão estão instalados pacotes necessários: %sSão necessárias credenciais para sair deste domínioSem reino predefinidoNão pode especificar sessões com -a ou --allNão se encontrou tal reinoNão se encontrou tal reino: %sNão está autorizado a realizar esta açãoNão está atualmente junto a este domínioNão está atualmente junto a este reinoNão está junto a este domínio.A operação foi canceladaSenha para %s: Permitir sessão de qualquer conta do reinoPermitir sessões de utilizadorO processo terminou com o sinal %dO reino não suporta adesão automáticaO reino não suporta adesão usando senha de utilização únicaO reino não suporta adesão usando uma senhaReino ao qual permitir/negar sessõesO servidor enviou dados Netlogon inválidos ou não suportadosRemover computador do reinoRemover máquina do reinoDefinir o principal do utilizador para a conta do computadorMostrar todos os reinos descobertosMostrar todos os reinosMostrar só os nomesComando saltado: %sSessões específicas têm de ser declaradas com --withdrawEspecifique um reino para se juntarDeclare utilizadores específicos para adicionar ou remover da lista de permitidosEspecificar negação com --all é obsoleto. Use permissão de reino --withdrawO argumento --no-password não pode ser usado com --one-time-password ou --userO argumento --one-time-password não pode ser usado com --userOs argumentos --withdraw ou -x não podem ser usados ao negar sessõesO fornecedor Samba não pode restringir sessões permitidas.O argumento computer-ou não é suportado ao juntar-se a um domínio IPA.Os seguintes pacotes não estão disponíveis para instalação: %sA operação foi canceladaO reino não permite especificar sessõesTratar nomes como grupos aos quais permitirDesligar mapeamento de id automáticoImpossível juntar-se automaticamente ao domínioDesinscrever esta máquina de um reinoDesinscrever-se deste reino usando uma senha não é suportadoDesinscrever-se deste reino usando um segredo não é suportadoCredenciais não suportadas para se juntar a um domínioPrograma "%s" não suportado ou desconhecidoUse --all para negar todas as sessõesUsar programa de cliente específicoUsar programa de adesão específicoUsar programa de servidor específicoNome de utilizador para a inscriçãoNome de utilizador a usar para remoçãoSaída verbosaRetirar permissão de sessão a uma conta do reinorealmd-0.17.1/po/fi.po0000644003225100322510000004723514315277002014744 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Kimmo Kujansuu , 2019 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2019-04-15 20:51+0000\n" "Last-Translator: Kimmo Kujansuu \n" "Language-Team: Finnish (http://www.transifex.com/freedesktop/realmd/language/" "fi/)\n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Tutustu alueeseen" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Todennus on tarpeen kerberos-alueen löytämiseksi" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Liitä kone alueeseen" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Todennus vaaditaan koneesi liityessä tähän laitteeseen, alueeseen tai " "verkkotunnukseen" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Poista kone alueelta" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Todennus vaaditaan tämän tietokoneen poistamiseksi alueesta tai " "verkkotunnuksesta." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Muuta kirjautumispolitiikkaa" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Todennus vaaditaan, jotta voit muuttaa käytäntöä siitä, kuka voi kirjautua " "tähän tietokoneeseen." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Prosessi lopetettiin signaalilla: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "Toiminto peruutettiin" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Määritettyä komentoa ei löydy: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Ohitettu komento: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Määritetty komento virheellinen: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Vastaanotetut virheelliset tai tuetut Netlogon-tiedot palvelimelta" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "Tämän järjestelmän LDAP ei tue UDP-yhteyksiä" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Tukematon tai tuntematon ohjelma '%s'" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Liittynyt jo verkkotunnukseen" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Pääkäyttäjän nimi tai salasana ei kelpaa" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Ei tällä hetkellä liitetty tähän verkkotunnukseen" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Tarvitaan käyttöoikeudet lähteäksesi tästä domainista" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Konfigurointia ei voitu kirjoittaa: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Et ole valtuutettu suorittamaan tätä toimenpidettä" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Toiminto peruutettiin." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Koneen rekisteröinti alueessa epäonnistui. Katso diagnostiikka." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "Koneen poistaminen verkkotunnuksesta epäonnistui. Katso diagnostiikka." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Liittymistä tähän alueeseen ilman valtuuksia ei tueta" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "Tämän alueen poistamista ilman valtuustietoja ei tueta" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "Tähän alueeseen liittyminen käyttämällä välimuistia ei tueta" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "Tämän alueen jättäminen käyttämättä välimuistia ei tueta" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Tähän alueeseen liittyminen salauksella ei tueta" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Tätä valtakirjaa ei voi rekisteröidä salauksen avulla" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Tämän alueen rekisteröinti salasanan avulla ei ole tuettu" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Tätä valintaruutua ei käytetä salasanan avulla" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Liittyminen tähän alueeseen ei ole tuettu" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Tämän alueen jättäminen ei ole tuettu" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Käytössä on jo toinen toiminto" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Olet jo liittynyt toiseen verkkotunnukseen: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" "Sallittujen kirjautumisten muuttaminen epäonnistui. Katso diagnostiikka." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "Alue ei salli kirjautumisten määrittämistä" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "Virheellinen kirjautumisen argumentti %s%s%sei vastaa kirjautumistapaa." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Seuraavat paketit eivät ole käytettävissä asennusta varten: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Tarvittavia paketteja ei ole asennettu: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Tarvittavien pakettien asentaminen" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Alueen löytäminen epäonnistui. Katso diagnostiikka." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Ei liittyneenä tähän verkkotunnukseen" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Samba-palvelun tarjoaja ei voi rajoittaa sallittuja kirjautumisia." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" "Virheellinen kirjautumisen argumentti '%s' sisältää ei-tuettuja merkkejä." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "SSSD ottaminen käyttöön nsswitch.confissa ja PAM:ssa epäonnistui." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Liity verkkotunnukseen automaattisesti" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Verkkotunnukseen liittyminen yhdellä salasanalla tuetaan vain '%s' " "jäsenyysohjelmistolla" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Verkkotunnuksen liittäminen käyttäjän salasanaan tuetaan vain '%s' " "jäsenyysohjelmistolla" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Verkkotunnukseen liittymättömät tunnistetiedot" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Olet jo liittynyt tähän verkkotunnukseen" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Verkkotunnus, jolla on tämä nimi, on jo määritetty" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Sinulla on jo verkkotunnus %ssssd.conf tiedostossa" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Ei ole verkkotunnusta %ssssd.conf tiedostossa" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" "Tietokoneen ou-argumenttia ei tueta, kun se liittyy IPA-verkkotunnukseen." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" "Tietokoneen ou-argumenttia ei tueta, kun se liittyy IPA-verkkotunnukseen." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Ei tällä hetkellä liittyneenä tähän alueeseen" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Löydä saatavillaoleva alue" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Rekisteröi tämä kone alueeseen" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Irrota tämä kone alueesta" #: tools/realm.c:43 msgid "List known realms" msgstr "Luettelo tunnetuista alueista" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Salli käyttäjän kirjautumiset" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Kiellä käyttäjän kirjautumiset" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Virheellinen arvo %svaihtoehto: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Asenna tila tiettyyn etuliitteeseen" #: tools/realm.c:215 msgid "Verbose output" msgstr "Täsmällinen lähtö" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Älä pyydä syöttöä" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Alueen palveluun ei saatu yhteyttä" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Alueen palvelua ei voitu ladata" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Väylään ei voitu muodostaa yhteyttä" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Ei luotu liitäntäparia %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Ei luotu liitäntää" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Epäonnistui ajaa relamd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Hakemistoa ei voitu luoda: %s:%s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Epäonnistui luoda varmenteen välimuistitiedosto: %s:%s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Ei selvitetty tunnistetietojen välimuistia" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Virheellinen salasana %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Ei voinut todentaa %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Käyttäjätunnusta ei voitu jäsentää: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Tunnisteen välimuistia ei voitu lukea" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Kerberosia ei-voitu alustaa" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "Salasanaa ei voi pyytää, kun käytät valvomatonta tilaa" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Salasana %s:" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Salasanaa ei voitu pyytää: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Alue ei tue jäsenyyttä salasanan avulla" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Alue ei tue jäsenyyttä käyttämällä kertakäyttöistä salasanaa" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Kerberos-tunnistetietoja ei voitu valita" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Kerberos-tunnuksia ei voitu lukea" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Alue ei tue automaattista jäsenyyttä" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Aluetta ei löytynyt" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Oletusaluetta ei löydy" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Tällaista aluetta ei löytynyt: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Näytä kaikki löydetyt alueet" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Näytä vain nimet" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Käytä tiettyjä asiakasohjelmia" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Käytä tiettyä jäsenohjelmistoa" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Käytä tiettyä palvelinohjelmistoa" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Näytä kaikki alueet" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Ei voitu liittyä" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Ei liittymistä tähän alueeseen" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Tällaista aluetta ei löytynyt" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Sammuta automaattinen id-kartoitus" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Käytä tiettyjä asiakasohjelmia" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "Tietokoneen OU DN liitetään" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Liity automaattisesti ilman salasanaa" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Liitty käyttämällä ennalta määritettyä salasanaa" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Käytä tiettyjä asiakasohjelmia" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Käytä tiettyä palvelinohjelmistoa" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Käyttäjätunnus, jota käytetään ilmoittautumiseen" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Määritä tietokoneen pääkäyttäjä" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Määritä yksi alue liittymään" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Ei salasanaa-argumenttia ei voi käyttää kertaluonteisen salasanan tai " "käyttäjän kanssa" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "Kertakäyttöisen salasanan argumenttia ei voi käyttää käyttäjän kanssa" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Ei voitu poistua" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Poista tietokone alueesta" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Poistamista varten käytettävä käyttäjätunnus" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Salasanoja ei voitu muuttaa" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Salli minkä tahansa tilin kirjautuminen" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Kiellä minkä tahansa tilin kirjautuminen" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Poista kirjautumistunnuksen käyttöoikeus" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Käsittele nimiä ryhminä, jotka sallit" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Alue sallii/kieltää kirjautumiset" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "-a tai --all ei saa määrittää kirjautumisia" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "Withdraw tai -x-argumentteja ei voi käyttää kirjautumisten kieltämisen " "yhteydessä" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Tiettyjä kirjautumisia on määritettävä --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Ryhmät eivät välttämättä ole määritelty -a- tai --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Käytä --all kieltääksesi kaikki kirjautumiset" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Määritä tietyt käyttäjät, joita voit lisätä tai poistaa sallitusta " "luettelosta" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Kieltämisen määrittäminen ilman --all-arvoa on vanhentunut. Käytä " "käyttöoikeutta --withdraw" realmd-0.17.1/po/sl.gmo0000644003225100322510000003260614315277003015125 0ustar00sbosesbose00000000000000Þ•~ ­ü° -± #ß / 3 $N s ‘ S° 7 D< J Ì <ã  4 K j ‹ § !È ê - )7ax˜±Îâ÷ 4U"t!—¹$Íò->Wf-~.¬Û6ú31*e38Ä,ý!*L<j=§å%ý#%9]_Y½#<;2x7«4ã#<<7y±(Ã(ì.1`t%Œ#²"Öù,>]&p+—;Ã2ÿ29RŒ§/Áñ 01Dv?HÐL;fA¢4äE=_*¹%ä' "28U6Ž,Å/ò"? \}šº×,æØ&ì" :6 !q “ &´ 'Û J!2N!;!@½!þ!K"i"?‡"Ç"(ç"#-*#)X#)‚#<¬#0é#$$6$'[$#ƒ$"§$Ê$#å$/ %9%+X%$„%-©%-×%#&*)&%T&z&•& ±&¾&.Ð&Bÿ&B'6Z'T‘'Dæ'H+(Jt(7¿($÷()::)Cu)¹)!Ò)ô)'*^6*b•*%ø*?+9^+1˜+)Ê+#ô+=,/V,†,#š,&¾,å,1-2-P-$k-&-&·-Þ-ý- .,!.N.$i.&Ž.5µ.*ë.0/>G/†/¤/4¾/ó/ 00003D0x0N–0Kå0X11FŠ1FÑ182<Q20Ž2¿2&Ö2)ý21'3Y38s3D¬3.ñ35 4'V4+~4*ª4.Õ45"5@56O5q+zB?T0D8NY iaVl$' @sQFA]x`tHC<-X5} c 6 [\7P 1dG_!uo;EMh{&W2K,*LU9Ik:~SwJmr^yRnv#b)(43%|Ofejp>/"g.Z=A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 15:03+0000 Last-Translator: Stef Walter Language-Team: Slovenian (http://www.transifex.com/freedesktop/realmd/language/sl/) Language: sl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3); Domena s tem imenom je že nastavljenaIme ali geslo skrbnika ni veljavnoDomena %s je že doloÄena v datoteki nastavitev sssd.confNaprava je že pridružena domeniŽe pridruženi drugi domeni: %sNaprava je že pridružena tej domeni.Trenutno je dejavno že drugo opravilo.Za spreminjanje dovoljenj prijave za uporabo naprave je zahtevana overitevZa zaznavanje polja kerberos je zahtevana overitevZa prijavo naprave v polje ali domeno je zahtevana overitevZa odstranitev naprave iz polja ali domene je zahtevana overitevPridružitev v polje ni možnaZa geslo ni mogoÄe povpraÅ¡ati, Äe program teÄe v nenadzorovanem naÄinuSpremeni pravila prijavljanjaEnoliÄno ime organizacijske enote raÄunalnika za pridružitevNastavljen ukaz ni veljaven: %sNastavljenega ukaza ni mogoÄe najti: %sNi mogoÄe overiti kot %sSpreminjanje dovoljenih prijav je spodletelo.Ni se mogoÄe povezati s storitvijo poljaPovezava s sistemskim vodilom ni mogoÄa.Datoteke predpomnilnika poveril ni mogoÄe ustvariti: %s: %sUstvarjanje izvajalne mape je spodletelo: %s: %sNi mogoÄe ustvariti vtiÄaNi mogoÄe ustvariti para vtiÄa: %sNi mogoÄe zaznati razpoložljivih poljNi mogoÄe zaÄeti ozadja kerberos.Pridružitev v polje je spodletelaPolja ni mogoÄe zapustitiNi mogoÄe naložiti storitve poljaNi mogoÄe razÄleniti uporabniÅ¡kega imena: %sNi mogoÄe zahtevati gesla: %sNi mogoÄe prebrati predpomnilnika poveril.Poveril kerberos ni mogoÄe prebratiNi mogoÄe razreÅ¡iti predpomnilnika poveril.Ni mogoÄe zagnati ozadnjega programa realmd.Poveril kerberos ni mogoÄe izbratiIzpisovanje prilagoditev je spodletelo: %sZavrni uporabniÅ¡ke prijave vseh poljZavrni prijave uporabnikovZaznaj razpoložljiva poljaOdkrij poljeNe Äakaj na vnosDomena %s ni zavedena v nastavitveni datoteki OmogoÄanje SSSD v nastavitvah nsswitch.conf in PAM je spodletelo.VpiÅ¡i napravo v polje.Vpisovanje naprave v polje z uporabo gesla ni podprto.Spreminjanje dovoljenih prijav je spodletelo. VeÄ podrobnosti je v odvodu opravila.Zaznavanje polja je spodletelo. VeÄ podrobnosti napake je v odvodu.Vpisovanje naprave v polje je spodletelo. Oglejte si podrobnosti napake.Izpisovanje naprave iz polja je spodletelo. Oglejte si podrobnosti napake.Skupin ni dovoljeno doloÄiti z argumentom -a ali --allNamesti naÄin na doloÄeno predponoNameÅ¡Äanje obveznih paketovNeveljaven prijavni argument '%s' vsebuje nepodprte znake.Neveljaven prijavni argument %s%s%s ni skladen s prijavnim zapisom.Neslo za %s ni veljavno.Pridruži se samodejno brez geslaPridruži napravo v poljePridruži se z uporabo enkratnega geslaPridruženje domeni z uporabo enkratnega gesla je podprto le s Älansko programsko opremo '%s'Pridruženje domeni z uporabo uporabniÅ¡kega gesla je podprto le s Älansko programsko opremo '%s'Pridruževanju temu polju ni podprto.Pridruževanju temu polju s predpomnjenimi poverili ni podprto.Pridruževanju temu polju s skrivnim kljuÄem ni podprto.Pridruževanju temu polju brez poverilni podprto.LDAP tega sistema ne podpira povezav UDP.ZapuÅ¡Äanje tega polja ni podprto.ZapuÅ¡Äanje tega polja s predpomnjenimi poverili ni podprto.ZapuÅ¡Äanje tega polja brez overil ni podprto.IzpiÅ¡i znana poljaObvezni paketi niso nameÅ¡Äeni: %sZa odjavo domene so zahtevana poverilaNi zaznanih privzetih poljNobena prija ne sme biti doloÄena z -a ali --allTakega polja ni mogoÄe najtiNi mogoÄe najti polja: %sZa to dejanje ni ustreznih dovoljenjNaprava trenutno ni pridružena domeniV to polje trenutno niste pridruženi.Naprava ni pridružena domeni.Opravilo je preklicanoGeslo za %s:Dovoli uporabniÅ¡ko prijavo poljubnega poljaDovoli prijave uporabnikovPostopek je prekinjen s signalom: %dPolje ne podpira samodejnega ÄlanstvaPolje ne podpira Älanstva z uporabo enkratnega geslaPolje ne podpira Älanstva z uporabo geslaPolje za katerega so dovoljene/zavrnjene prijaveS strežnika prejeti neveljavni ali nepodprti podatki NetlogonOdstrani raÄunalnik iz poljaOdstrani napravo iz poljaDoloÄite glavnega uporabnika za raÄun raÄunalnikaPokaži sva zaznana poljaPokaži vsa poljaPokaži le imenaPreskoÄen ukaz: %sNekatere prijave morajo biti doloÄene z --withdrawDoloÄi polje za pridružitevNavedite uporabnike, ki jih želite dodati ali odstraniti s seznama dovoljenihDoloÄanje deny brez --all je opuÅ¡Äeno. Uporabite realm permit --withdrawArgumenta --no-password ni mogoÄe uporabiti z argumentom --one-time-password ali --userArgumenta --one-time-password ni mogoÄe uporabiti z argumentom --userArgumentov --withdraw in -x pri prepovedi prijave ni mogoÄe uporabitiPonudnik Samba ne omogoÄa omejevanja dovoljenih prijav.Ob pridruževanju domeni IPA argument computer-ou ni podprt.Naslednji paketi niso na voljo za namestitev: %sOpravilo je preklicanoV polju ni dovoljeno navajanje prijav.Obravnavaj imena kot skupine z dovoljenjiDomeni se ni mogoÄe samodejno pridružiti domeniIzpiÅ¡i napravo iz polja.Izpisovanje naprave iz polja z uporabo gesla ni podprto.Izpisovanje naprave iz polja z uporabo skrivnega kljuÄa ni podprto.Nepodprta vrsta poveril za pridruženje domeniNepodprta ali neznana Älanska programska oprema '%s'Uporabite --all za prepoved vseh prijavUporabi posebno odjemalno programsko opremoUporabi posebno Älansko programsko opremoUporabi posebno strežniÅ¡ko programsko opremoUporabniÅ¡ko ime za vpisUporabniÅ¡ko ime za odstranjevanjePodroben izpisUmakni dovoljenje prijave za uporabniÅ¡ki raÄun poljarealmd-0.17.1/po/gl.gmo0000644003225100322510000003356014315277003015111 0ustar00sbosesbose00000000000000Þ•~ ­ü° -± #ß / 3 $N s ‘ S° 7 D< J Ì <ã  4 K j ‹ § !È ê - )7ax˜±Îâ÷ 4U"t!—¹$Íò->Wf-~.¬Û6ú31*e38Ä,ý!*L<j=§å%ý#%9]_Y½#<;2x7«4ã#<<7y±(Ã(ì.1`t%Œ#²"Öù,>]&p+—;Ã2ÿ29RŒ§/Áñ 01Dv?HÐL;fA¢4äE=_*¹%ä' "28U6Ž,Å/ò"? \}šº×,æ£-·5å< X "r • ¯ YÍ 5'!=]!B›!#Þ!Y"(\"…" ¤"$Å"%ê":#-K#-y#B§#@ê#+$*K$!v$%˜$ ¾$ß$'ÿ$/'%,W%-„%/²%1â% &75&.m&5œ&&Ò&ù&'&'<@'>}'¼'9Ú'U(>j(G©(Kñ(9=)0w)!¨)TÊ)d*„*)¤*Î*(å*e+dt+$Ù+Eþ+5D,4z,1¯,á,C-2E-x-0”-/Å-(õ-;.Z.p.0Š.#»."ß.//5/6J/&/¨/)Ç/Dñ/3600j0J›0æ01:1#W1{1“1¨1F¹1"2Q#2Qu2KÇ2:3MN3Hœ3Gå3K-4y42”4)Ç40ñ4"58B56{57²5:ê52%6'X6*€6(«6&Ô6#û67?07q+zB?T0D8NY iaVl$' @sQFA]x`tHC<-X5} c 6 [\7P 1dG_!uo;EMh{&W2K,*LU9Ik:~SwJmr^yRnv#b)(43%|Ofejp>/"g.Z=A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-23 19:12+0000 Last-Translator: Stef Walter Language-Team: Galician (http://www.transifex.com/freedesktop/realmd/language/gl/) Language: gl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Xa está configurado un dominio con este nomeO nome ou contrasinal do administrador non é válidoXa hai un dominio %s no ficheiro de configuración sssd.confXa está unido ao dominioXa está unido a outro dominio: %sXa se uniu a este dominioEsta executando outra acciónDebe autenticarse para cambiar a normativa de quen pode iniciar sesión neste computador.Debe autenticarse para descubrir un reino de kerberosDebe autenticarse para unir esta máquina ao reino ou dominioDebe autenticarse para quitar este computador do reino ou dominio.Non é posíbel unirse a este reinoNon é posíbel solicitar un contrasinal mentres se está executando en modo non atendidoCambiar a normativa de inicio de sesiónComputador ou DN ao que unirseOrde configurada non válida: %sA orde configurada non se atopou: %sNon foi posíbel autenticarse como %s Non foi posíbel cambiar os inicios de sesión permitidosNon foi posíbel conectarse ao servicio realmNon foi posíbel conectarse ao bus do sistemaNon foi posíbel crear o ficheiro de caché de credenciais: %s: %sNon foi posíbel crear o cartafol en tempo de execución: %s: %sNon foi posíbel crear o socketNon foi posíbel crear o par do socket: %sNon foi posíbel descubrir reinosNon foi posíbel inicializar kerberosNon foi posíbel unirse ao reinoNon foi posíbel deixar o reinoNon foi posíbel cargar o servizo realmNon foi posíbel analizar o nome de usuario: %sNon foi posíbel solicitar o contrasinal: %sNon foi posíbel ler a caché das credenciaisNon foi posíbel ler as credenciais de kerberosNon foi posíbel resolver a caché de credenciaisNon foi posíbel executar realmdNon foi posíbel seleccionar as credenciais de kerberosNon foi posíbel escribir a configuración: %sDenegar calquera inicio de sesión de contas do reinoDenegar inicios de sesión de usuariosDescubrir reino dispoñíbelDescubrir reinoNon preguntar por entradaNon ten o dominio %s no ficheiro de configuración sssd.confProduciuse un fallo ao activar SSSD en nsswitch.conf e en PAM.Unir este computador no reinoNon se admite a unión a este reino usando un contrasinalProduciuse un fallo ao cambiar os inicios de sesión permitidos. Vexa o diagnóstico.Produciuse un fallo ao descubrir o reino. Vexa o diagnóstico.Produciuse un fallo ao unir o computador ao reino. Vexa o diagnóstico.Produciuse un fallo ao quitar o computador do dominio. Vexa o diagnóstico.Os grupos non deberían ser especificados con -a ou --allModo de instalación para un prefixo específicoInstalando os paquetes necesariosO argumento «%s» de Inicio de sesión no válido contén caracteres non admitidos.O argumento de inicio de sesión non é válido %s%s%s non coincide co formato de inicio de sesión.Contrasinal non válida para %sUnirse automaticamente sen un contrasinalUnir máquina ao reinoUnirse usando un contrasinal dun só usoA unión a un dominio con un contrasinal dun só uso só se permite con software de membresía «%s»A unión a un dominio con un contrasinal de usuario só se permite con software de membresía «%s»Non se permite a unión a este reinoNon se admite a unión a este reino usando unha caché de credencial.Non se admite a unión a este reino usando un segredoNo se admite a unión a este dominio sen credenciaisO LDAP deste sistema non admite as conexións UDPNon se admite deixar este reinoNon se admite deixar a este reino usando unha caché de credencial.No se admite deixar a este dominio sen credenciaisListar os reinos coñecidosOs paquetes necesarios non están instalados: %sPrecisa credenciais para abandonar este dominioNon se descubriu un reino predeterminadoNon debería especificar inicios de sesión con -a ou --allNon se atopou o reinoNon se atopou o reino: %sNon está autorizado a levar a cabo esta acciónNon está actualmente neste dominioNon unido a este reino actualmenteNon unido a este reinoA operación foi cancelada.Contrasinal para %s:Permitir calquera inicio de sesión de contas do reinoPermitir inicios de sesión de usuarioO proceso rematou co sinal: %dRealm non admite a membresía automáticaRealm non admite a membresía usando un contrasinal de un único usoRealm non admite a membresía usando un contrasinalReino no que permitir/denegar inicios de sesiónRecibironse datos de Netlogon non válidos ou non compatíbeis do servidorQuitar o computador do reinoQuitar máquina do reinoEstabelecer o usuario principal para a conta do computadorMostrar todos os reinos descubertosMostrar todos os reinosMostrar só os nomesOrde omitida: %sInicios de sesión específicos deben ser especificados con --withdrawEspecifique un reino ao que unirseEspecifice os usuarios específicos para engadir ou quitar da lista de permitidosEspecificando denegación sen --all xa non se admite. Use realm permit --withdrawO argumento --no-password non pode usarse con --one-time-password ou --userO argumento --one-time-password non pode usarse con --userOs argumentos --withdraw ou -x non poden usarse ao denegar inicios de sesiónO fornecedor Samba non pode restrinxir os inicios de sesión permitidos.O argumento de computador -ou non se admite ao unirse a un dominio IPA.Os seguintes paquetes non están dispoñíbeis para a súa instalación: %sA operación foi canceladaO reino non permite especificar inicios de sesiónTratar nomes como grupos aos que permitirNon foi posíbel a unión automática ao dominioQuitar este computador do reinoNon se admite abandonar este reino usando un contrasinalNon se admite quitarse deste reino sen usar un segredoCredenciais non compatíbeis para a unión a un dominioMembresía de software non admitida ou descoñecida «%s»Use --all para denegar todos os inicios de sesiónUsar un software de cliente específicoUsar un software de membresía específicoUsar un software de servidor específicoO nome de usuario a usar para a uniónNome de usuario a usar na desuniónSaída estendidaRetirar o permiso para unha conta de inicio de sesión do reinorealmd-0.17.1/po/te.po0000644003225100322510000003346314315277003014755 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Telugu (http://www.transifex.com/freedesktop/realmd/language/" "te/)\n" "Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/as.gmo0000644003225100322510000000073514315277003015110 0ustar00sbosesbose00000000000000Þ•$,8£9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Assamese (http://www.transifex.com/freedesktop/realmd/language/as/) Language: as MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/ms.po0000644003225100322510000003345314315277002014762 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Malay (http://www.transifex.com/freedesktop/realmd/language/" "ms/)\n" "Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/Makefile.in.in0000644003225100322510000004225114315276770016464 0ustar00sbosesbose00000000000000# Makefile for PO directory in any package using GNU gettext. # Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright # notice and this notice are preserved. This file is offered as-is, # without any warranty. # # Origin: gettext-0.19.8 GETTEXT_MACRO_VERSION = 0.19 PACKAGE = @PACKAGE@ VERSION = @VERSION@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ SED = @SED@ SHELL = /bin/sh @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datarootdir = @datarootdir@ datadir = @datadir@ localedir = @localedir@ gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ # We use $(mkdir_p). # In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as # "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, # @install_sh@ does not start with $(SHELL), so we add it. # In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined # either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake # versions, $(mkinstalldirs) and $(install_sh) are unused. mkinstalldirs = $(SHELL) @install_sh@ -d install_sh = $(SHELL) @install_sh@ MKDIR_P = @MKDIR_P@ mkdir_p = @mkdir_p@ # When building gettext-tools, we prefer to use the built programs # rather than installed programs. However, we can't do that when we # are cross compiling. CROSS_COMPILING = @CROSS_COMPILING@ GMSGFMT_ = @GMSGFMT@ GMSGFMT_no = @GMSGFMT@ GMSGFMT_yes = @GMSGFMT_015@ GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT)) MSGFMT_ = @MSGFMT@ MSGFMT_no = @MSGFMT@ MSGFMT_yes = @MSGFMT_015@ MSGFMT = $(MSGFMT_$(USE_MSGCTXT)) XGETTEXT_ = @XGETTEXT@ XGETTEXT_no = @XGETTEXT@ XGETTEXT_yes = @XGETTEXT_015@ XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit MSGCONV = msgconv MSGFILTER = msgfilter POFILES = @POFILES@ GMOFILES = @GMOFILES@ UPDATEPOFILES = @UPDATEPOFILES@ DUMMYPOFILES = @DUMMYPOFILES@ DISTFILES.common = Makefile.in.in remove-potcdate.sin \ $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \ $(POFILES) $(GMOFILES) \ $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) POTFILES = \ CATALOGS = @CATALOGS@ POFILESDEPS_ = $(srcdir)/$(DOMAIN).pot POFILESDEPS_yes = $(POFILESDEPS_) POFILESDEPS_no = POFILESDEPS = $(POFILESDEPS_$(PO_DEPENDS_ON_POT)) DISTFILESDEPS_ = update-po DISTFILESDEPS_yes = $(DISTFILESDEPS_) DISTFILESDEPS_no = DISTFILESDEPS = $(DISTFILESDEPS_$(DIST_DEPENDS_ON_UPDATE_PO)) # Makevars gets inserted here. (Don't remove this line!) .SUFFIXES: .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update .po.mo: @echo "$(MSGFMT) -c -o $@ $<"; \ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ .po.gmo: @lang=`echo $* | sed -e 's,.*/,,'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.po"; \ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo .sin.sed: sed -e '/^#/d' $< > t-$@ mv t-$@ $@ all: all-@USE_NLS@ all-yes: stamp-po all-no: # Ensure that the gettext macros and this Makefile.in.in are in sync. CHECK_MACRO_VERSION = \ test "$(GETTEXT_MACRO_VERSION)" = "@GETTEXT_MACRO_VERSION@" \ || { echo "*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version @GETTEXT_MACRO_VERSION@" 1>&2; \ exit 1; \ } # $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no # internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because # we don't want to bother translators with empty POT files). We assume that # LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. # In this case, stamp-po is a nop (i.e. a phony target). # stamp-po is a timestamp denoting the last time at which the CATALOGS have # been loosely updated. Its purpose is that when a developer or translator # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, # "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent # invocations of "make" will do nothing. This timestamp would not be necessary # if updating the $(CATALOGS) would always touch them; however, the rule for # $(POFILES) has been designed to not touch files that don't need to be # changed. stamp-po: $(srcdir)/$(DOMAIN).pot @$(CHECK_MACRO_VERSION) test ! -f $(srcdir)/$(DOMAIN).pot || \ test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) @test ! -f $(srcdir)/$(DOMAIN).pot || { \ echo "touch stamp-po" && \ echo timestamp > stamp-poT && \ mv stamp-poT stamp-po; \ } # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. # This target rebuilds $(DOMAIN).pot; it is an expensive operation. # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. # The determination of whether the package xyz is a GNU one is based on the # heuristic whether some file in the top level directory mentions "GNU xyz". # If GNU 'find' is available, we avoid grepping through monster files. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed package_gnu="$(PACKAGE_GNU)"; \ test -n "$$package_gnu" || { \ if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f \ -size -10000000c -exec grep 'GNU @PACKAGE@' \ /dev/null '{}' ';' 2>/dev/null; \ else \ LC_ALL=C grep 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null; \ fi; \ } | grep -v 'libtool:' >/dev/null; then \ package_gnu=yes; \ else \ package_gnu=no; \ fi; \ }; \ if test "$$package_gnu" = "yes"; then \ package_prefix='GNU '; \ else \ package_prefix=''; \ fi; \ if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ else \ msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ fi; \ case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ *) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --package-name="$${package_prefix}@PACKAGE@" \ --package-version='@VERSION@' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ esac test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot-header; then \ sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po; \ rm -f $(DOMAIN).1po; \ fi; \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ else \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ else \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ } # This rule has no dependencies: we don't need to update $(DOMAIN).pot at # every "make" invocation, only create it when it is missing. # Only "make $(DOMAIN).pot-update" or "make dist" will force an update. $(srcdir)/$(DOMAIN).pot: $(MAKE) $(DOMAIN).pot-update # This target rebuilds a PO file if $(DOMAIN).pot has changed. # Note that a PO file is not touched if it doesn't need to be changed. $(POFILES): $(POFILESDEPS) @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ if test -f "$(srcdir)/$${lang}.po"; then \ test -f $(srcdir)/$(DOMAIN).pot || $(MAKE) $(srcdir)/$(DOMAIN).pot; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot"; \ cd $(srcdir) \ && { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ *) \ $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot;; \ esac; \ }; \ else \ $(MAKE) $${lang}.po-create; \ fi install: install-exec install-data install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common) Makevars.template; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ for file in Makevars; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-data-no: all install-data-yes: all @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ fi; \ done; \ done install-strip: install installdirs: installdirs-exec installdirs-data installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ fi; \ done; \ done # Define this as empty until I found a useful application. installcheck: uninstall: uninstall-exec uninstall-data uninstall-exec: uninstall-data: uninstall-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ for file in $(DISTFILES.common) Makevars.template; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi uninstall-data-no: uninstall-data-yes: catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ done; \ done check: all info dvi ps pdf html tags TAGS ctags CTAGS ID: mostlyclean: rm -f remove-potcdate.sed rm -f stamp-poT rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po rm -fr *.o clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES *.mo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f stamp-po $(GMOFILES) distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: test -z "$(DISTFILESDEPS)" || $(MAKE) $(DISTFILESDEPS) @$(MAKE) dist2 # This is a separate target because 'update-po' must be executed before. dist2: stamp-po $(DISTFILES) dists="$(DISTFILES)"; \ if test "$(PACKAGE)" = "gettext-tools"; then \ dists="$$dists Makevars.template"; \ fi; \ if test -f $(srcdir)/$(DOMAIN).pot; then \ dists="$$dists $(DOMAIN).pot stamp-po"; \ fi; \ if test -f $(srcdir)/ChangeLog; then \ dists="$$dists ChangeLog"; \ fi; \ for i in 0 1 2 3 4 5 6 7 8 9; do \ if test -f $(srcdir)/ChangeLog.$$i; then \ dists="$$dists ChangeLog.$$i"; \ fi; \ done; \ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \ cp -p $$file $(distdir) || exit 1; \ else \ cp -p $(srcdir)/$$file $(distdir) || exit 1; \ fi; \ done update-po: Makefile $(MAKE) $(DOMAIN).pot-update test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) $(MAKE) update-gmo # General rule for creating PO files. .nop.po-create: @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ exit 1 # General rule for updating PO files. .nop.po-update: @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ if test "$(PACKAGE)" = "gettext-tools" && test "$(CROSS_COMPILING)" != "yes"; then PATH=`pwd`/../src:$$PATH; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ cd $(srcdir); \ if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ *) \ $(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ esac; \ }; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) @: # Recreate Makefile by invoking config.status. Explicitly invoke the shell, # because execution permission bits may not work on the current file system. # Use @SHELL@, which is the shell determined by autoconf for the use by its # scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient. Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ cd $(top_builddir) \ && @SHELL@ ./config.status $(subdir)/$@.in po-directories force: # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: realmd-0.17.1/po/bg.po0000644003225100322510000003346614315277002014737 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Bulgarian (http://www.transifex.com/freedesktop/realmd/" "language/bg/)\n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/ko.gmo0000644003225100322510000003416414315277003015121 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D¥q. *F =q ¯ (Í ö "!q7!=©!Rç!X:""“"H¶"ÿ"#!0#)R#|#.œ#(Ë#(ô#8$3V$Š$&¦$Í$$ì$%0%(L%,u%"¢%%Å%+ë%(&@&._&)Ž&(¸&á&ü& ')'6>'Au'·'9Ö'a(Jr(T½(^)?q)+±)Ý)[ü)XX*±*!Ë*!í*++'+sS+sÇ+";,@^,9Ÿ,JÙ,:$-_-=-=½-û-1.8E."~.B¡.ä./3 /2T/(‡/'°/ Ø/ ù/(0.0;I0+…0=±05ï0-%1PS1¤1Â1+Ý1 2(2=2N2<f2!£2;Å2€3\‚3Jß3K*4Ev4O¼4, 5 952Z5'5µ5.Ó5(66+66b6E™6Dß63$70X7*‰7'´7$Ü7+8-85>8s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 16:43+0000 Last-Translator: Seong-ho Cho Language-Team: Korean (http://www.transifex.com/freedesktop/realmd/language/ko/) Language: ko MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; ê°™ì€ ì´ë¦„ì˜ ë„ë©”ì¸ì´ ì´ë¯¸ 설정ë¨ê´€ë¦¬ìž ì´ë¦„ì´ë‚˜ 암호가 잘못ë¨sssd.conf 설정 파ì¼ì— ë„ë©”ì¸ %sì´(ê°€) ì´ë¯¸ 있ìŒì´ë¯¸ ë„ë©”ì¸ì— 추가ë¨ë‹¤ë¥¸ ë„ë©”ì¸ì— ì´ë¯¸ 참여함: %sì´ë¯¸ ë„ë©”ì¸ì— 등ë¡ë¨ë‹¤ë¥¸ ë™ìž‘ì´ ì´ë¯¸ 실행 ì¤‘ì´ ì»´í“¨í„°ì— ëˆ„ê°€ 로그ì¸í•  수 ìžˆëŠ”ì§€ì— ëŒ€í•œ ì •ì±…ì„ ë³€ê²½í•˜ë ¤ë©´ ì¸ì¦ì´ 필요합니다.Kerberos ì˜ì—­ì„ 사용하려면 ì¸ì¦ì´ 필요합니다.ì˜ì—­ì´ë‚˜ ë„ë©”ì¸ì— ì´ ê¸°ê¸°ë¥¼ 추가하려면 ì¸ì¦ì´ 필요합니다.ì˜ì—­ì´ë‚˜ ë„ë©”ì¸ì—서 ì´ ì»´í“¨í„°ë¥¼ 제외하려면 ì¸ì¦ì´ 필요합니다.ì´ ì˜ì—­ì— 등ë¡í•  수 ì—†ìŒìžë™ ì ‘ê·¼ 모드로 실행 ì¤‘ì¼ ë•Œ 암호를 물어볼 수 ì—†ìŒë¡œê·¸ì¸ ì •ì±… 변경등ë¡í•  Computer OU DN설정한 ëª…ë ¹ì´ ìž˜ëª»ë¨: %s설정한 ëª…ë ¹ì„ ì°¾ì„ ìˆ˜ ì—†ìŒ: %s%s(으)로 ì¸ì¦í•  수 ì—†ìŒí—ˆìš©ë˜ëŠ” 로그ì¸ì„ 변경할 수 ì—†ìŒì˜ì—­ ì„œë¹„ìŠ¤ì— ì—°ê²°í•  수 ì—†ìŒì‹œìŠ¤í…œ ë²„ìŠ¤ì— ì—°ê²°í•  수 ì—†ìŒì¸ì¦ ì •ë³´ ìºì‹œ 파ì¼ì„ 만들 수 ì—†ìŒ: %s: %s런타임 디렉터리를 만들 수 ì—†ìŒ: %s: %sì†Œì¼“ì„ ë§Œë“¤ 수 ì—†ìŒì†Œì¼“ ìŒì„ ìƒì„±í•  수 ì—†ìŒ: %sì˜ì—­ì„ 발견할 수 ì—†ìŒKerberos를 초기화 í•  수 ì—†ìŒì˜ì—­ì— 등ë¡í•  수 ì—†ìŒì˜ì—­ì„ ë– ë‚  수 ì—†ìŒì˜ì—­ 서비스를 불러올 수 ì—†ìŒì‚¬ìš©ìž ì´ë¦„ì„ í•´ì„í•  수 ì—†ìŒ: %s암호를 물어볼 수 ì—†ìŒ: %sì¸ì¦ì„œ ìºì‹œë¥¼ ì½ì„ 수 ì—†ìŒKerberos ì¸ì¦ 정보를 ì½ì„ 수 ì—†ìŒì¸ì¦ì„œ ìºì‹œë¥¼ í•´ì„í•  수 ì—†ìŒrealmd를 실행할 수 ì—†ìŒKerberos ì¸ì¦ 정보를 ì„ íƒí•  수 ì—†ìŒì„¤ì • 파ì¼ì„ 기ë¡í•  수 ì—†ìŒ: %sìž„ì˜ì˜ ì˜ì—­ 계정 ë¡œê·¸ì¸ ê±°ë¶€ì‚¬ìš©ìž ë¡œê·¸ì¸ ê±°ë¶€ì‚¬ìš© 가능한 ì˜ì—­ 검색ì˜ì—­ 검색입력 묻지 않기sssd.conf 설정 파ì¼ì— ë„ë©”ì¸ %sì´(ê°€) ì—†ìŒnsswitch.conf와 PAMì—서 SSSD를 활성화할 수 없습니다.ì´ ê¸°ê¸°ë¥¼ ì˜ì—­ì— 등ë¡ì•”호를 입력하여 ì´ ì˜ì—­ì— 등ë¡í•  수 ì—†ìŒí—ˆìš©ë˜ëŠ” ë¡œê·¸ì¸ ì •ë³´ë¥¼ 변경할 수 없습니다. 진단 기ë¡ì„ 참조하십시오.ì˜ì—­ì„ 발견할 수 없습니다. 진단 기ë¡ì„ 참조하십시오.기기를 ì˜ì—­ì— 등ë¡í•  수 없습니다. 진단 기ë¡ì„ 참조하십시오.기기를 ì˜ì—­ì—서 ë“±ë¡ í•´ì œí•  수 없습니다. 진단 기ë¡ì„ 참조하십시오.-a ë˜ëŠ” --all ì˜µì…˜ì— ê·¸ë£¹ 정보를 지정할 수 ì—†ìŒì§€ì •한 ì ‘ë‘ì–´ì— ë”°ë¥¸ 설치 모드필요한 패키지 설치 ì¤‘ìž˜ëª»ëœ ë¡œê·¸ì¸ ì¸ìž '%s'ì— ì§€ì›í•˜ì§€ 않는 문ìžê°€ í¬í•¨ë˜ì–´ 있습니다.ìž˜ëª»ëœ ë¡œê·¸ì¸ ì¸ìž %s%s%sì´(ê°€) ë¡œê·¸ì¸ í˜•ì‹ê³¼ ì¼ì¹˜í•˜ì§€ 않습니다.%sì˜ ì•”í˜¸ê°€ 잘못ë¨%s ì˜µì…˜ì˜ ê°’ì´ ìž˜ëª»ë¨: %s암호 ì—†ì´ ìžë™ìœ¼ë¡œ 등ë¡ì˜ì—­ì— 기기 추가미리 설정한 ì¼íšŒìš© 암호로 등ë¡ì¼íšŒìš© 암호를 사용하여 ë„ë©”ì¸ì— 등ë¡í•˜ëŠ” ê²ƒì€ '%s' êµ¬ì„±ì› ì†Œí”„íŠ¸ì›¨ì–´ì—서만 ì§€ì›í•¨ì‚¬ìš©ìž 암호를 사용하여 ë„ë©”ì¸ì— 등ë¡í•˜ëŠ” ê²ƒì€ '%s' êµ¬ì„±ì› ì†Œí”„íŠ¸ì›¨ì–´ì—서만 ì§€ì›í•¨ì´ ì˜ì—­ì— 등ë¡í•  수 ì—†ìŒì¸ì¦ ìºì‹œë¥¼ 사용하여 ì´ ì˜ì—­ì— 등ë¡í•  수 ì—†ìŒë¹„ë°€ì„ ì‚¬ìš©í•˜ì—¬ ì´ ì˜ì—­ì— 등ë¡í•  수 ì—†ìŒì¸ì¦ 정보를 지정하지 않고 ì´ ì˜ì—­ìœ¼ë¡œ 등ë¡í•  수 ì—†ìŒì´ ì‹œìŠ¤í…œì˜ LDAPì€ UDP ì—°ê²°ì„ ì§€ì›í•˜ì§€ 않ìŒì´ ì˜ì—­ì„ ë– ë‚  수 ì—†ìŒì¸ì¦ ìºì‹œë¥¼ 사용하여 ì´ ì˜ì—­ì„ ë– ë‚  수 ì—†ìŒì¸ì¦ 정보를 지정하고 ì´ ì˜ì—­ì„ ë– ë‚  수 ì—†ìŒì•Œë ¤ì§„ ì˜ì—­ 목ë¡í•„요한 패키지가 설치ë˜ì§€ 않았ìŒ: %sì´ ë„ë©”ì¸ì„ 떠나려면 ì¸ì¦ ì •ë³´ê°€ 필요함기본 ì˜ì—­ì„ ì°¾ì„ ìˆ˜ ì—†ìŒ-a ë˜ëŠ” --all ì˜µì…˜ì— ë¡œê·¸ì¸ ì •ë³´ë¥¼ 지정할 수 ì—†ìŒì˜ì—­ì„ ì°¾ì„ ìˆ˜ ì—†ìŒì˜ì—­ì„ ì°¾ì„ ìˆ˜ ì—†ìŒ: %sì´ ìž‘ì—…ì„ ìˆ˜í–‰í•  수 있는 ê¶Œí•œì´ ì—†ìŒí˜„재 ì´ ë„ë©”ì¸ì— 참여하고 있지 않ìŒì´ ì˜ì—­ì— 등ë¡ë˜ì–´ 있지 않ìŒì´ ë„ë©”ì¸ì— 참여하지 않았ìŒìž‘ì—…ì´ ì·¨ì†Œë˜ì—ˆìŠµë‹ˆë‹¤.%s 암호: ìž„ì˜ì˜ ì˜ì—­ 계정 ë¡œê·¸ì¸ í—ˆìš©ì‚¬ìš©ìž ë¡œê·¸ì¸ í—ˆìš©í”„ë¡œì„¸ìŠ¤ê°€ ë‹¤ìŒ ì‹œê·¸ë„ì„ ë‚¨ê¸°ê³  죽었ìŒ: %dì˜ì—­ì— ìžë™ìœ¼ë¡œ 등ë¡í•  수 ì—†ìŒì˜ì—­ì— 1회용 암호를 사용하여 등ë¡í•  수 ì—†ìŒì˜ì—­ì— 암호를 사용하여 등ë¡í•  수 ì—†ìŒë¡œê·¸ì¸ì„ 허용하거나 거절할 ì˜ì—­ì„œë²„ì—서 잘못ë˜ì—ˆê±°ë‚˜ ì§€ì›í•˜ì§€ 않는 Netlogon ë°ì´í„°ë¥¼ ë°›ìŒì˜ì—­ì—서 컴퓨터 ì‚­ì œì˜ì—­ì—서 기기 삭제컴퓨터 ê³„ì •ì˜ ì‚¬ìš©ìž ì›ì¹™ 설정모든 발견한 ì˜ì—­ 표시모든 ì˜ì—­ 표시ì´ë¦„ë§Œ í‘œì‹œëª…ë ¹ì„ ê±´ë„ˆëœ€: %s--withdraw 옵션ì—는 ë¡œê·¸ì¸ ì˜µì…˜ì„ ì§€ì •í•´ì•¼ 함등ë¡í•  í•˜ë‚˜ì˜ ì˜ì—­ 지정허용 목ë¡ì— 추가하거나 삭제할 ì‚¬ìš©ìž ì§€ì •--allì„ ì§€ì •í•˜ì§€ 않고 거부하는 ì˜µì…˜ì€ ì˜¤ëž˜ë˜ì—ˆìŠµë‹ˆë‹¤. ì˜ì—­ 권한 --withdraw ì˜µì…˜ì„ ì‚¬ìš©í•˜ì‹­ì‹œì˜¤--no-password ì¸ìžëŠ” --one-time-password ë° --user ì¸ìžì™€ ê°™ì´ ì‚¬ìš©í•  수 ì—†ìŒ--one-time-password ì¸ìžëŠ” --user ì¸ìžì™€ ê°™ì´ ì‚¬ìš©í•  수 ì—†ìŒë¡œê·¸ì¸ì„ 거부할 때 --withdraw ë° -x ì¸ìžë¥¼ 사용할 수 ì—†ìŒSamba 공급ìžê°€ í—ˆìš©ëœ ë¡œê·¸ì¸ì„ 제한할 수 없습니다.IPA ë„ë©”ì¸ì— 등ë¡í•  때 computer-ou ì¸ìžë¥¼ ì§€ì›í•˜ì§€ 않습니다.ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 설치할 수 ì—†ìŒ: %sìž‘ì—…ì´ ì·¨ì†Œë˜ì—ˆìŠµë‹ˆë‹¤.ì´ ì˜ì—­ì—는 로그ì¸ì„ 지정할 수 ì—†ìŒì´ë¦„ì„ í—ˆìš©í•  그룹으로 취급ìžë™ ID ëŒ€ì‘ ë¹„í™œì„±í™”ë„ë©”ì¸ì— ìžë™ìœ¼ë¡œ 등ë¡í•  수 ì—†ìŒì´ 기기를 ì˜ì—­ì—서 ë“±ë¡ í•´ì œì•”í˜¸ë¥¼ 입력하여 ì´ ì˜ì—­ì„ ë– ë‚  수 ì—†ìŒë¹„ë°€ì„ ì‚¬ìš©í•˜ì—¬ ì´ ì˜ì—­ì„ ë– ë‚  수 ì—†ìŒë„ë©”ì¸ì— 참여하기 위하여 ì§€ì›ë˜ì§€ 않는 ì¸ì¦ ì •ë³´ì§€ì›í•˜ì§€ 않거나 알 수 없는 êµ¬ì„±ì› ì†Œí”„íŠ¸ì›¨ì–´ '%s'--allì„ ì‚¬ìš©í•˜ë©´ 모든 로그ì¸ì„ 거부함지정한 í´ë¼ì´ì–¸íЏ 소프트웨어 사용지정한 êµ¬ì„±ì› ì†Œí”„íŠ¸ì›¨ì–´ 사용지정한 서버 소프트웨어 사용등ë¡ì— 사용할 ì‚¬ìš©ìž ì´ë¦„삭제하는 ë° ì‚¬ìš©í•  ì‚¬ìš©ìž ì´ë¦„ìžì„¸í•œ 출력로그ì¸í•  때 사용할 ì˜ì—­ ê³„ì •ì˜ ê±°ë¶€ê¶Œrealmd-0.17.1/po/sq.gmo0000644003225100322510000000073514315277003015130 0ustar00sbosesbose00000000000000Þ•$,8£9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Albanian (http://www.transifex.com/freedesktop/realmd/language/sq/) Language: sq MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/sk.po0000644003225100322510000003360114315277002014753 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Slovak (http://www.transifex.com/freedesktop/realmd/language/" "sk/)\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n " ">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/id.gmo0000644003225100322510000003274314315277003015105 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D¤q) @ 6` — "· Ú ø ]!5s!I©!Kó!?"@_" "¹""Ø"&û"""#*E#$p#!•#4·#*ì#$#.$R$"i$Œ$¢$¼$#Ú$þ$"%$?%'d%Œ%$¨%Í%"é% &%& A&O&1d&3–&"Ê&7í&:%'(`'4‰'B¾'.()0(Z(Jy(HÄ( ) %)+F)r)3‹)h¿)f(*#*@³*9ô*4.+.c+#’+@¶+4÷+#,,'P,.x,§,<¾,û,#-(?-"h-,‹-¸-Ô-è-$÷-.!7.(Y.>‚.3Á..õ.C$/h/‚/(™/$Â/ç/ý/05(0$^0Sƒ0R×0M*1:x1D³1;ø1J42/2¯2.Â2+ñ23,:3/g3E—3GÝ3<%4>b4)¡4&Ë4,ò4'5,G5,t5¡50²5s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 17:00+0000 Last-Translator: Andika Triwidada Language-Team: Indonesian (http://www.transifex.com/freedesktop/realmd/language/id/) Language: id MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; Suatu domain dengan nama ini telah ditataNama atau sandi admin tak validTelah memiliki domain %s dalam berkas konfig sssd.confTelah bergabung ke suatu domainTelah bergabung ke domain lain: %sTelah bergabung ke domain iniTengah menjalankan aksi lainPerlu otentikasi untuk mengubah kebijakan tentang siapa yang dapat log masuk ke komputer ini.Perlu otentikasi untuk menemukan suatu realm kerberosPerlu otentikasi untuk menggabungkan mesin ini ke suatu realm atau domainPerlu otentikasi untuk menghapus komputer ini dari suatu realm atau domain.Tak bisa bergabung ke realm iniTak bisa meminta sandi ketika berjalan dalam mode tak interaktifUbah kebijakan log masukOU DN komputer untuk bergabungPerintah yang ditata tak valid: %sPerintah yang ditata tak ditemukan: %sTak bisa mengotentikasi sebagai %sTak bisa mengubah log masuk yang diijinkanTak bisa menyambung ke layanan realmTak bisa menyambung ke bus sistemTak bisa membuat berkas singgahan kredensial: %s: %sTak bisa membuat direktori runtime: %s: %sTak bisa membuat soketTak bisa membuat pasangan soket: %sTak bisa temukan realmTak bisa menginisialisasi kerberosTak bisa gabung realmTak bisa tinggalkan realmTak bisa memuat layanan realmTak bisa mengurai nama pengguna: %sTak bisa menanyakan sandi: %sTak bisa baca singgahan kredensialTak bisa membaca kredensial kerberosTak bisa meresolve singgahan kredensialTak bisa menjalankan realmdTak bisa memilih kredensial kerberosTak bisa menulis config: %sTolak log masuk akun realm manapunTolak pengguna log masukTemukan realm yang tersediaTemukan realmJangan minta masukanTak punya domain %s dalam berkas konfig sssd.confPemfungsian SSSD dalam nsswitch.conf dan PAM gagal.Daftarkan mesin ini ke suatu realmMendaftar ke realm ini memakai suatu sandi tak didukungGagal mengubah log masuk yang diijinkan. Lihat diagnostik.Gagal menemukan realm. Lihat diagnostik.Gagal mendaftarkan mesin ke realm. Lihat diagnostik.Gagal membatalkan pendaftaran mesin dari domain. Lihat diagnostik.Grup tak boleh dinyatakan dengan -a atau --allMode pemasangan ke suatu prefiks tertentuMemasang paket yang diperlukanArgumen log masuk '%s' tak valid karena memuat karakter yang tak didukung.Argumen%s%s%s log masuk yang tak valid tak cocok dengan format log masukSandi tak valid bagi %sNilai tak valid bagi opsi %s: %sSecara otomatis bergabung tanpa suatu sandiGabungkan mesin ke realmBergabung memakai sandi sekali waktu yang dipratataBergabung ke suatu domain dengan sandi satu waktu hanya didukung dengan perangkat lunak keanggotaan '%s'Bergabung ke suatu domain dengan sandi pengguna hanya didukung dengan perangkat lunak keanggotaan '%s'Bergabung ke realm ini tak didukungBergabung ke realm ini memakai singgahan kredensial tak didukungBergabung ke realm ini memakai suatu rahasia tak didukungBergabung ke realm ini tanpa kredensial tak didukungLDAP pada sistem ini tak mendukung koneksi UDPMeninggalkan realm ini tak didukungMeninggalkan realm ini memakai singgahan kredensial tak didukungMeninggalkan realm ini tanpa kredensial tak didukungSajikan daftar realm yang diketahuiPaket yang dibutuhkan tak terpasang: %sPerlu kredensial untuk meninggalkan domain iniTak temukan realm bakuTak ada log masuk yang mesti dinyatakan dengan -a atau --allRealm seperti itu tak ditemukanRealm seperti itu tak ditemukan: %sTak diotorisasi untuk melakukan aksi iniTak sedang bergabung ke domain iniSaat ini tidak sedang bergabung ke realm iniTak bergabung ke domain iniOperasi dibatalkan.Sandi bagi %s:Ijinkan log masuk akun realm manapunIjinkan pengguna log masukProses diakhiri dengan sinyal: %dRealm tak mendukung keanggotaan otomatisRealm tak mendukung keanggotaan memakai suatu sandi satu waktuRealm tak mendukung keanggotaan memakai suatu sandiRealm yang akan diijinkan/ditolak log masuknyaMenerima data Netlogon yang tak valid atau tak didukung dari serverHapus komputer dari realmHapus mesin dari realmMenata pengguna utama bagi akun komputerTampilkan semua realm yang ditemukanTunjukkan semua realmHanya tampilkan namaPerintah dilewati: %sLog masuk tertentu mesti dinyatakan dengan --withdrawNyatakan satu realm tempat bergabungNyatakan pengguna tertentu untuk menambah atau menghapus dari daftar yang diijinkanMenyatakan penolakan tanpa --all tak berlaku lagi. Gunakan realm permit --withdrawArgumen --no-password tak bisa dipakai dengan --one-time-password atau --userArgumen --one-time-password tak bisa dipakai dengan --userArgumen --withdraw atau -x tak bisa dipakai ketika menolak log masukPenyedia Samba tak bisa membatasi log masuk yang diijinkan.Argumen computer-ou tak didukung ketika bergabung dengan suatu domain IPA.Paket berikut tak tersedia untuk pemasangan: %sOperasi dibatalkanRealm ini tak mengijinkan menyatakan log masukPerlakukan nama sebagai grup yang diijinkanMatikan pemetaan id otomatisTak bisa secara otomatis bergabung ke domainBatalkan pendaftaran mesin ini dari suatu realmMembatalkan pendaftaran ke realm ini memakai suatu sandi tak didukungMembatalkan pendaftaran ke realm ini memakai suatu rahasia tak didukungKredensial yang tak didukung untuk bergabung ke suatu domainPerangkat lunak '%s' keanggotaan tak didukung atau tak dikenalPakai --all untuk menolak semua log masukGunakan perangkat lunak klien tertentuGunakan perangkat lunak keanggotaan tertentuGunakan perangkat lunak server tertentuNama pengguna yang dipakai untuk pendaftaranNama pengguna yang dipakai untuk penghapusanKeluaran terinciCabut ijin bagi suatu akun realm untuk log masukrealmd-0.17.1/po/realmd.pot0000644003225100322510000003336414315277002015774 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Collabora Ltd., Red Hat Inc. # This file is distributed under the same license as the realmd package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: realmd 0.17.1\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/ga.gmo0000644003225100322510000000100014315277003015056 0ustar00sbosesbose00000000000000Þ•$,8Æ9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Irish (http://www.transifex.com/freedesktop/realmd/language/ga/) Language: ga MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4); realmd-0.17.1/po/et.gmo0000644003225100322510000000073514315277003015115 0ustar00sbosesbose00000000000000Þ•$,8£9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Estonian (http://www.transifex.com/freedesktop/realmd/language/et/) Language: et MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/sr@latin.gmo0000644003225100322510000000107214315277003016254 0ustar00sbosesbose00000000000000Þ•$,89Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Serbian (Latin) (http://www.transifex.com/freedesktop/realmd/language/sr@latin/) Language: sr@latin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); realmd-0.17.1/po/ru.gmo0000644003225100322510000004562714315277003015144 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D6q=¨ Væ V=!/”!BÄ!:"5B"‡x"m#„n#ó#E„$†Ê$,Q%D~%8Ã%=ü%A:&X|&KÕ&K!'Vm'^Ä'-#(>Q(7(=È(B)3I)B})JÀ)7 *IC*L*KÚ*-&+HT+A+_ß+O?,8,%È,:î,])-D‡-2Ì-nÿ-œn.| /„ˆ/† 0O”0Jä08/1„h1‘í1 2; 2WÜ2743wl3¢ä3¬‡4W45ŽŒ5‡6z£6^7W}7ŽÕ7zd80ß8C9bT9@·9`ø9-Y:3‡:U»:Y;Yk;8Å;+þ;*<_B<O¢<9ò<Z,=w‡=^ÿ=]^>¼>5A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 19:43+0000 Last-Translator: Serge Vylekzhanin Language-Team: Russian (http://www.transifex.com/freedesktop/realmd/language/ru/) Language: ru MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3); Домен Ñ Ñ‚Ð°ÐºÐ¸Ð¼ именем уже наÑÑ‚Ñ€Ð¾ÐµÐ½Ð˜Ð¼Ñ Ð¸Ð»Ð¸ пароль админиÑтратора недейÑтвительныУже еÑть домен %s в конфигурационном файле sssd.confУже приÑоединены к доменуУже приÑоединены к другому домену: %sУже приÑоединены к Ñтому доменуУже запущено другое дейÑÑ‚Ð²Ð¸ÐµÐ”Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð»Ð¸Ñ‚Ð¸ÐºÐ¸ входа на Ñтот компьютер требуетÑÑ Ð°ÑƒÑ‚ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ.Ð”Ð»Ñ Ð¾Ð±Ð½Ð°Ñ€ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð¾Ð±Ð»Ð°Ñти ÐšÐµÑ€Ð±ÐµÑ€Ð¾Ñ Ñ‚Ñ€ÐµÐ±ÑƒÐµÑ‚ÑÑ Ð°ÑƒÑ‚ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸ÑÐ”Ð»Ñ Ð¿Ñ€Ð¸ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð¼Ð°ÑˆÐ¸Ð½Ñ‹ к облаÑти или домену требуетÑÑ Ð°ÑƒÑ‚ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸ÑÐ”Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ñтого компьютера из облаÑти или домена требуетÑÑ Ð°ÑƒÑ‚ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ.Ðе могу приÑоединитьÑÑ Ðº Ñтой облаÑтиÐÐµÐ»ÑŒÐ·Ñ Ð²Ñ‹Ð²Ð¾Ð´Ð¸Ñ‚ÑŒ Ð·Ð°Ð¿Ñ€Ð¾Ñ Ð½Ð° ввод Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð¿Ñ€Ð¸ работе в автоматичеÑком режимеИзменить политику входаКомпьютерные «OU DN» Ð´Ð»Ñ Ð¿Ñ€Ð¸ÑоединениÑÐаÑÑ‚Ñ€Ð¾ÐµÐ½Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° неверна: %sÐаÑÑ‚Ñ€Ð¾ÐµÐ½Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° не найдена: %sÐевозможно проверить подлинноÑть %sÐевозможно изменить разрешённые учётные запиÑиÐе удалоÑÑŒ подключитьÑÑ Ðº Ñлужбе облаÑтиÐе удалоÑÑŒ подключитьÑÑ Ðº ÑиÑтемной шинеÐе удалоÑÑŒ Ñоздать кÑш-файл учётных данных: %s: %sÐе удалоÑÑŒ Ñоздать каталог во Ð²Ñ€ÐµÐ¼Ñ Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ: %s: %sÐе удалоÑÑŒ Ñоздать ÑокетÐе удалоÑÑŒ Ñоздать пару Ñокетов: %sÐе удалоÑÑŒ обнаружить облаÑтиÐе удалоÑÑŒ инициализировать KerberosÐе удалоÑÑŒ приÑоединитьÑÑ Ðº облаÑтиÐе удалоÑÑŒ покинуть облаÑтьÐе удалоÑÑŒ загрузить Ñлужбу облаÑтиÐе удалоÑÑŒ разобрать Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ: %sÐе удалоÑÑŒ запроÑить пароль: %sÐе удалоÑÑŒ прочитать кÑш учётных данныхÐевозможно прочитать учётные данные KerberosÐе удалоÑÑŒ определить кÑш учётных данныхÐе удалоÑÑŒ запуÑтить realmdÐевозможно выбрать учётные данные KerberosÐе удалоÑÑŒ запиÑать конфигурацию: %sЗапретить региÑтрацию любой учётной запиÑи облаÑтиЗапрещать пользовательÑкие учётные запиÑиОбнаружение доÑтупной облаÑтиОбнаружение облаÑтиÐе выводить подÑказки при вводеОтÑутÑтвует домен %s в конфигурационном файле sssd.confВключение SSSD в nsswitch.conf и PAM не удалоÑÑŒ.ВнеÑти Ñту машину в облаÑтьВÑтупление в Ñту облаÑть Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ðµ поддерживаетÑÑÐе удалоÑÑŒ изменить разрешённые учётные запиÑи. Смотрите диагноÑтичеÑкие ÑообщениÑ.Ðе удалоÑÑŒ обнаружить облаÑть. Смотрите диагноÑтичеÑкие ÑообщениÑ.Ðе удалоÑÑŒ внеÑти машину в облаÑть. Смотрите диагноÑтичеÑкие ÑообщениÑ.Ðе удалоÑÑŒ вывеÑти машину из домена. Смотрите диагноÑтичеÑкие ÑообщениÑ.Группы не могут быть указаны Ñ Â«-a» или «--all»УÑтановить режим в определённый префикÑУÑтановка необходимых пакетовÐеверный аргумент учётной запиÑи '%s' Ñодержит неподдерживаемые Ñимволы.Ðеверный аргумент учётной запиÑи %s%s%s не ÑоответÑтвует формату входа в ÑиÑтему.Ðеверный пароль %sÐеверное значение параметра %s: %sПриÑоединÑтьÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑки, без ввода паролÑПриÑоединить машину к облаÑтиПриÑоединÑтьÑÑ, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð¿Ñ€ÐµÐ´ÑƒÑтановленный одноразовый парольПриÑоединение к домену Ñ Ð¾Ð´Ð½Ð¾Ñ€Ð°Ð·Ð¾Ð²Ñ‹Ð¼ паролем поддерживаетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ñ ÐŸÐž Ð´Ð»Ñ Ñ‡Ð»ÐµÐ½Ñтва '%s'ПриÑоединение к домену Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒÑким паролем поддерживаетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ñ ÐŸÐž Ð´Ð»Ñ Ñ‡Ð»ÐµÐ½Ñтва '%s'ПриÑоединение к Ñтой облаÑти не поддерживаетÑÑПриÑоединение к Ñтой облаÑти Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ кÑша учетных данных не поддерживаетÑÑПриÑоединение к Ñтой облаÑти Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Ñекретного кода не поддерживаетÑÑПриÑоединение к Ñтой облаÑти без учетных данных не поддерживаетÑÑLDAP на Ñтом компьютере не поддерживает UDP ÑоединениÑОтÑоединение от Ñтой облаÑти не поддерживаетÑÑОтÑоединение от Ñтой облаÑти Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ кÑша учетных данных не поддерживаетÑÑОтÑоединение от Ñтой облаÑти без учетных данных не поддерживаетÑÑСпиÑок извеÑтных облаÑтейÐеобходимые пакеты не уÑтановлены: %sÐеобходимы учетные данные Ð´Ð»Ñ Ð¿Ð¾ÐºÐ¸Ð´Ð°Ð½Ð¸Ñ Ñтого доменаОблаÑть по умолчанию не обнаруженаУчётные запиÑи не должны быть указаны Ñ Â«-a» или «--allÂ»Ð¢Ð°ÐºÐ°Ñ Ð¾Ð±Ð»Ð°Ñть не найденаТаких облаÑтей не найдено: %sÐе авторизованы Ð´Ð»Ñ Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ñтого дейÑтвиÑÐ’ наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð½Ðµ приÑоединены к Ñтому доменуВ наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð½Ðµ приÑоединены к Ñтой облаÑтиÐе приÑоединены к Ñтому Ð´Ð¾Ð¼ÐµÐ½ÑƒÐžÐ¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ð±Ñ‹Ð»Ð° отменена.Пароль Ð´Ð»Ñ %s:Разрешить региÑтрацию любой учётной запиÑи облаÑтиПозволÑть пользовательÑкие учётные запиÑиПроцеÑÑ Ð±Ñ‹Ð» прерван Ñигналом: %dОблаÑть не поддерживает автоматичеÑкое членÑтвоОблаÑть не поддерживает членÑтво при помощи одноразового паролÑОблаÑть не поддерживает членÑтво при помощи паролÑОблаÑть Ð´Ð»Ñ Ñ€Ð°Ð·Ñ€ÐµÑˆÐµÐ½Ð¸Ñ/Ð·Ð°Ð¿Ñ€ÐµÑ‰ÐµÐ½Ð¸Ñ ÑƒÑ‡Ñ‘Ñ‚Ð½Ñ‹Ñ… запиÑейПолучены неверные или неподдерживаемые данные входа в Ñеть Ñ ÑервераУдалить компьютер из облаÑтиУдалить машину из облаÑтиУÑтановить главного Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð´Ð»Ñ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ запиÑи компьютераПоказать вÑе обнаруженные облаÑтиПоказать вÑе облаÑтиПоказать только Ð¸Ð¼ÐµÐ½Ð°ÐŸÑ€Ð¾Ð¿ÑƒÑ‰ÐµÐ½Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð°: %sОпределённые учётные запиÑи должны быть определены Ñ Â«--withdraw»Определите одну облаÑть Ð´Ð»Ñ Ð¿Ñ€Ð¸ÑоединениÑУказать определённых пользователей Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¸Ð»Ð¸ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð²/из разрешённого ÑпиÑкаУказание Ð·Ð°Ð¿Ñ€ÐµÑ‰ÐµÐ½Ð¸Ñ Ð±ÐµÐ· «--all» не рекомендуетÑÑ. ИÑпользуйте разрешение облаÑти «--withdraw»Ðргумент «--no-password» не может быть иÑпользован Ñ Â«--one-time-password» или «--user»Ðргумент «--one-time-password» не может быть иÑпользован Ñ Â«--user»Ðргументы «--withdraw» или «-x» не могут быть иÑпользованы при запрете учётных запиÑейПровайдер Samba не может ограничить разрешенные учётные запиÑи.Ðргумент «computer-ou» не поддерживаетÑÑ Ð¿Ñ€Ð¸ приÑоединении к домену IPA.Следующие пакеты не доÑтупны Ð´Ð»Ñ ÑƒÑтановки: %sÐžÐ¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ð±Ñ‹Ð»Ð° отмененаОблаÑть не позволÑет определÑть логиныТрактовать имена как группы, которые разрешеныОтключить автоматичеÑкую привÑзку идентификаторовÐевозможно автоматичеÑки приÑоединитьÑÑ Ðº доменуВывеÑти Ñту машину из облаÑтиПокидание Ñтой облаÑти Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ðµ поддерживаетÑÑПокидание Ñтой облаÑти Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Ñекретного кода не поддерживаетÑÑÐеподдерживаемые учетные данные Ð´Ð»Ñ Ð¿Ñ€Ð¸ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ðº доменуÐеподдерживаемое или неизвеÑтное ПО Ð´Ð»Ñ Ñ‡Ð»ÐµÐ½Ñтва '%s'ИÑпользовать «--all» Ð´Ð»Ñ Ð·Ð°Ð¿Ñ€ÐµÑ‰ÐµÐ½Ð¸Ñ Ð²Ñех учётных запиÑейИÑпользовать определённый клиент ПОИÑпользовать определённое ПО Ð´Ð»Ñ Ñ‡Ð»ÐµÐ½ÑтваИÑпользовать определённое Ñерверное ÐŸÐžÐ˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð´Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¸ вÑÑ‚ÑƒÐ¿Ð»ÐµÐ½Ð¸Ð¸Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð´Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¸ удаленииПодробный выводОтозвать разрешение учётной запиÑи облаÑти на региÑтрацию.realmd-0.17.1/po/en@quot.header0000644003225100322510000000226314315276770016576 0ustar00sbosesbose00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # realmd-0.17.1/po/en_GB.po0000644003225100322510000004556514315277002015324 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Andi Chandler , 2013,2015 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 19:43+0000\n" "Last-Translator: Andi Chandler \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/" "freedesktop/realmd/language/en_GB/)\n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Discover realm" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Authentication is required to discover a kerberos realm" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Join machine to realm" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "Authentication is required to join this machine to a realm or domain" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Remove machine from realm" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Authentication is required to remove this computer from a realm or domain." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Change login policy" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Authentication is required to change the policy of who can log in on this " "computer." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Process was terminated with signal: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "The operation was cancelled" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Configured command not found: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Skipped command: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Configured command invalid: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Received invalid or unsupported Netlogon data from server" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "LDAP on this system does not support UDP connections" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Unsupported or unknown membership software '%s'" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Already joined to a domain" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Admin name or password is not valid" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Not currently joined to this domain" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Need credentials for leaving this domain" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Couldn't write out config: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Not authorised to perform this action" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Operation was cancelled." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Failed to enroll machine in realm. See diagnostics." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "Failed to unenroll machine from domain. See diagnostics." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Joining this realm without credentials is not supported" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "Leaving this realm without credentials is not supported" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "Joining this realm using a credential cache is not supported" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "Leaving this realm using a credential cache is not supported" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Joining this realm using a secret is not supported" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Unenrolling this realm using a secret is not supported" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Enrolling this realm using a password is not supported" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Unenrolling this realm using a password is not supported" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Joining this realm is not supported" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Leaving this realm is not supported" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Already running another action" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Already joined to another domain: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "Failed to change permitted logins. See diagnostics." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "The realm does not allow specifying logins" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "Invalid login argument%s%s%s does not match the login format." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "The following packages are not available for installation: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Necessary packages are not installed: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Installing necessary packages" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Failed to discover realm. See diagnostics." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Not joined to this domain" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "The Samba provider cannot restrict permitted logins." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "Invalid login argument '%s' contains unsupported characters." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Enabling SSSD in nsswitch.conf and PAM failed." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Unable to automatically join the domain" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Joining a domain with a user password is only supported with the '%s' " "membership software" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Unsupported credentials for joining a domain" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Already joined to this domain" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "A domain with this name is already configured" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Already have domain %s in sssd.conf config file" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Don't have domain %s in sssd.conf config file" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "The computer-ou argument is not supported when joining an IPA domain." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "The computer-ou argument is not supported when joining an IPA domain." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Not currently joined to this realm" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Discover available realm" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Enroll this machine in a realm" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Unenroll this machine from a realm" #: tools/realm.c:43 msgid "List known realms" msgstr "List known realms" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Permit user logins" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Deny user logins" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Invalid value for %s option: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Install mode to a specific prefix" #: tools/realm.c:215 msgid "Verbose output" msgstr "Verbose output" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Do not prompt for input" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Couldn't connect to realm service" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Couldn't load the realm service" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Couldn't connect to system bus" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Couldn't create socket pair: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Couldn't create socket" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Couldn't run realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Couldn't create runtime directory: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Couldn't create credential cache file: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Couldn't resolve credential cache" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Invalid password for %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Couldn't authenticate as %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Couldn't parse user name: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Couldn't read credential cache" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Couldn't initialise kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "Cannot prompt for a password when running in unattended mode" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Password for %s: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Couldn't prompt for password: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Realm does not support membership using a password" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Realm does not support membership using a one time password" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Couldn't select kerberos credentials" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Couldn't read kerberos credentials" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Realm does not support automatic membership" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Couldn't discover realms" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "No default realm discovered" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "No such realm found: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Show all discovered realms" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Show only the names" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Use specific client software" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Use specific membership software" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Use specific server software" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Show all realms" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Couldn't join realm" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Cannot join this realm" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "No such realm found" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Turn off automatic id mapping" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Use specific client software" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "Computer OU DN to join" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Join automatically without a password" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Join using a preset one time password" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Use specific client software" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Use specific server software" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "User name to use for enrollment" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Set the user principal for the computer account" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Specify one realm to join" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "The --no-password argument cannot be used with --one-time-password or --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "The --one-time-password argument cannot be used with --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Couldn't leave realm" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Remove computer from realm" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "User name to use for removal" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Couldn't change permitted logins" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Permit any realm account login" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Deny any realm account login" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Withdraw permit for a realm account to login" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Treat names as groups which to permit" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Realm to permit/deny logins for" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "No logins should be specified with -a or --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "The --withdraw or -x arguments cannot be used when denying logins" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Specific logins must be specified with --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Groups may not be specified with -a or --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Use --all to deny all logins" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "Specify specific users to add or remove from the permitted list" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" realmd-0.17.1/po/cs.gmo0000644003225100322510000003435514315277003015117 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,Dôq+f )’ >¼ û &!"?! b!`ƒ!9ä!M"Ml"%º"Ià" *#gK#%³#%Ù#(ÿ#0($*Y$/„$B´$1÷$)%(G%p%$Ž%³%Ó%%ð%0&#G&/k&1›&2Í&'-'#K'6o'%¦'Ì'æ'ö';(-J(!x(;š(;Ö(,)5?)@u).¶)#å)" *I,*Qv*!È*"ê* +++7C+r{+rî+-a,O,;ß,=-9Y-+“-M¿-; .I.._.6Ž.)Å.?ï.'//*W/*‚/'­/.Õ/ 0%0<04V0#‹0!¯0*Ñ0;ü0+81;d1D 1å12;2"V2y2’2¦2:Ã2.þ2\-3ZŠ3Qå3>74Kv4<Â4Iÿ49I5ƒ59™53Ó5"6$*6+O6E{6OÁ6479F70€7(±7'Ú7(8;+8<g8¤86¶8s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2018-09-24 16:08+0000 Last-Translator: Marek ÄŒernocký Language-Team: Czech (http://www.transifex.com/freedesktop/realmd/language/cs/) Language: cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3; Doména s tímto názvem je již nastavenáJméno nebo heslo správce jsou neplatnéDoména %s se již v souboru s nastavením sssd.conf nacházíJiž je pÅ™idáno do doményJiž je pÅ™idáno do jiné domény: %sDo této domény je již pÅ™idánoJiž běží nÄ›jaká jiná akceKe zmÄ›nÄ› zásad, kdo se může pÅ™ihlaÅ¡ovat k tomuto poÄítaÄi, je vyžadováno ověření.K vyhledání sféry Kerberos je vyžadováno ověření.K pÅ™idání tohoto stroje do sféry nebo domény je vyžadováno ověření.K odebrání tohoto stroje ze sféry nebo domény je vyžadováno ověření.NezdaÅ™ilo se pÅ™idat do této sféryPÅ™i spuÅ¡tÄ›ní v bezobslužném režimu není možné požádat o hesloZmÄ›nit zásady pÅ™ihlaÅ¡ováníPoÄítaÄ urÄený OU (organizaÄní jednotka) DN (rozliÅ¡ovací název), ke kterému se má pÅ™ipojitNastavený příkaz není platný: %sNastavený příkaz nebyl nalezen: %sNezdaÅ™ilo se ověřit jako uživatel %sNezdaÅ™ilo se zmÄ›nit povolená pÅ™ihlaÅ¡ováníNezdaÅ™ilo se pÅ™ipojit ke službÄ› sféryNezdaÅ™ilo se pÅ™ipojit k systémové sbÄ›rniciNezdaÅ™ilo se vytvoÅ™it soubor mezipamÄ›ti pro pověření: %s: %sNezdaÅ™ilo se vytvoÅ™it pracovní složku: %s: %sNezdaÅ™ilo se vytvoÅ™it soketNezdaÅ™ilo se vytvoÅ™it pár soketů: %sNezdaÅ™ilo se vyhledat sféryNezdaÅ™ilo se inicializovat KerberosNezdaÅ™ilo se pÅ™idat do sféryNezdaÅ™ilo se opustit sféruNezdaÅ™ilo se naÄíst službu sféryNezdaÅ™ilo se zpravovat uživatelské jméno: %sNezdaÅ™ilo se dotázat na heslo: %sNezdaÅ™ilo se Ätení z mezipamÄ›ti pověřeníNezdaÅ™ilo se pÅ™eÄíst pověření pro KerberosNezdaÅ™ilo se pÅ™eložit pověření z mezipamÄ›tiNezdaÅ™ilo se spustit realmdNezdaÅ™ilo se vybrat pověření pro KerberosNezdaÅ™ilo se zapsat nastavení: %sOdepřít pÅ™ihlášení vÅ¡em úÄtům z této sféryOdepřít uživatelům pÅ™ihlášeníVyhledat dostupné sféryVyhledat sféruNedotazovat se na vstupDoména %s se nenachází v souboru s nastavením sssd.confPovolení SSSD v nsswitch.conf a PAM selhalo.Registrovat tento stroj do sféryRegistrace v této sféře pomocí hesla není podporovánaSelhala zmÄ›na povolených pÅ™ihlášení. Viz diagnostika.Selhalo vyhledání sféry. Viz diagnostika.Selhala registrace stroje do sféry. Viz diagnostika.Selhalo zruÅ¡ení registrace stroje ve sféře. Viz diagnostika.Skupiny nelze zadat souÄasnÄ› s -a nebo --allRežim instalace do zadané složkyInstalují se potÅ™ebné balíÄkyNeplatný argument pÅ™ihlášení „%s“ obsahuje nepodporované znaky.Neplatný pÅ™ihlaÅ¡ovací argument%s%s%s neodpovídá pÅ™ihlaÅ¡ovacímu formátu.Neplatné heslo pro uživatele %sNeplatná hodnota pro volbu %s: %sPÅ™idat automaticky bez heslaPÅ™idat stroj do sféryPÅ™idat pomocí pÅ™ednastaveného jednorázového heslaPÅ™idání se do domény pomocí jednorázového hesla je podporováno pouze pomocí Älenského softwaru „%s“PÅ™idání se do domény pomocí uživatelského hesla je podporováno pouze pomocí Älenského softwaru „%s“PÅ™idání do této sféry není podporovánoPÅ™idání do této sféry pomocí pověření z mezipamÄ›ti není podporovánoPÅ™idání do této sféry pomocí hesla není podporovánoPÅ™idání do této sféry bez pověření není podporovánoLDAP na tomto systému nepodporuje přípojení pÅ™es UDPOpuÅ¡tÄ›ní této sféry není podporovánoOpuÅ¡tÄ›ní této sféry pomocí pověření z mezipamÄ›ti není podporovánoOpuÅ¡tÄ›ní této sféry bez pověření není podporovánoVypsat známé sféryNejsou nainstalované potÅ™ebné balíÄky: %sK opuÅ¡tÄ›ní této domény je zapotÅ™ebí pověřeníNebyla nalezena žádná výchozí sféraS -a nebo --all by nemÄ›lo být zadané žádné pÅ™ihlášeníŽádná taková sféra nebyla nalezenaŽádná taková sféra nebyl nalezena: %sNejste oprávnÄ›ni k provedení této akceDo této domény aktuálnÄ› nepÅ™idánoV tuto chvíli není pÅ™idáno do této sféryNení pÅ™idáno do této doményOperace byla zruÅ¡ena.Heslo pro uživatele %s: Povolit pÅ™ihlášení libovolnému úÄtu ze sféryPovolit uživatelům pÅ™ihlášeníProces byl ukonÄen signálem: %dSféra nepodporuje automatické ÄlenstvíSféra nepodporuje Älenství pomocí jednorázového heslaSféra nepodporuje Älenství pomocí heslaSféra, pro kterou se má povolit/zakázat pÅ™ihlaÅ¡ováníZe serveru byla pÅ™ijata neplatná nebo nepodporovaná data NetlogonOdebrat poÄítaÄ ze sféryOdebrat stroj ze sféryNastavit uživatelského principála pro úÄet poÄítaÄeZobrazit vÅ¡echny nalezené sféryZobrazit vÅ¡echny sféryZobrazit jen názvyByl pÅ™eskoÄen příkaz: %sKonkrétní pÅ™ihlášení musí být zadané s --withdrawZadejte jednu sféru, do které se má pÅ™idatZadejte konkrétní uživatele, kteří se mají pÅ™idat nebo odebrat ze seznamu povolenýchZadání odepÅ™ení bez --all se už nepoužívá. Použijte „realm permit --withdraw“Argument --no-password nelze použít zároveň s --one-time-password nebo --userArgument --one-time-password nelze použít zároveň s --userPÅ™i odpírání pÅ™ihlášení nelze použít argumenty --withdraw nebo -xPoskytovatel Samba nemůže omezit povolená pÅ™ihlášení.PÅ™idávání do domény IPA není podporováno s argumentem computer-ou.Následující balíÄky nejsou dostupné k instalaci: %sOperace byla zruÅ¡enaSféra neumožňuje zadávání pÅ™ihlaÅ¡ovacích údajůPovažovat názvy za skupinamy, které se povolujíVypnout automatické mapování IDNelze automaticky pÅ™idat do doményZruÅ¡it registraci tohoto stroje ve sféřeZruÅ¡ení registrace v této sféře pomocí hesla není podporovánoZruÅ¡ení registrace v této sféře pomocí tajného údaje není podporovánoNepodporovaná pověření pro pÅ™idání do doményNepodporovaný nebo neznámý Älenský software „%s“VeÅ¡kerá pÅ™ihlášení odepÅ™ete pomocí --allPoužít konkrétní klientský softwarePoužít konkrétní Älenský softwarePoužít konkrétní serverový softwareUživatelské jméno, které se má použít pro registraciUživatelské jméno, které se má použít pÅ™i odebráníPodrobný výstupZruÅ¡it úÄtu ze sféry oprávnÄ›ní se pÅ™ihlaÅ¡ovatrealmd-0.17.1/po/da.gmo0000644003225100322510000003323414315277003015071 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D‘q2 26 7i ¡ (Á "ê # !^1!;!OÌ!Q"%n"<”"Ñ"ä"$#*&#Q# l#'#$µ#4Ú#,$<$ V$w$ –$·$Ö$$ñ$"%$9%'^%%†%)¬%Ö%&î%#&!9&[&m&Œ&ž&4¸&6í&"$'LG'0”'-Å'5ó'C)(+m(/™(É(Hè(81)j)#…)&©)Ð)0é)g*e‚*3è*Q+On+E¾+9,.>,Lm,@º,û,*-4:-!o-+‘-½- Ú-+û-/'.-W.….¤.¼."Ñ.ô.$/.,/E[/>¡/#à/>0C0^0%x0ž0½0Ï0ß0,ô0!1H?1Lˆ1UÕ1A+2Dm25²2Uè2>>3}3-–3&Ä3$ë3*41;4Zm4RÈ4<57X5#5´5!Ñ5ó5$6!56W63h6s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2019-03-08 19:02+0000 Last-Translator: scootergrisen Language-Team: Danish (http://www.transifex.com/freedesktop/realmd/language/da/) Language: da MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Et domæne med dette navn er allerede konfigureretAdministratornavn eller adgangskode er ikke gyldigHar allerede domæne %s i sssd.conf-konfigurationsfilenAllerede sluttet til et domæneAllerede tilsluttet et andet domæne: %sAllerede sluttet til dette domæneUdfører allerede en anden handlingGodkendelse er krævet for at ændre politikken for hvem der kan logge ind pÃ¥ denne computer.Godkendelse er krævet for at registrere et kerberosomrÃ¥deGodkendelse er krævet for at slutte denne maskine til et omrÃ¥de eller domæneGodkendelse er krævet for at fjerne denne computer fra et omrÃ¥de eller domæne.Kan ikke slutte sig til dette omrÃ¥deKan ikke anmode om adgangskode nÃ¥r tilstanden er unattendedÆndr loginpolitikComputer Ou DN at slutte tilKonfigureret kommando er ugyldig: %sKonfigureret kommando blev ikke fundet: %sKunne ikke godkende som %sKunne ikke ændre tilladte loginKunne ikke forbinde til omrÃ¥detjenesteKunne ikke forbinde til systembussenKunne ikke oprette akkreditiv-mellemlagerfil: %s: %sKunne ikke oprette kørselstidsmappe: %s: %sKunne ikke oprette sokkelKunne ikke oprette sokkelpar: %sKunne ikke registrere omrÃ¥derKunne ikke initialisere kerberosKunne ikke sluttet til omrÃ¥deKunne ikke forlade omrÃ¥deKunne ikke indlæse omrÃ¥detjenestenKunne ikke fortolke brugernavn: %sKunne ikke anmode om adgangskode: %sKunne ikke læse akkreditiv-mellemlagerKunne ikke læse KerberosakkreditiverKunne ikke slÃ¥ akkreditiv-mellemlager opKunne ikke køre realmdKunne ikke vælge KerberosakkreditiverKunne ikke skrive konfiguration: %sNægt alle login for omrÃ¥dekontoNægt brugerloginRegistrer tilgængelig omrÃ¥deRegistrer omrÃ¥deSpørg ikke efter inddataHar ikke domænet %s i sssd.conf-konfigurationsfilenAktivering af SSSD i nsswitch.conf og PAM mislykkedes.Tilslut denne maskine i et omrÃ¥deTilmelding af dette omrÃ¥de med brug af en adgangskode er ikke understøttetKunne ikke ændre tilladte login. Se diagnostik.Kunne ikke registrere omrÃ¥de. Se diagnostik.Kunne ikke tilmelde maskine i omrÃ¥de. Se diagnostik.Kunne ikke fjerne tilmelding af maskine fra domæne. Se diagnostik.Grupper mÃ¥ ikke angives med -a eller --allInstallationstilstand for et specifikt præfiksInstallerer nødvendige pakkerUgyldig loginparameter »%s« indeholder tegn der ikke er understøttet.Ugyldig loginparameter%s%s%s matcher ikke loginformatet.Ugyldig adgangskode for %sUgyldig værdi for tilvalget %s: %sTilslut automatisk uden en adgangskodeSlut maskine til omrÃ¥deTilslut via en forhÃ¥ndsvalgt engangsadgangskodeTilslutning til et domæne med en engangs adgangskode er kun understøttet med »%s«-medlemsprogrammetTilslutning til et domæne med en brugeradgangskode er kun understøttet med »%s«-medlemsprogrammetTilslutning til dette omrÃ¥de er ikke understøttetTilslutning til dette omrÃ¥de med et akkreditiv-mellemlager er ikke understøttetTilslutning til dette omrÃ¥de via en hemmelighed (secret) er ikke understøttetTilslutning til dette omrÃ¥de uden akkreditiver er ikke understøttetLDAP pÃ¥ dette system understøtter ikke UDP-forbindelserAt forlade dette omrÃ¥de er ikke understøttetAt forlade dette omrÃ¥de via et akkreditiv-mellemlager er ikke understøttetAt forlade dette omrÃ¥de uden akkreditiver er ikke understøttetVis kendte omrÃ¥derNødvendige pakker er ikke installeret: %sSkal bruge akkreditiver for at forlade dette domæneIntet standardomrÃ¥de registreretIngen login skal angives med -a eller --allIntet sÃ¥dant omrÃ¥de fundetIntet sÃ¥dant omrÃ¥de fundet: %sIkke godkendt til at udføre denne handlingEr i øjeblikket ikke sluttet til dette domæneEr i øjeblikket ikke sluttet til dette realmIkke sluttet til dette domæneOperation blev afbrudt.Adgangskode for %s: Tillad alle login for omrÃ¥dekontoTillad brugerloginProces blev afsluttet med signal: %dRealm understøtter ikke automatisk medlemskabRealm understøtter ikke medlemskab via brug af en engangsadgangskodeRealm understøtter ikke medlemskab med brug af en adgangskodeOmrÃ¥de at tillade/nægte login forModtog ugyldig eller ej understøttet Netlogon-data fra serverFjern computer fra omrÃ¥deFjern maskine fra omrÃ¥deAngiv hovedbruger for computerkontoenVis alle registrerede omrÃ¥derVis alle omrÃ¥derVis kun navneneUdeladt kommando: %sSpecifikke login skal angives med --withdrawAngiv et omrÃ¥de at tilslutteAngiv specifikke brugere at tilføje eller fjerne fra den tilladte listeAngivelse af deny uden --all er forældet. Brug omrÃ¥detilladelse --withdrawParameteren --no-password kan ikke bruges sammen med --one-time-password eller --userParameteren --one-time-password kan ikke bruges sammen med --userParametrene --withdraw eller -x kan ikke bruges uden at nægte loginSambaleverandøren kan ikke begrænse tilladte login.Argumentet computer-ou er ikke understøttet, nÃ¥r der tilsluttes til et IPA-domæne.De følgende pakker er ikke tilgængelige for installation: %sOperationen blev afbrudtOmrÃ¥det tillader ikke specificering af loginOpfat navne som grupper som at tilladeSluk for automatisk id-oversættelseKan ikke automatisk tilslutte til domænetFjern tilslutning af denne maskine fra et omrÃ¥deFjernelse af tilmelding for dette omrÃ¥de med brug af en adgangskode er ikke understøttetFjernelse af tilmelding for dette omrÃ¥de med en hemmelighed er ikke understøttetEj understøttet akkreditiver for tilslutning til et domæneEj understøttet eller ukendt medlemskabsprogram »%s«Brug --all til at nægte alle loginBrug specifikt klientprogramBrug specifikt medlemskabsprogramBrug specifikt serverprogramBrugernavn at bruge for indskrivningBrugernavn at bruge for fjernelseUddybende uddataTræk tilladelse tilbage for omrÃ¥dekonto til loginrealmd-0.17.1/po/remove-potcdate.sin0000644003225100322510000000066014315276770017621 0ustar00sbosesbose00000000000000# Sed script that remove the POT-Creation-Date line in the header entry # from a POT file. # # The distinction between the first and the following occurrences of the # pattern is achieved by looking at the hold space. /^"POT-Creation-Date: .*"$/{ x # Test if the hold space is empty. s/P/P/ ta # Yes it was empty. First occurrence. Remove the line. g d bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } realmd-0.17.1/po/ca.po0000644003225100322510000005116114315277002014722 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Antoni Bella Pérez , 2019 # Robert Antoni Buj Gelonch , 2017 # Robert Antoni Buj Gelonch , 2015 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2019-09-29 17:16+0000\n" "Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan (http://www.transifex.com/freedesktop/realmd/language/" "ca/)\n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Descobreix el reialme" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Es requereix autenticació per descobrir un reialme kerberos" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Uneix la màquina al reialme" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Es requereix autenticació per unir aquesta màquina a un reialme o domini" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Suprimeix la màquina del reialme" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Es requereix autenticació per suprimir aquesta màquina d'un reialme o domini." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Canvia la política d'inici de sessió" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Es requereix autenticació per canviar la política quant a qui pot iniciar la " "sessió en aquest ordinador." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "El procés es va finalitzar amb el senyal: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "L'operació es va cancel·lar" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "No s'ha trobat l'ordre configurada: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Ordre ignorada: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "L'ordre configurada no és vàlida: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" "S'han rebut dades no vàlides o no compatibles de Netlogon des del servidor" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "En aquest sistema, LDAP no accepta les connexions UDP" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Programari de membres no compatible o desconegut «%s»" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Ja es va unir a un domini" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "El nom de l'administrador o la contrasenya no són vàlids" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Actualment no s'ha unit a aquest domini" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Es necessiten credencials per abandonar aquest domini" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "No s'ha pogut escriure a la sortida de configuració: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "No esteu autoritzat per realitzar aquesta acció" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "L'operació es va cancel·lar." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "No s'ha pogut inscriure la màquina al reialme. Vegeu els diagnòstics." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "No s'ha pogut inscriure la màquina al domini. Vegeu els diagnòstics." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "En aquest reialme no s'admet la unió sense credencials" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "En aquest reialme no s'admet l'abandonament sense credencials" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "En aquest reialme no s'admet la unió amb la memòria cau de les credencials" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "En aquest reialme no s'admet l'abandonament amb la memòria cau de les " "credencials" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "En aquest reialme no s'admet la unió amb un secret" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" "En aquest reialme no s'admet l'anul·lació de la inscripció amb un secret" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "En aquest reialme no s'admet la inscripció amb una contrasenya" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" "En aquest reialme no s'admet l'anul·lació de la inscripció amb una " "contrasenya" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Aquest reialme no admet la unió" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Aquest reialme no admet l'abandonament" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Ja s'està executant una altra acció" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Ja es va unir a un altre domini: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" "No s'han pogut canviar els inicis de sessió permesos. Vegeu els diagnòstics." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "El reialme no admet l'especificació dels inicis de sessió" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "L'argument no vàlid d'inici de sessió%s%s%s no coincideix amb el format " "d'inici de sessió." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Els següents paquets no estan disponibles per a la instal·lació: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "No estan instal·lats els paquets necessaris: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "S'estan instal·lant els paquets necessaris" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "No s'ha pogut descobrir el reialme. Vegeu els diagnòstics." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "No s'ha unit a aquest domini" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "El proveïdor de Samba no pot restringir els inicis permesos de sessió." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "L'argument no vàlid d'inici de sessió «%s» conté caràcters no admesos." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "No s'ha pogut habilitar SSSD a nsswitch.conf i PAM." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "No s'ha pogut unir automàticament al domini" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "La unió a un domini amb una contrasenya d'un sol ús només és compatible amb " "el programari de membres «%s»" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "La unió a un domini amb una contrasenya d'usuari només és compatible amb el " "programari de membres «%s»" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Credencials no admeses per unir-se a un domini" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Ja es va unir a aquest domini" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Ja s'ha configurat un domini amb aquest nom" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Ja hi ha el domini %s al fitxer de configuració sssd.conf" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "No hi ha el domini %s al fitxer de configuració sssd.conf" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "L'argument computer-ou no s'admet quan s'uneix a un domini IPA." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "L'argument computer-ou no s'admet quan s'uneix a un domini IPA." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Actualment no s'ha unit a aquest reialme" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Descobreix tots els reialmes disponibles" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Inscriu aquesta màquina a un reialme" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Anul·la la inscripció d'aquesta màquina d'un reialme" #: tools/realm.c:43 msgid "List known realms" msgstr "Llista tots els reialmes coneguts" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Permet els inicis de sessió dels usuaris" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Denega els inicis de sessió dels usuaris" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Valor no vàlid per a l'opció %s: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Mode d'instal·lació a un prefix específic" #: tools/realm.c:215 msgid "Verbose output" msgstr "Sortida detallada" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "No demanis res" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "No s'ha pogut connectar amb el servei del reialme" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "No s'ha pogut carregar el servei del reialme" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "No s'ha pogut connectar al bus del sistema" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "No s'ha pogut crear la parella dels sockets: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "No s'ha pogut crear el socket" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "No s'ha pogut executar realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "No s'ha pogut crear el directori de temps d'execució: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" "No s'ha pogut crear el fitxer de memòria cau de les credencials: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "No s'ha pogut resoldre la memòria cau de les credencials" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Contrasenya no vàlida per %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "No s'ha pogut autenticar com %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "No s'ha pogut analitzar sintàcticament el nom d'usuari: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "No s'ha pogut llegir la memòria cau de les credencials" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "No s'ha pogut inicialitzar el kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "No es pot demanar una contrasenya quan s'executa en mode desatès" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Contrasenya per %s: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "No s'ha pogut demanar la contrasenya: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" "El reialme no és compatible amb la pertinença mitjançant una contrasenya" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" "El reialme no és compatible amb la pertinença mitjançant una contrasenya " "d'un sol ús" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "No s'han pogut seleccionar les credencials del kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "No s'han pogut llegir les credencials del kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "El reialme no és compatible amb la pertinença automàtica" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "No s'han pogut descobrir els reialmes" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Sense domini predeterminat del descobriment" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "No s'ha trobat el reialme: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Mostra tots els reialmes descoberts" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Mostra únicament els noms" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Utilitza el programari específic de client" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Utilitza el programari específic de membre" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Utilitza el programari específic de servidor" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Mostra tots els reialmes" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "No s'ha pogut unir al reialme" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "No s'ha pogut unir a aquest reialme" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "No s'ha trobat el reialme" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Desactiva l'assignació automàtica d'id." #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Utilitza el programari específic de client" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "OU i DN de l'ordinador a unir-se" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Uneix-te automàticament sense contrasenya" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Uneix-te amb una contrasenya preestablerta d'un sol ús" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Utilitza el programari específic de client" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Utilitza el programari específic de servidor" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Nom d'usuari per utilitzar en la inscripció" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Estableix el principal usuari per al compte de l'ordinador" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Especifica un reialme a unir-se" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "L'argument --no-password no pot utilitzar-se amb --one-time-password o --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "L'argument --one-time-password no es pot utilitzar amb --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "No s'ha pogut abandonar al reialme" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Suprimeix l'ordinador del reialme" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Nom d'usuari per utilitzar en l'eliminació" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "No s'han pogut canviar els inicis permesos de sessió" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Permet qualsevol compte d'inici de sessió del reialme" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Denega qualsevol compte d'inici de sessió del reialme" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" "Permet la retractació per a un compte del reialme per iniciar la sessió" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Tracta els noms com a grups als quals se'ls dóna permissió" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Reialme per permetre o denegar connexions" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "No s'ha d'especificar cap inici de sessió amb -a o --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "Els arguments --withdraw o -x no es poden utilitzar quan es realitza la " "denegació dels inicis de sessió" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "S'han d'especificar els inicis específics de sessió amb --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Els grups no poden especificar-se amb -a o --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Utilitzeu --all per a denegar tots els inicis de sessió" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Especifica els usuaris específics per afegir o treure de la llista dels " "permesos" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "L'especificació de la denegació sense --all està en desús. Utilitzeu realm " "permit --withdraw" realmd-0.17.1/po/sk.gmo0000644003225100322510000000104614315277003015116 0ustar00sbosesbose00000000000000Þ•$,8ì9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Slovak (http://www.transifex.com/freedesktop/realmd/language/sk/) Language: sk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3); realmd-0.17.1/po/es.gmo0000644003225100322510000003363114315277003015115 0ustar00sbosesbose00000000000000Þ•~ ­ü° -± #ß / 3 $N s ‘ S° 7 D< J Ì <ã  4 K j ‹ § !È ê - )7ax˜±Îâ÷ 4U"t!—¹$Íò->Wf-~.¬Û6ú31*e38Ä,ý!*L<j=§å%ý#%9]_Y½#<;2x7«4ã#<<7y±(Ã(ì.1`t%Œ#²"Öù,>]&p+—;Ã2ÿ29RŒ§/Áñ 01Dv?HÐL;fA¢4äE=_*¹%ä' "28U6Ž,Å/ò"? \}šº×,æ¢/¶:æ@! b !{  #» cß >C!J‚!OÍ!"G;"&ƒ"ª"&Ä"(ë"#82#)k#&•#@¼#;ý#9$&T$#{$Ÿ$¿$Ø$'ö$,%'K%*s%.ž%-Í%û%5&)L&9v&%°&Ö&ñ& '@'.O'~'Aš'PÜ'8-(>f(B¥(7è(' )"H)Uk)NÁ)*+/*[*8p*n©*j+)ƒ+K­+;ù+;5,/q,)¡,KË,;-S-%o-1•-1Ç->ù-8. U.1v.)¨.)Ò.ü./5/:J/&…/&¬/-Ó/H09J07„0J¼011971%q1—1°1É1GÛ1"#2GF2QŽ2Qà2;23On3I¾3F4BO4’47¬4-ä4+5>5A\5;ž55Ú5B64S6(ˆ6'±6%Ù6&ÿ6&&7M7:^7q+zB?T0D8NY iaVl$' @sQFA]x`tHC<-X5} c 6 [\7P 1dG_!uo;EMh{&W2K,*LU9Ik:~SwJmr^yRnv#b)(43%|Ofejp>/"g.Z=A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 15:03+0000 Last-Translator: Stef Walter Language-Team: Spanish (http://www.transifex.com/freedesktop/realmd/language/es/) Language: es MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Ya está configurado un dominio con este nombreEl nombre o la contraseña del administrador no es válidoEl dominio %s ya está en el archivo de configuración sssd.confYa se unió a un dominioYa se ha unido a otro dominio: %sYa se ha unido a este dominioYa se está ejecutando otra acciónPara cambiar la política sobre quién puede iniciar sesión en este equipo, necesita autenticarse.Se requiere autenticación para descubrir un reino de KerberosSe requiere autenticación para unir este equipo a un reino o a un dominioSe requiere autenticación para quitar este equipo de un reino o de un dominio.No se puede unir a este reinoNo se puede solicitar una contraseña al ejecutarse en modo desatendidoCambiar política de inicio de sesiónOU DN del equipo que unirLa orden configurada no es válida: %sNo se encontró la orden configurada: %sNo se pudo autenticar como %sNo se pudieron cambiar los inicios de sesión permitidosNo se pudo conectar al servicio del reinoNo se pudo conectar al bus del sistemaNo se pudo crear el archivo de la caché de credenciales: %s: %sNo se pudo crear la carpeta en tiempo de ejecución: %s: %sNo se pudo crear el socketNo se pudo crear el par del socket: %sNo se pudieron descubrir los reinosNo se pudo inicializar KerberosNo se pudo unir al reinoNo se pudo abandonar el reinoNo se pudo cargar el servicio del reinoNo se pudo analizar el nombre de usuario: %sNo se pudo solicitar la contraseña: %sNo se pudo leer la caché de la credencialNo se pudieron leer las credencias de KerberosNo se pudo resolver la caché de credencialesNo se pudo ejecutar realmdNo se pudieron seleccionar las credencias de KerberosNo se pudo escribir la configuración: %sDenegar el inicio de sesión a cualquier cuenta del reinoDenegar inicios de sesión de usuarioDescubrir reino disponibleDescubrir reinoNo preguntarNo tiene al dominio %s en el archivo de configuración sssd.confFalló al activar SSSD en nsswitch.conf y PAM.Unir este equipo a un reinoNo estaÌ soportado el unirse a este reino usando una contraseñaFalló al cambiar los inicios de sesión permitidos. Consulte los diagnósticos.FalloÌ al descubrir reino. Consulte los diagnoÌsticos.Falló al unir el equipo al reino. Consulte los diagnósticos.Falló al sacar el equipo del dominio. Consulte los diagnósticos.No se pueden especificar los grupos con -a ni con --allInstalar modo en un prefijo específicoInstalando los paquetes necesariosEl argumento de inicio de sesión «%s» no válido contiene caracteres no soportadosEl argumento%s%s%s no válido no coincide con el formato de inicio de sesión.Contraseña no válida para %sUnirse automáticamente sin una contraseñaUnir equipo al reinoUnirse con una contraseña preestablecida de un solo usoUnirse a un dominio con una contraseña de un solo uso solo está soportado con el software del miembro «%s»Unirse a un dominio con una contraseña de usuario solo está soportado con el software del miembro «%s»No está soportado el unirse a este reinoNo está soportado el unirse a este reino usando una caché de credencialesNo está soportado el unirse a este reino usando un secretoNo estaÌ soportado el unirse a este reino sin credencialesEn este sistema, LDAP no soporta conexiones UDPNo está soportado el salir de este reinoNo está soportado el salir de este reino usando una caché de credencialesNo estaÌ soportado el salir de este reino sin credencialesListar los reinos conocidosPaquetes necesarios no instalados: %sNecesita credenciales para abandonar este dominioNo se ha descubierto ningún reino predeterminadoNo se deben especificar inicios de sesión con -a ni con --allNo se ha encontrado el reinoNo se ha encontrado el reino: %sNo tiene autorización para realizar esta acciónActualmente no se ha unido a este dominioActualmente no se ha unido a este dominioNo se ha unido a este dominioSe canceló la operación.Contraseña para %s:Permitir el inicio de sesión a cualquier cuenta del reinoPermitir inicios de sesión de usuarioEl proceso finalizó con la señal: %dEl reino no soporta los miembros automáticosEl reino no soporta que los miembros usen una contraseña de un solo usoEl reino no soporta que los miembros usen una contraseñaReino en el que permitir/denegar los inicios de sesiónSe han recibido datos de Netlogon no válidos o no soportados del servidorQuitar equipo del reinoQuitar equipo del reinoEstablecer el usuario principal para la cuenta del equipoMostrar todos los reinos descubiertosMostrar todos los reinosSolo mostrar los nombresOrden omitida: %sLos inicios de sesión específicos se deben especificar con --withdrawEspecificar un reino al que unirseEspecificar los usuarios que añadir o quitar de la lista de permitidosEspecificar la denegación con --all está obsoleto. Use realm permit --withdrawNo se puede usar el argumento --no-password con --one-time-password ni con --userNo se puede usar el argumento--one-time-password con --userNo se pueden usar los argumentos --withdraw ni -x al denegar inicios de sesiónEl proveedor Samba no puede restringir los inicios de sesión permitidos.El argumento del equipo no está soportado al unirse a un dominio IPA.Los siguientes paquetes no están disponibles para instalarlos: %sSe canceló la operaciónEl reino no permite los inicios de sesión específicosTratar nombres como grupos a los que permitirNo se pudo unir automáticamente al dominioSacar este equipo de un reinoNo estaÌ soportado el salir de este reino usando una contraseñaNo está soportado el salir de este reino usando un secretoNo se admiten las credenciales para unirse al dominioEl software de membresía «%s» es desconocido o no es compatibleUsar --all para denegar todos los inicios de sesiónUtilizar un software cliente específicoUsar software de membresía específicoUsar software de servidor específicoNombre de usuario que usar para unirseNombre de usuario que usar para quitarSalida detalladaQuitar permiso para iniciar sesión a una cuenta del reinorealmd-0.17.1/po/az.po0000644003225100322510000003347014315277002014754 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Azerbaijani (http://www.transifex.com/freedesktop/realmd/" "language/az/)\n" "Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/vi.po0000644003225100322510000003346014315277003014760 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Vietnamese (http://www.transifex.com/freedesktop/realmd/" "language/vi/)\n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/zh_CN.po0000644003225100322510000004437314315277003015350 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # bnw, 2015 # Christopher M , 2013 # Christopher M , 2013 # 5b4c6a53e2e9f6d66be0455f2c8d22a2, 2015 # Mingye Wang , 2015 # e0c668032ced196bd60f2b6a070d982d_8f72ae0, 2013 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 15:16+0000\n" "Last-Translator: Mingye Wang \n" "Language-Team: Chinese (China) (http://www.transifex.com/freedesktop/realmd/" "language/zh_CN/)\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "探索领域" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "æœç´¢ Kerberos 领域需è¦è®¤è¯" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "将计算机加入领域" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "将此计算机加入领域或域需è¦è®¤è¯" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "从领域中移除计算机" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "从领域或域中移除此计算机需è¦è®¤è¯ã€‚" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "å˜æ›´ç™»å½•ç­–ç•¥" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "更改哪些用户å¯ç™»å½•此计算机的策略需è¦è¿›è¡Œè®¤è¯ã€‚" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "进程被信å·ç»ˆæ­¢ï¼š%d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "æ“ä½œå·²å–æ¶ˆ" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "未找到已é…置的命令:%s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "跳过命令:%s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "å·²é…ç½®çš„å‘½ä»¤ä¸æ­£ç¡®ï¼š%s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "从æœåŠ¡å™¨æ”¶åˆ°æ— æ•ˆçš„ Netlogon æ•°æ®" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "本系统的 LDAP 䏿”¯æŒ UDP 连接" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "䏿”¯æŒæˆ–未知的æˆå‘˜ç®¡ç†è½¯ä»¶â€œ%sâ€" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "已加入一个域" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "管ç†å‘˜ç”¨æˆ·åæˆ–å¯†ç æ— æ•ˆ" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "当剿œªåŠ å…¥è‡³è¯¥åŸŸä¸­" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "需è¦å‡­æ®ä»¥ç¦»å¼€è¯¥åŸŸ" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "无法写入é…置:%s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "没有足够的æƒé™æ‰§è¡Œè¯¥æ“作" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "æ“ä½œå·²å–æ¶ˆã€‚" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "在领域中登记计算机失败。请查看诊断信æ¯ã€‚" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "ä»ŽåŸŸä¸­å–æ¶ˆç™»è®°è®¡ç®—机失败。请查看诊断信æ¯ã€‚" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "䏿”¯æŒæ²¡æœ‰å‡­æ®å°±åŠ å…¥åˆ°è¿™ä¸ªé¢†åŸŸ" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "䏿”¯æŒæ— è¯ä¹¦ç¦»å¼€æ­¤åŸŸ" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "䏿”¯æŒä½¿ç”¨è¯ä¹¦ç¼“存加入此域" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "䏿”¯æŒä½¿ç”¨è¯ä¹¦ç¼“存离开此域" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "䏿”¯æŒä½¿ç”¨ç§˜å¯†åŠ å…¥æ­¤åŸŸ" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "䏿”¯æŒä½¿ç”¨æœºå¯†(secret)æ¥å–消登记这个领域" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "䏿”¯æŒä½¿ç”¨å¯†ç æ¥ç™»è®°åˆ°è¿™ä¸ªé¢†åŸŸ" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "䏿”¯æŒä½¿ç”¨å¯†ç æ¥å–消登记这个领域" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "䏿”¯æŒåŠ å…¥æ­¤åŸŸ" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "䏿”¯æŒç¦»å¼€æ­¤åŸŸ" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "å·²ç»åœ¨è¿è¡Œå¦ä¸€ä¸ªæ“作" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "已加入å¦ä¸€ä¸ªåŸŸï¼š%s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "å˜æ›´è®¸å¯çš„登录å失败。请查看诊断。" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "这个领域ä¸å…许指定的登录å" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "无效的登录å傿•°%s%s%s ä¸Žç™»å½•åæ ¼å¼ä¸ç¬¦ã€‚" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "无法获å–安装这些软件包:%s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "å¿…è¦è½¯ä»¶åŒ…未安装:%s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "正在安装必è¦çš„软件包" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "æœç´¢é¢†åŸŸå¤±è´¥ã€‚请查看诊断信æ¯ã€‚" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "尚未加入该域" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Samba æä¾›ç¨‹åºæ— æ³•对å…许的登录å进行é™åˆ¶ã€‚" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "æ— æ•ˆç™»å½•å‚æ•°ã€Œ%sã€ï¼Œå«æœ‰ä¸æ”¯æŒçš„字符。" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "在 nsswitch.conf å’Œ PAM 中å¯ç”¨ SSSD 失败。" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "无法自动加入域" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "åªæœ‰â€œ%s†æˆå‘˜ç®¡ç†è½¯ä»¶æ”¯æŒé€šè¿‡ä¸€æ¬¡å¯†ç æ€§åŠ å…¥åŸŸ" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "åªæœ‰â€œ%sâ€æˆå‘˜ç®¡ç†è½¯ä»¶æ”¯æŒé€šè¿‡ä¸€ä¸ªç”¨æˆ·å¯†ç åŠ å…¥åŸŸ" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "䏿”¯æŒçš„域加入凭æ®" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "已加入该域" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "åŒå的域已ç»é…ç½®" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "sssd.conf ä¸­å·²ç»æœ‰åŸŸ %s" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "sssd.conf 中未包å«åŸŸ %s" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "在加入 IPA åŸŸæ—¶ä¸æ”¯æŒ computer-ou 傿•°ã€‚" #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "在加入 IPA åŸŸæ—¶ä¸æ”¯æŒ computer-ou 傿•°ã€‚" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "还未加入此域" #: tools/realm.c:40 msgid "Discover available realm" msgstr "æœç´¢å¯ç”¨çš„领域" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "在领域中登记此计算机" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "ä»Žé¢†åŸŸä¸­å–æ¶ˆç™»è®°æ­¤è®¡ç®—机" #: tools/realm.c:43 msgid "List known realms" msgstr "列出已知的领域" #: tools/realm.c:44 msgid "Permit user logins" msgstr "å…许用户登录å" #: tools/realm.c:45 msgid "Deny user logins" msgstr "æ‹’ç»ç”¨æˆ·ç™»å½•å" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "%s 选项无效:%s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "将模å¼å®‰è£…到指定å‰ç¼€" #: tools/realm.c:215 msgid "Verbose output" msgstr "Verbose 输出" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "ä¸æç¤ºè¾“å…¥" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "无法连接领域æœåŠ¡" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "无法加载领域æœåŠ¡" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "无法连接系统总线" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "无法创建套接字对:%s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "无法创建套接字" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "无法è¿è¡Œ realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "无法创建è¿è¡Œç›®å½•:%s:%s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "无法创建è¯ä¹¦ç¼“存文件:%s:%s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "无法解æžå‡­æ®ç¼“å­˜" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "%s çš„å¯†ç æ— æ•ˆ" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "æ— æ³•è®¤è¯ %s " #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "无法解æžç”¨æˆ·å:%s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "无法读物凭æ®ç¼“å­˜" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "无法åˆå§‹åŒ– Kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "未å‚与模å¼è¿è¡Œæ˜¯æ— æ³•æç¤ºå¯†ç " #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "%s 的密ç ï¼š " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "æ— æ³•å¼¹å‡ºè¾“å…¥å¯†ç æç¤ºï¼š%s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "é¢†åŸŸä¸æ”¯æŒä½¿ç”¨å¯†ç çš„æˆå‘˜èº«ä»½æ“作" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "é¢†åŸŸä¸æ”¯æŒä½¿ç”¨ä¸€æ¬¡æ€§å¯†ç çš„æˆå‘˜èº«ä»½æ“作" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "æ— æ³•é€‰å– kerberos è¯ä¹¦" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "æ— æ³•è¯»å– kerberos è¯ä¹¦" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "é¢†åŸŸä¸æ”¯æŒè‡ªåŠ¨çš„æˆå‘˜èº«ä»½æ“作" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "无法找到领域" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "未找到默认的领域" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "未找到该领域:%s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "显示所有已找到的领域" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "åªæ˜¾ç¤ºåç§°" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "使用指定的客户端" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "使用指定的æˆå‘˜ç®¡ç†è½¯ä»¶" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "使用指定的æœåŠ¡ç«¯" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "显示全部领域" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "无法加入领域" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "无法加入此域" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "未找到该领域" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "关闭自动身份映射" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "使用指定的客户端" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "è¦åŠ å…¥çš„è®¡ç®—æœº OU DN" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "无需密ç è‡ªåŠ¨åŠ å…¥" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "使用预设的一次性密ç åŠ å…¥" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "使用指定的客户端" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "使用指定的æœåŠ¡ç«¯" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "用于登记的用户å" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "设置计算机å¸å·çš„主è¦ç”¨æˆ·" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "指定一个待加入的领域" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "--no-password 傿•°ä¸èƒ½å’Œ --one-time-password 或 --user 共用" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "--one-time-password 傿•°ä¸èƒ½ä¸Ž --user 共用" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "无法离开领域" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "从领域中移除计算机" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "用于移除的用户å" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "æ— æ³•å˜æ›´è®¸å¯çš„登录å" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "å…许任æ„åŸŸå¸æˆ·ç™»å½•å" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "æ‹’ç»ä»»æ„åŸŸå¸æˆ·ç™»å½•å" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "æ”¶å›žä¸€ä¸ªåŸŸå¸æˆ·çš„登录å许å¯" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "å°†å称视为è¦å…许的群组列表" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "è¦å…许/æ‹’ç»ç™»å½•å的领域" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "使用 -a 或 --all ä¸èƒ½æŒ‡å®šç™»å½•å" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "æ‹’ç»ç™»å½•åæ—¶ä¸èƒ½ä½¿ç”¨ --withdraw 或 -x 选项" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "指定的登录å必须与 --withdraw 共用" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "使用 -a 或 --all ä¸èƒ½æŒ‡å®šç¾¤ç»„" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "使用 --all æ¥æ‹’ç»æ‰€æœ‰ç™»å½•å" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "指定需è¦ä»Žå…许列表里添加或删除的用户" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "ä¸å¸¦ --all 指定拒ç»å·²è¢«å¼ƒç”¨ï¼›è¯·æ”¹ç”¨ realm permit --withdraw" realmd-0.17.1/po/cy.gmo0000644003225100322510000000100714315277003015111 0ustar00sbosesbose00000000000000Þ•$,8Í9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Welsh (http://www.transifex.com/freedesktop/realmd/language/cy/) Language: cy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3; realmd-0.17.1/po/fi.gmo0000644003225100322510000003326614315277003015110 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,Dªq6 -S 2 ´ .Ò *!!,!gN!2¶!Yé!TC"!˜":º"õ"#%0#%V#|#’##®#'Ò#8ú# 3$T$j$†$›$·$É$Ú$,ú$'%&G%!n%+%¼%(Õ%&þ%*%&"P&s&&¢&-º&Eè&!.'<P'I'6×'A(GP(=˜(#Ö("ú(M)Gk)³)"Ì)%ï)*7+*Zc*]¾*++CH+2Œ+8¿+1ø+)*,AT,8–,Ï,*í,;-T-/l-œ-#¼-5à-6.3M.(.ª. Á.(Î. ÷.$/&=/Ed/)ª/#Ô/Bø/;0U0'j0’0²0È0Û06ð0!'1VI1c 1\2Ma2V¯2B3II3B“3Ö3.ì3(4"D4&g4Ž42ª49Ý415%I51o5!¡5"Ã5$æ56 62B6u6*‹6s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2019-04-15 20:51+0000 Last-Translator: Kimmo Kujansuu Language-Team: Finnish (http://www.transifex.com/freedesktop/realmd/language/fi/) Language: fi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Verkkotunnus, jolla on tämä nimi, on jo määritettyPääkäyttäjän nimi tai salasana ei kelpaaSinulla on jo verkkotunnus %ssssd.conf tiedostossaLiittynyt jo verkkotunnukseenOlet jo liittynyt toiseen verkkotunnukseen: %sOlet jo liittynyt tähän verkkotunnukseenKäytössä on jo toinen toimintoTodennus vaaditaan, jotta voit muuttaa käytäntöä siitä, kuka voi kirjautua tähän tietokoneeseen.Todennus on tarpeen kerberos-alueen löytämiseksiTodennus vaaditaan koneesi liityessä tähän laitteeseen, alueeseen tai verkkotunnukseenTodennus vaaditaan tämän tietokoneen poistamiseksi alueesta tai verkkotunnuksesta.Ei liittymistä tähän alueeseenSalasanaa ei voi pyytää, kun käytät valvomatonta tilaaMuuta kirjautumispolitiikkaaTietokoneen OU DN liitetäänMääritetty komento virheellinen: %sMääritettyä komentoa ei löydy: %sEi voinut todentaa %sSalasanoja ei voitu muuttaaAlueen palveluun ei saatu yhteyttäVäylään ei voitu muodostaa yhteyttäEpäonnistui luoda varmenteen välimuistitiedosto: %s:%sHakemistoa ei voitu luoda: %s:%sEi luotu liitäntääEi luotu liitäntäparia %sAluetta ei löytynytKerberosia ei-voitu alustaaEi voitu liittyäEi voitu poistuaAlueen palvelua ei voitu ladataKäyttäjätunnusta ei voitu jäsentää: %sSalasanaa ei voitu pyytää: %sTunnisteen välimuistia ei voitu lukeaKerberos-tunnuksia ei voitu lukeaEi selvitetty tunnistetietojen välimuistiaEpäonnistui ajaa relamdKerberos-tunnistetietoja ei voitu valitaKonfigurointia ei voitu kirjoittaa: %sKiellä minkä tahansa tilin kirjautuminenKiellä käyttäjän kirjautumisetLöydä saatavillaoleva alueTutustu alueeseenÄlä pyydä syöttöäEi ole verkkotunnusta %ssssd.conf tiedostossaSSSD ottaminen käyttöön nsswitch.confissa ja PAM:ssa epäonnistui.Rekisteröi tämä kone alueeseenTämän alueen rekisteröinti salasanan avulla ei ole tuettuSallittujen kirjautumisten muuttaminen epäonnistui. Katso diagnostiikka.Alueen löytäminen epäonnistui. Katso diagnostiikka.Koneen rekisteröinti alueessa epäonnistui. Katso diagnostiikka.Koneen poistaminen verkkotunnuksesta epäonnistui. Katso diagnostiikka.Ryhmät eivät välttämättä ole määritelty -a- tai --allAsenna tila tiettyyn etuliitteeseenTarvittavien pakettien asentaminenVirheellinen kirjautumisen argumentti '%s' sisältää ei-tuettuja merkkejä.Virheellinen kirjautumisen argumentti %s%s%sei vastaa kirjautumistapaa.Virheellinen salasana %sVirheellinen arvo %svaihtoehto: %sLiity automaattisesti ilman salasanaaLiitä kone alueeseenLiitty käyttämällä ennalta määritettyä salasanaaVerkkotunnukseen liittyminen yhdellä salasanalla tuetaan vain '%s' jäsenyysohjelmistollaVerkkotunnuksen liittäminen käyttäjän salasanaan tuetaan vain '%s' jäsenyysohjelmistollaLiittyminen tähän alueeseen ei ole tuettuTähän alueeseen liittyminen käyttämällä välimuistia ei tuetaTähän alueeseen liittyminen salauksella ei tuetaLiittymistä tähän alueeseen ilman valtuuksia ei tuetaTämän järjestelmän LDAP ei tue UDP-yhteyksiäTämän alueen jättäminen ei ole tuettuTämän alueen jättäminen käyttämättä välimuistia ei tuetaTämän alueen poistamista ilman valtuustietoja ei tuetaLuettelo tunnetuista alueistaTarvittavia paketteja ei ole asennettu: %sTarvitaan käyttöoikeudet lähteäksesi tästä domainistaOletusaluetta ei löydy-a tai --all ei saa määrittää kirjautumisiaTällaista aluetta ei löytynytTällaista aluetta ei löytynyt: %sEt ole valtuutettu suorittamaan tätä toimenpidettäEi tällä hetkellä liitetty tähän verkkotunnukseenEi tällä hetkellä liittyneenä tähän alueeseenEi liittyneenä tähän verkkotunnukseenToiminto peruutettiin.Salasana %s:Salli minkä tahansa tilin kirjautuminenSalli käyttäjän kirjautumisetProsessi lopetettiin signaalilla: %dAlue ei tue automaattista jäsenyyttäAlue ei tue jäsenyyttä käyttämällä kertakäyttöistä salasanaaAlue ei tue jäsenyyttä salasanan avullaAlue sallii/kieltää kirjautumisetVastaanotetut virheelliset tai tuetut Netlogon-tiedot palvelimeltaPoista tietokone alueestaPoista kone alueeltaMääritä tietokoneen pääkäyttäjäNäytä kaikki löydetyt alueetNäytä kaikki alueetNäytä vain nimetOhitettu komento: %sTiettyjä kirjautumisia on määritettävä --withdrawMääritä yksi alue liittymäänMääritä tietyt käyttäjät, joita voit lisätä tai poistaa sallitusta luettelostaKieltämisen määrittäminen ilman --all-arvoa on vanhentunut. Käytä käyttöoikeutta --withdrawEi salasanaa-argumenttia ei voi käyttää kertaluonteisen salasanan tai käyttäjän kanssaKertakäyttöisen salasanan argumenttia ei voi käyttää käyttäjän kanssaWithdraw tai -x-argumentteja ei voi käyttää kirjautumisten kieltämisen yhteydessäSamba-palvelun tarjoaja ei voi rajoittaa sallittuja kirjautumisia.Tietokoneen ou-argumenttia ei tueta, kun se liittyy IPA-verkkotunnukseen.Seuraavat paketit eivät ole käytettävissä asennusta varten: %sToiminto peruutettiinAlue ei salli kirjautumisten määrittämistäKäsittele nimiä ryhminä, jotka sallitSammuta automaattinen id-kartoitusLiity verkkotunnukseen automaattisestiIrrota tämä kone alueestaTätä valintaruutua ei käytetä salasanan avullaTätä valtakirjaa ei voi rekisteröidä salauksen avullaVerkkotunnukseen liittymättömät tunnistetiedotTukematon tai tuntematon ohjelma '%s'Käytä --all kieltääksesi kaikki kirjautumisetKäytä tiettyjä asiakasohjelmiaKäytä tiettyä jäsenohjelmistoaKäytä tiettyä palvelinohjelmistoaKäyttäjätunnus, jota käytetään ilmoittautumiseenPoistamista varten käytettävä käyttäjätunnusTäsmällinen lähtöPoista kirjautumistunnuksen käyttöoikeusrealmd-0.17.1/po/eu.po0000644003225100322510000003346314315277002014755 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Basque (http://www.transifex.com/freedesktop/realmd/language/" "eu/)\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/si.gmo0000644003225100322510000005320214315277003015115 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,Dšqj Sw MË I!]c!PÁ!m"߀"€`#´á#»–$XR%›«%]G&;¥&Pá&P2'Kƒ'oÏ'h?(_¨(|)g…)?í)Y-*U‡*HÝ*^&+L…+YÒ+l,,F™,dà,WE-d-:.a=.OŸ.qï.`a/EÂ/50<>0C{0_¿0g1¯‡1¡72“Ù2µm3­#4YÑ4m+5E™5™ß5‘y6D 7VP7v§7W8ˆv8àÿ8ßà9nÀ:Â/;šò; <w.=\¦=¿>‘Ã>WU?S­?i@^k@~Ê@?IAO‰AYÙAP3Bb„B=çB=%C#cCb‡COêCU:D|D° E¾EZNF•©FT?GT”GwéGZaHD¼H2I-4IjbInÍIÔA domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2013-01-14 15:31+0000 Last-Translator: හෙළබස, 2021 Language-Team: Sinhala (http://www.transifex.com/freedesktop/realmd/language/si/) Language: si MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); මෙම නම සහිත වසමක් දà·à¶±à¶§à¶¸à¶­à·Š වින්â€à¶ºà·à·ƒ à¶šà¶» ඇතපරිපà·à¶½à¶š නම හ෠මුරපදය වලංගු නොවේදà·à¶±à¶§à¶¸à¶­à·Š sssd.conf config ගොනුවේ වසම %s ඇතදà·à¶±à¶§à¶¸à¶­à·Š වසමකට සම්බන්ධ වී ඇතදà·à¶±à¶§à¶¸à¶­à·Š වෙනත් වසමකට සම්බන්ධ වී ඇත: %sදà·à¶±à¶§à¶¸à¶­à·Š මෙම වසමට සම්බන්ධ වී ඇතදà·à¶±à¶§à¶¸à¶­à·Š වෙනත් à¶šà·Šâ€à¶»à·’යà·à·€à¶šà·Š à¶šà·Šâ€à¶»à·’යà·à¶­à·Šà¶¸à¶š වේමෙම පරිගණකයට ලොග් විය à·„à·à¶šà·Šà¶šà·š à¶šà·à¶§à¶¯ යන à¶´à·Šâ€à¶»à¶­à·’පත්තිය වෙනස් කිරීමට සත්â€à¶ºà·à¶´à¶±à¶º à¶…à·€à·à·Šâ€à¶º වේ.kerberos à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·Š සොය෠ගà·à¶±à·“මට සත්â€à¶ºà·à¶´à¶±à¶º à¶…à·€à·à·Šâ€à¶º වේමෙම යන්ත්â€à¶»à¶º à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà¶§ හ෠වසමකට සම්බන්ධ වීමට සත්â€à¶ºà·à¶´à¶±à¶º à¶…à·€à·à·Šâ€à¶º වේමෙම පරිගණකය à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·’න් හ෠වසමකින් ඉවත් කිරීමට සත්â€à¶ºà·à¶´à¶±à¶º à¶…à·€à·à·Šâ€à¶º වේ.මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ විය නොහà·à¶šà¶±à·œà¶´à·à¶¸à·’à¶«à·’ මà·à¶¯à·’ලියේ à¶°à·à·€à¶±à¶º වන විට මුරපදයක් ඉල්ල෠සිටිය නොහà·à¶šà¶´à·’විසුම් à¶´à·Šâ€à¶»à¶­à·’පත්තිය වෙනස් කරන්නසම්බන්ධ වීමට පරිගණක OU DNවින්â€à¶ºà·à·ƒ à¶šà·… විධà·à¶±à¶º වලංගු à¶±à·à¶­: %sවින්â€à¶ºà·à·ƒ à¶šà·… විධà·à¶±à¶º හමු නොවීය: %s%sලෙස සත්â€à¶ºà·à¶´à¶±à¶º à¶šà·… නොහà·à¶šà·’ වියඅවසර ලත් පිවිසුම් වෙනස් කිරීමට නොහà·à¶šà·’ වියරියල්ම් සේවà·à·€à¶§ සම්බන්ධ වීමට නොහà·à¶šà·’ වියපද්ධති බසයට සම්බන්ධ වීමට නොහà·à¶šà·’ වියඅක්තපත්â€à¶» à·„à·à¶¹à·’ලි ගොනුවක් à¶­à·à¶±à·“මට නොහà·à¶šà·’ විය: %s: %sà¶°à·à·€à¶± à¶šà·à¶½ à¶±à·à¶¸à·à·€à¶½à·’ය à¶­à·à¶±à·“මට නොහà·à¶šà·’ විය: %s: %sසොකට් සෑදීමට නොහà·à¶šà·’ වියසොකට් යුගලයක් à¶­à·à¶±à·“මට නොහà·à¶šà·’ විය: %sà¶šà·Šà·‚à·šà¶­à·Šâ€à¶» සොය෠ගà·à¶±à·“මට නොහà·à¶šà·’ වියkerberos ආරම්භ කිරීමට නොහà·à¶šà·’ වියක්ෂේත්â€à¶»à¶ºà¶§ සම්බන්ධ වීමට නොහà·à¶šà·’ වියරà·à¶¢à¶°à·à¶±à·’ය à·„à·à¶» යà·à¶¸à¶§ නොහà·à¶šà·’ වියරියල්ම් සේවà·à·€ පූරණය à¶šà·… නොහà·à¶šà·’ වියපරිà·à·“ලක à¶±à·à¶¸à¶º විග්â€à¶»à·„ කිරීමට නොහà·à¶šà·’ විය: %sමුරපදය සඳහ෠විමසිය නොහà·à¶š: %sà¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» à·„à·à¶¹à·’ලිය කියවීමට නොහà·à¶šà·’ වියkerberos à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» කියවීමට නොහà·à¶šà·’ වියඅක්තපත්â€à¶» à·„à·à¶¹à·’ලිය විසඳà·à¶œà¶­ නොහà·à¶šà·’ වියrealmd à¶°à·à·€à¶±à¶º à¶šà·… නොහà·à¶šà·’ වියkerberos à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶» à¶­à·à¶»à· à¶œà·à¶±à·“මට නොහà·à¶šà·’ වියවින්â€à¶ºà·à·ƒà¶º ලිවීමට නොහà·à¶šà·’ විය: %sඕනෑම Realm ගිණුමට ඇතුල් වීම à¶´à·Šâ€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කරන්නපරිà·à·“ලක පිවිසුම් à¶´à·Šâ€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කරන්නපවතින à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º සොය෠ගන්නක්ෂේත්â€à¶»à¶º සොය෠ගන්නආදà·à¶±à¶º සඳහ෠විමසන්න à¶‘à¶´à·sssd.conf config ගොනුවේ වසම් %s නොමà·à¶­nsswitch.conf සහ PAM à·„à·’ SSSD සබල කිරීම à¶…à·ƒà·à¶»à·Šà¶®à¶š විය.මෙම යන්ත්â€à¶»à¶º à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà¶§ ඇතුළත් කරන්නමුරපදයක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º ලියà·à¶´à¶¯à·’à¶‚à¶ à·’ කිරීම සහà·à¶º නොදක්වයිඅවසර ලත් පිවිසුම් වෙනස් කිරීමට අසමත් විය. à¶»à·à¶œ විනිà·à·Šà¶ à¶º බලන්න.à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º සොය෠ගà·à¶±à·“මට අපොහොසත් විය. à¶»à·à¶œ විනිà·à·Šà¶ à¶º බලන්න.යන්ත්â€à¶»à¶º à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ ඇතුළත් කිරීමට අපොහොසත් විය. à¶»à·à¶œ විනිà·à·Šà¶ à¶º බලන්න.වසම වෙතින් යන්ත්â€à¶»à¶º බඳව෠නොගà·à¶±à·“ම à¶…à·ƒà·à¶»à·Šà¶®à¶š විය. à¶»à·à¶œ විනිà·à·Šà¶ à¶º බලන්න.à¶šà¶«à·Šà¶©à·à¶ºà¶¸à·Š -a à·„à· --all සමඟ සඳහන් නොකළ à·„à·à¶šà¶±à·’à·à·Šà¶ à·’à¶­ උපසර්ගයකට මà·à¶¯à·’ලිය ස්ථà·à¶´à¶±à¶º කරන්නඅවà·à·Šà¶º à¶´à·à¶šà·šà¶¢ ස්ථà·à¶´à¶±à¶º කිරීමවලංගු නොවන පිවිසුම් තර්කය '%s' à·„à·’ සහය නොදක්වන à¶…à¶šà·Šà·‚à¶» අඩංගු වේ.වලංගු නොවන පිවිසුම් තර්කය%s%s%s පිවිසුම් ආකෘතියට නොගà·à¶½à¶´à·š.%sසඳහ෠වලංගු නොවන මුරපදයකි%s විකල්පය සඳහ෠වලංගු නොවන අගයක්: %sමුරපදයක් නොමà·à¶­à·’à·€ ස්වයංක්â€à¶»à·“යව සම්බන්ධ වන්නයන්ත්â€à¶»à¶º à¶»à·à¶¢à¶°à·à¶±à·’යට සම්බන්ධ වන්නපෙර à·ƒà·à¶šà·ƒà·– à¶‘à¶šà·Š වරක් මුරපදයක් à¶·à·à·€à·’තයෙන් සම්බන්ධ වන්නඑක් වරක් මුරපදයක් සමඟ වසමකට සම්බන්ධ වීමට සහà·à¶º වන්නේ '%s' à·ƒà·à¶¸à·à¶¢à·’à¶šà¶­à·Šà·€ මෘදුකà·à¶‚ගය සමඟ පමණිපරිà·à·“ලක මුරපදයක් සමඟ වසමකට සම්බන්ධ වීමට සහà·à¶º වන්නේ '%s' à·ƒà·à¶¸à·à¶¢à·’à¶šà¶­à·Šà·€ මෘදුකà·à¶‚ගය සමඟ පමණිමෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ වීමට සහය නොදක්වයිඅක්තපත්â€à¶» à·„à·à¶¹à·’ලියක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ වීමට සහය නොදක්වයිරහසක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ වීමට සහය නොදක්වයිඅක්තපත්â€à¶» නොමà·à¶­à·’à·€ මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ වීමට සහය නොදක්වයිමෙම පද්ධතියේ LDAP UDP සම්බන්ධත෠සඳහ෠සහය නොදක්වයිමෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º à·„à·à¶» යà·à¶¸ සහය නොදක්වයිඅක්තපත්â€à¶» à·„à·à¶¹à·’ලියක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà·™à¶±à·Š ඉවත් වීමට සහය නොදක්වයිඅක්තපත්â€à¶» නොමà·à¶­à·’à·€ මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º à·„à·à¶» යà·à¶¸à¶§ සහය නොදක්වයිදන්න෠ක්ෂේත්â€à¶» à¶½à·à¶ºà·’ස්තුගත කරන්නඅවà·à·Šâ€à¶º à¶´à·à¶šà·šà¶¢ ස්ථà·à¶´à¶±à¶º à¶šà¶» නොමà·à¶­: %sමෙම වසම à·„à·à¶» යà·à¶¸ සඳහ෠අක්තපත්â€à¶» à¶…à·€à·à·Šâ€à¶ºà¶ºà·’පෙරනිමි à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·Š සොය෠ගෙන නොමà·à¶­-a à·„à· --all සමඟින් පිවිසුම් කිසිවක් සඳහන් නොකළ යුතුයඑවà·à¶±à·’ à¶šà¶½à·à¶´à¶ºà¶šà·Š හමු නොවීයඑවà·à¶±à·’ à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·Š හමු නොවීය: %sමෙම à¶šà·Šâ€à¶»à·’යà·à·€ සිදු කිරීමට අවසර à¶±à·à¶­à¶¯à·à¶±à¶§ මෙම වසමට සම්බන්ධ වී නොමà·à¶­à¶¯à·à¶±à¶§ මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶§ සම්බන්ධ වී නොමà·à¶­à¶¸à·™à¶¸ වසමට සම්බන්ධ වී à¶±à·à¶­à¶¸à·™à·„ෙයුම අවලංගු කරන ලදී.%sසඳහ෠මුරපදය: ඕනෑම Realm ගිණුමකට ඇතුල් වීමට අවසර දෙන්නපරිà·à·“ලක පුරනය වීමට අවසර දෙන්නසංඥà·à·€: %dසමඟ ක්රියà·à·€à¶½à·’ය අවසන් වියRealm ස්වයංක්â€à¶»à·“ය à·ƒà·à¶¸à·à¶¢à·’කත්වය සඳහ෠සහà·à¶º නොදක්වයිRealm à¶‘à¶šà·Š වරක් මුරපදයක් à¶·à·à·€à·’ත෠කරමින් à·ƒà·à¶¸à·à¶¢à·’කත්වය සඳහ෠සහà·à¶º නොදක්වයිRealm මුරපදයක් à¶·à·à·€à·’තයෙන් à·ƒà·à¶¸à·à¶¢à·’කත්වය සඳහ෠සහà·à¶º නොදක්වයිලොගින් වීමට/à¶´à·Šâ€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කිරීමට Realmසේවà·à¶¯à·à¶ºà¶šà¶ºà·™à¶±à·Š වලංගු නොවන හ෠සහà·à¶º නොදක්වන Netlogon දත්ත à¶½à·à¶¶à·“ ඇතපරිගණකය à¶»à·à¶¢à¶°à·à¶±à·’යෙන් ඉවත් කරන්නරà·à¶¢à¶°à·à¶±à·’යෙන් යන්ත්රය ඉවත් කරන්නපරිගණක ගිණුම සඳහ෠පරිà·à·“ලක විදුහල්පති සකසන්නසොයà·à¶œà¶­à·Š සියලුම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶» පෙන්වන්නසියලුම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶» පෙන්වන්නනම් පමණක් පෙන්වන්නමඟ à·„à·à¶»à·’ය විධà·à¶±à¶º: %sවිà·à·šà·‚à·’à¶­ පිවිසුම් --withdraw සමඟ සඳහන් à¶šà·… යුතුයසම්බන්ධ වීමට à¶‘à¶šà·Š à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·Š සඳහන් කරන්නඅවසර ලත් à¶½à·à¶ºà·’ස්තුවෙන් à¶‘à¶šà·Š කිරීමට හ෠ඉවත් කිරීමට නිà·à·Šà¶ à·’à¶­ පරිà·à·“ලකයන් සඳහන් කරන්නප්â€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කිරීම නොමà·à¶­à·’à·€ --සියල්ල අත්හරිනු à¶½à·à¶¶à·š. Realm permit à¶·à·à·€à·’ත෠කරන්න --withdraw--no-password තර්කය --one-time-password à·„à· --user සමඟ à¶·à·à·€à·’à¶­à· à¶šà·… නොහà·à¶š--user සමඟ --one-time-මුරපද තර්කය à¶·à·à·€à·’à¶­à· à¶šà·… නොහà·à¶šà¶´à·’විසුම් à¶´à·Šâ€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කිරීමේදී --withdraw à·„à· -x තර්ක à¶·à·à·€à·’à¶­à· à¶šà·… නොහà·à¶šà·ƒà¶¸à·Šà¶¶à· සපයන්නà·à¶§ අවසර ලත් පිවිසුම් සීම෠කළ නොහà·à¶š.IPA වසමකට සම්බන්ධ වන විට computer-ou තර්කය සහà·à¶º නොදක්වයි.ස්ථà·à¶´à¶±à¶º සඳහ෠පහත à¶´à·à¶šà·šà¶¢ නොමà·à¶­: %sමෙහෙයුම අවලංගු කරන ලදීක්ෂේත්â€à¶»à¶º පිවිසුම් සඳහන් කිරීමට ඉඩ නොදේඅවසර දිය යුතු à¶šà¶«à·Šà¶©à·à¶ºà¶¸à·Š ලෙස නම් සලකන්නස්වයංක්â€à¶»à·“ය id සිතියම්කරණය à¶…à¶šà·Šâ€à¶»à·’ය කරන්නවසම වෙත ස්වයංක්â€à¶»à·“යව සම්බන්ධ විය නොහà·à¶šà¶¸à·™à¶¸ යන්ත්â€à¶»à¶º à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶ºà¶šà·’න් ඉවත් කරන්නමුරපදයක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º බඳව෠නොගà·à¶±à·“ම සඳහ෠සහය නොදක්වයිරහසක් à¶·à·à·€à·’තයෙන් මෙම à¶šà·Šà·‚à·šà¶­à·Šâ€à¶»à¶º බඳව෠නොගà·à¶±à·“ම සඳහ෠සහය නොදක්වයිවසමකට සම්බන්ධ වීම සඳහ෠සහà·à¶º නොදක්වන à¶…à¶šà·Šà¶­à¶´à¶­à·Šâ€à¶»à·ƒà·„à·à¶º නොදක්වන හ෠නොදන්න෠සà·à¶¸à·à¶¢à·’à¶š මෘදුකà·à¶‚à¶œ '%s'සියලුම පිවිසුම් à¶´à·Šâ€à¶»à¶­à·’à¶šà·Šà·‚à·šà¶´ කිරීමට --all à¶·à·à·€à·’ත෠කරන්නවිà·à·šà·‚à·’à¶­ සේවà·à¶¯à·à¶ºà¶š මෘදුකà·à¶‚à¶œ à¶·à·à·€à·’ත෠කරන්නවිà·à·šà·‚à·’à¶­ à·ƒà·à¶¸à·à¶¢à·’à¶š මෘදුකà·à¶‚à¶œ à¶·à·à·€à·’ත෠කරන්නවිà·à·šà·‚à·’à¶­ සේවà·à¶¯à·à¶ºà¶š මෘදුකà·à¶‚à¶œ à¶·à·à·€à·’ත෠කරන්නලියà·à¶´à¶¯à·’ංචිය සඳහ෠භà·à·€à·’à¶­à· à¶šà·… යුතු පරිà·à·“ලක à¶±à·à¶¸à¶ºà¶‰à·€à¶­à·Š කිරීම සඳහ෠භà·à·€à·’à¶­à· à¶šà·… යුතු පරිà·à·“ලක à¶±à·à¶¸à¶ºà·€à·à¶ à·’à¶š à¶´à·Šâ€à¶»à¶­à·’දà·à¶±à¶ºRealm ගිණුමක් සඳහ෠පුරනය වීමට බලපත්â€à¶»à¶º ආපසු ගන්නrealmd-0.17.1/po/quot.sed0000644003225100322510000000023114315276770015467 0ustar00sbosesbose00000000000000s/"\([^"]*\)"/“\1â€/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“â€/""/g realmd-0.17.1/po/pl.po0000644003225100322510000005102014315277002014744 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Piotr DrÄ…g , 2013,2015-2016 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 15:02+0000\n" "Last-Translator: Piotr DrÄ…g \n" "Language-Team: Polish (http://www.transifex.com/freedesktop/realmd/language/" "pl/)\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " "(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " "n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Wykrywanie obszaru" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Wymagane jest uwierzytelnienie, aby wykryć obszar Kerberos" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Dołączenie komputera do obszaru" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Wymagane jest uwierzytelnienie, aby dołączyć ten komputer do obszaru lub " "domeny" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "UsuniÄ™cie komputera z obszaru" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Wymagane jest uwierzytelnienie, aby usunąć ten komputer z obszaru lub domeny." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Zmiana polityki logowania" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Wymagane jest uwierzytelnienie, aby zmienić politykÄ™ zezwalania na logowanie " "na tym komputerze." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Proces zostaÅ‚ zakoÅ„czony z sygnaÅ‚em: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "DziaÅ‚anie zostaÅ‚o anulowane" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Nie odnaleziono skonfigurowanego polecenia: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "PominiÄ™to polecenie: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Skonfigurowane polecenie jest nieprawidÅ‚owe: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Otrzymano nieprawidÅ‚owe lub nieobsÅ‚ugiwane dane Netlogon od serwera" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "LDAP w tym systemie nie obsÅ‚uguje połączeÅ„ UDP" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "NieobsÅ‚ugiwane lub nieznane oprogramowania czÅ‚onkostwa „%sâ€" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Już dołączono do domeny" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Nazwa administratora lub hasÅ‚o jest nieprawidÅ‚owe" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Obecnie nie dołączono do tej domeny" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Wymagane sÄ… dane uwierzytelnienia, aby opuÅ›cić tÄ™ domenÄ™" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Nie można zapisać konfiguracji: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Brak upoważnienia do wykonania tej czynnoÅ›ci" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Anulowano dziaÅ‚anie." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" "Zapisanie komputera do obszaru siÄ™ nie powiodÅ‚o. ProszÄ™ zobaczyć wyjÅ›cie " "diagnostyczne." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" "Wypisanie komputera z domeny siÄ™ nie powiodÅ‚o. ProszÄ™ zobaczyć wyjÅ›cie " "diagnostyczne." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" "Dołączenie do tego obszaru bez danych uwierzytelniajÄ…cych jest nieobsÅ‚ugiwane" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" "Opuszczenie tego obszaru bez danych uwierzytelniajÄ…cych jest nieobsÅ‚ugiwane" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "Dołączenie do tego obszaru za pomocÄ… pamiÄ™ci podrÄ™cznej danych " "uwierzytelniajÄ…cych jest nieobsÅ‚ugiwane" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "Opuszczenie obszaru za pomocÄ… pamiÄ™ci podrÄ™cznej danych uwierzytelniajÄ…cych " "jest nieobsÅ‚ugiwane" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Dołączenie do tego obszaru za pomocÄ… sekretu jest nieobsÅ‚ugiwane" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Wypisywanie z tego obszaru za pomocÄ… sekretu jest nieobsÅ‚ugiwane" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Zapisywanie do tego obszaru za pomocÄ… hasÅ‚a jest nieobsÅ‚ugiwane" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Wypisywanie z tego obszaru za pomocÄ… hasÅ‚a jest nieobsÅ‚ugiwane" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Dołączenie do tego obszaru jest nieobsÅ‚ugiwane" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Opuszczenie tego obszaru jest nieobsÅ‚ugiwane" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Inne dziaÅ‚anie jest już uruchomione" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Już dołączono do innej domeny: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" "Zmiana dozwolonych loginów siÄ™ nie powiodÅ‚a. ProszÄ™ zobaczyć wyjÅ›cie " "diagnostyczne." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "Obszar nie zezwala na okreÅ›lanie loginów" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "NieprawidÅ‚owy parametr logowania%s%s%s nie pasuje do formatu logowania." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "NastÄ™pujÄ…ce pakiety nie sÄ… dostÄ™pne do instalacji: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Wymagane pakiety nie sÄ… zainstalowane: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Instalowanie wymaganych pakietów" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" "Wykrycie obszaru siÄ™ nie powiodÅ‚o. ProszÄ™ zobaczyć wyjÅ›cie diagnostyczne." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Nie dołączono do tej domeny" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Dostawca Samby nie może ograniczać dozwolonych loginów." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "NieprawidÅ‚owy parametr logowania „%s†zawiera nieobsÅ‚ugiwane znaki." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Włączenie SSSD w pliku nsswitch.conf i w PAM siÄ™ nie powiodÅ‚o." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Nie można automatycznie dołączyć do domeny" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Dołączenie do domeny za pomocÄ… jednorazowego hasÅ‚a jest obsÅ‚ugiwane tylko za " "pomocÄ… oprogramowania czÅ‚onkostwa „%sâ€" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Dołączenie do domeny za pomocÄ… hasÅ‚a użytkownika jest obsÅ‚ugiwane tylko za " "pomocÄ… oprogramowania czÅ‚onkostwa „%sâ€" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "NieobsÅ‚ugiwane dane uwierzytelniajÄ…ce do dołączenia do domeny" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Już dołączono do tej domeny" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Domena o tej nazwie jest już skonfigurowana" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Domena %s już istnieje w pliku konfiguracji sssd.conf" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Brak domeny %s w pliku konfiguracji sssd.conf" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" "Parametr computer-ou nie jest obsÅ‚ugiwany podczas dołączania do domeny IPA." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" "Parametr computer-ou nie jest obsÅ‚ugiwany podczas dołączania do domeny IPA." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Obecnie nie dołączono do tego obszaru" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Wykrywa dostÄ™pny obszar" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Zapisuje ten komputer do obszaru" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Wypisuje ten komputer z obszaru" #: tools/realm.c:43 msgid "List known realms" msgstr "WyÅ›wietla listÄ™ znanych obszarów" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Zezwala na loginy użytkowników" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Odmawia loginy użytkownika" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "NieprawidÅ‚owa wartość dla opcji %s: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Tryb instalacji do podanego przedrostka" #: tools/realm.c:215 msgid "Verbose output" msgstr "WiÄ™cej informacji" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Bez pytania użytkownika" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Nie można połączyć z usÅ‚ugÄ… obszarów" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Nie można wczytać usÅ‚ugi obszarów" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Nie można połączyć z magistralÄ… systemowÄ…" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Nie można utworzyć pary gniazd: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Nie można utworzyć gniazda" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Nie można uruchomić usÅ‚ugi realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Nie można utworzyć katalogu czasu uruchamiania: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" "Nie można utworzyć pliku pamiÄ™ci podrÄ™cznej danych uwierzytelniajÄ…cych: %s: " "%s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Nie można rozwiÄ…zać pamiÄ™ci podrÄ™cznej danych uwierzytelniajÄ…cych" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "NieprawidÅ‚owe hasÅ‚o dla %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Nie można uwierzytelnić jako %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Nie można przetworzyć nazwy użytkownika: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Nie można odczytać pamiÄ™ci podrÄ™cznej danych uwierzytelniajÄ…cych" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Nie można zainicjować oprogramowania Kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "Nie można zapytać o hasÅ‚o podczas dziaÅ‚ania w trybie bezobsÅ‚ugowym" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "HasÅ‚o dla %s: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Nie można zapytać o hasÅ‚o: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Obszar nie obsÅ‚uguje czÅ‚onkostwa za pomocÄ… hasÅ‚a" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Obszar nie obsÅ‚uguje czÅ‚onkostwa za pomocÄ… hasÅ‚a jednorazowego" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Nie można wybrać danych uwierzytelniajÄ…cych Kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Nie można odczytać danych uwierzytelniajÄ…cych Kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Obszar nie obsÅ‚uguje automatycznego czÅ‚onkostwa" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Nie można wykryć obszarów" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Nie wykryto domyÅ›lnego obszaru" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Nie odnaleziono takiego obszaru: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "WyÅ›wietla wszystkie wykryte obszary" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "WyÅ›wietla tylko nazwy" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Używa podanego oprogramowania klienta" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Używa podanego oprogramowania czÅ‚onkostwa" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Używa podanego oprogramowania serwera" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "WyÅ›wietla wszystkie obszary" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Nie można dołączyć do obszaru" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Nie można dołączyć do tego obszaru" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Nie odnaleziono takiego obszaru" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Wyłącza automatyczne mapowanie identyfikatorów" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Używa podanego oprogramowania klienta" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "OU DN komputera do dołączenia" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Dołącza automatycznie bez hasÅ‚a" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Dołącza za pomocÄ… obecnego jednorazowego hasÅ‚a" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Używa podanego oprogramowania klienta" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Używa podanego oprogramowania serwera" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Nazwa użytkownika do użycia do zapisania" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Ustawia naczelnika użytkownika dla konta komputera" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Podaje jeden obszar do dołączenia" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Parametr --no-password nie może być używany z --one-time-password lub --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "Parametr --one-time-password nie może być używany z --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Nie można opuÅ›cić obszaru" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Usuwa komputer z obszaru" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Nazwa użytkownika do użycia do usuniÄ™cia" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Nie można zmienić dozwolonych loginów" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Zezwolenie na loginy kont obszarów" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Odmowa loginów kont obszarów" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Wycofanie zezwolenia na loginy konta obszaru" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Traktuje nazwy jako grupy do zezwolenia" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Obszar, do którego pozwolić/zabronić na logowanie" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Nie można podawać loginów z opcjÄ… -a lub --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "Parametry --withdraw i -x nie mogÄ… być używane podczas odmawiania loginów" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Należy podać konkretne loginy podczas używania parametru --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Nie można podawać grup z opcjÄ… -a lub --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Użycie --all odmówi wszystkie loginy" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Podaje konkretnych użytkowników do dodania lub usuniÄ™cia z listy dozwolonych" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Podawanie odmowy bez --all jest przestarzaÅ‚e. Należy użyć realm permit --" "withdraw" realmd-0.17.1/po/pt_BR.po0000644003225100322510000005054414315277002015351 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Enrico Nicoletto , 2013 # Enrico Nicoletto , 2013 # Rafael Fontenelle , 2013 # Rafael Fontenelle , 2013,2015 # ufa , 2013 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 15:03+0000\n" "Last-Translator: Rafael Fontenelle \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/freedesktop/" "realmd/language/pt_BR/)\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Descobrir reino" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Autenticação é necessária para descobrir um reino em kerberos" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Associar máquina ao reino" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Autenticação é necessária para associar esta máquina a um reino ou domínio" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Remover máquina do reino" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Autenticação é necessária para remover este computador de um reino ou " "domínio." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Alterar política de início de sessão" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Autenticação é necessária para alterara a política de quem pode se conectar " "a este computador." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Processo foi terminado c om sinal: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "A operação foi cancelada" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Comando configurado não encontrado: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Comando ignorado: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Comando configurado inválido: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Foram recebidos dados inválidos ou sem suporte a Netlogon do servidor" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "O LDAP neste sistema não possui suporte a conexões UDP" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Software de participação \"%s\" desconhecido ou sem suporte" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Já associada a um domínio" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Nome de administrador ou senha inválida" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Não associada a este domínio" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Requer credenciais para abandonar este domínio" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Não foi possível gravar a configuração: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Não autorizado a realizar esta ação" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "A operação foi cancelada." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Falha ao registrar a máquina no reino. Veja o diagnóstico." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "Falha ao desregistrar a máquina do domínio. Veja diagnóstico." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Não há suporte a associar a este reino sem credenciais" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "Não há suporte a abandonar este reino sem credenciais" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "Não há suporte a associar a este reino usando um cache de credenciais" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "Não há suporte a abandonar este reino sem um cache de credenciais" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Não há suporte a associar a este reino usando um segredo" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Não há suporte a desregistrar deste reino usando um segredo" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Não há suporte a registrar neste reino usando uma senha" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Não há suporte a desregistrar deste reino usando uma senha" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Não há suporte a associar a este reino" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Não há suporte a abandonar este reino" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Já executando outra ação" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Já associada a outro domínio: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "Falha ao alterar logins permitidas. Veja o diagnóstico." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "Este reino não permite especificar logins" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "Argumento de início de sessão %s%s%s é inválido e não coincide com o formato " "de início de sessão." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Os seguintes pacotes não estão disponíveis para instalação: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Os pacotes necessários não estão instalados: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Instalando pacotes necessários" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Falha ao descobrir o domínio. Veja o diagnóstico." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Não associado a este domínio" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "O provedor Samba não pode restringir inícios de sessões permitidos." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" "O argumento '%s' de início de sessão é inválido e contém caracteres não " "suportados." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Falha ao habilitar SSSD em nsswitch.conf e PAM." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Não foi possível associar automaticamente ao domínio" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Associação a um domínio com uma senha de uso único tem suporte apenas com o " "software de participação \"%s\"" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Associação a um domínio com uma senha de usuário tem suporte apenas com o " "software de participação \"%s\"" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Credenciais sem suporte para associar a um domínio" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Já associado a este domínio" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Um domínio com este nome já está configurado" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Já existe O domínio %s no arquivo de configuração sssd.conf" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Não existe o domínio %s no arquivo de configuração sssd.conf" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" "Não há suporte ao argumento --computer-ou ao associar a um domínio IPA." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" "Não há suporte ao argumento --computer-ou ao associar a um domínio IPA." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Não associada a este reino" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Descobrir reino disponível" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Registrar esta máquina em um reino" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Desregistrar esta máquina de um reino" #: tools/realm.c:43 msgid "List known realms" msgstr "Listar reinos conhecidos" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Permite a usuários iniciarem sessões." #: tools/realm.c:45 msgid "Deny user logins" msgstr "Nega a usuários iniciarem sessões." #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Valor inválido para a opção %s: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Modo de instalação com um prefixo específico" #: tools/realm.c:215 msgid "Verbose output" msgstr "Saída detalhada" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Não solicitar entradas" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Não foi possível conectar ao serviço de reino" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Não foi possível carregar o serviço de reino" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Não foi possível conectar ao barramento do sistema" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Não foi possível criar par de sockets: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Não foi possível criar socket" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Não foi possível executar realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Não foi possível criar diretório de tempo de execução: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Não foi possível criar o arquivo de cache de credenciais: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Não foi possível resolver cache de credenciais" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Senha inválida para %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Não foi possível autenticar como %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Não foi possível analisar o nome de usuário: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Não foi possível ler o cache de credenciais" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Não foi possível inicializar kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" "Não é possível solicitar uma senha ao ser executado em modo não assistido" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Senha para %s:" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Não foi possível solicitar uma senha: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Reino não tem suporte a participação usando uma senha" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Reino não tem suporte a participação usando uma senha de uso único" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Não foi possível selecionar as credenciais do kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Não foi possível ler as credenciais do kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "O reino não tem suporte a participação automática" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Não foi possível descobrir os reinos" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Nenhum reino padrão descoberto" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Reino não encontrado: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Mostra todos os reinos descobertos" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Mostra somente os nomes" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Usa um software cliente específico" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Usa um software de participação específico" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Usa software de servidor específico" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Mostra todos os reinos" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Não foi possível associar ao reino" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Não foi possível associar a este reino" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Reino não encontrado" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Desativa mapeamento automático de ID" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Usa um software cliente específico" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "Computador ou DN para se associar" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Associa automaticamente sem uma senha" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Associa usando uma senha predefinida de uso único" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Usa um software cliente específico" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Usa software de servidor específico" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Nome de usuário para usar no registro" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Define o usuário principal para a conta do computador" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Especifica um reino para se associar" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "O argumento --no-password não pode ser usado com --one-time-password ou --" "user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "O argumento --one-time-password não pode ser usado com --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Não foi possível abandonar o reino" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Remove o computador do reino" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Nome de usuário para usar na remoção" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Não foi possível alterar inícios de sessões permitidos" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Permitir qualquer início de sessão de conta de reino" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Proibir qualquer jogin de conta de reino" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Retirar permissão para uma conta de reino se conectar" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Tratar nomes como grupos a regular permissões" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Reino padrão o qual permitir/negar logins" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Nenhum início de sessão deve ser especificado com -a ou --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "Os argumentos --withdraw ou -x não podem ser usados ​​ao proibir inícios de " "sessões" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Inícios de sessões específicos devem ser especificados com --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Grupos não podem ser especificados com -a ou --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Use --all para proibir todos os inícios de sessões" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Especifique usuários específicos para serem adicionaddos ou removidos da " "lista de usuários permitidos" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Especificar proibição sem usar --all tornou-se obsoleto. Use a permissão de " "reino --withdraw" realmd-0.17.1/po/ko.po0000644003225100322510000005041714315277002014753 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Seong-ho Cho , 2013 # Shinjo Park , 2015 # Seong-ho Cho , 2013,2015 # Shinjo Park , 2015 # Thomas Sungjin Kang , 2014 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 16:43+0000\n" "Last-Translator: Seong-ho Cho \n" "Language-Team: Korean (http://www.transifex.com/freedesktop/realmd/language/" "ko/)\n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "ì˜ì—­ 검색" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Kerberos ì˜ì—­ì„ 사용하려면 ì¸ì¦ì´ 필요합니다." #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "ì˜ì—­ì— 기기 추가" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "ì˜ì—­ì´ë‚˜ ë„ë©”ì¸ì— ì´ ê¸°ê¸°ë¥¼ 추가하려면 ì¸ì¦ì´ 필요합니다." #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "ì˜ì—­ì—서 기기 ì‚­ì œ" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "ì˜ì—­ì´ë‚˜ ë„ë©”ì¸ì—서 ì´ ì»´í“¨í„°ë¥¼ 제외하려면 ì¸ì¦ì´ 필요합니다." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "ë¡œê·¸ì¸ ì •ì±… 변경" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "ì´ ì»´í“¨í„°ì— ëˆ„ê°€ 로그ì¸í•  수 ìžˆëŠ”ì§€ì— ëŒ€í•œ ì •ì±…ì„ ë³€ê²½í•˜ë ¤ë©´ ì¸ì¦ì´ 필요합니" "다." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "프로세스가 ë‹¤ìŒ ì‹œê·¸ë„ì„ ë‚¨ê¸°ê³  죽었ìŒ: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "ìž‘ì—…ì´ ì·¨ì†Œë˜ì—ˆìŠµë‹ˆë‹¤." #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "설정한 ëª…ë ¹ì„ ì°¾ì„ ìˆ˜ ì—†ìŒ: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "ëª…ë ¹ì„ ê±´ë„ˆëœ€: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "설정한 ëª…ë ¹ì´ ìž˜ëª»ë¨: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "서버ì—서 잘못ë˜ì—ˆê±°ë‚˜ ì§€ì›í•˜ì§€ 않는 Netlogon ë°ì´í„°ë¥¼ ë°›ìŒ" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "ì´ ì‹œìŠ¤í…œì˜ LDAPì€ UDP ì—°ê²°ì„ ì§€ì›í•˜ì§€ 않ìŒ" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "ì§€ì›í•˜ì§€ 않거나 알 수 없는 êµ¬ì„±ì› ì†Œí”„íŠ¸ì›¨ì–´ '%s'" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "ì´ë¯¸ ë„ë©”ì¸ì— 추가ë¨" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "ê´€ë¦¬ìž ì´ë¦„ì´ë‚˜ 암호가 잘못ë¨" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "현재 ì´ ë„ë©”ì¸ì— 참여하고 있지 않ìŒ" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "ì´ ë„ë©”ì¸ì„ 떠나려면 ì¸ì¦ ì •ë³´ê°€ 필요함" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "설정 파ì¼ì„ 기ë¡í•  수 ì—†ìŒ: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "ì´ ìž‘ì—…ì„ ìˆ˜í–‰í•  수 있는 ê¶Œí•œì´ ì—†ìŒ" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "ìž‘ì—…ì´ ì·¨ì†Œë˜ì—ˆìŠµë‹ˆë‹¤." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "기기를 ì˜ì—­ì— 등ë¡í•  수 없습니다. 진단 기ë¡ì„ 참조하십시오." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "기기를 ì˜ì—­ì—서 ë“±ë¡ í•´ì œí•  수 없습니다. 진단 기ë¡ì„ 참조하십시오." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "ì¸ì¦ 정보를 지정하지 않고 ì´ ì˜ì—­ìœ¼ë¡œ 등ë¡í•  수 ì—†ìŒ" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "ì¸ì¦ 정보를 지정하고 ì´ ì˜ì—­ì„ ë– ë‚  수 ì—†ìŒ" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "ì¸ì¦ ìºì‹œë¥¼ 사용하여 ì´ ì˜ì—­ì— 등ë¡í•  수 ì—†ìŒ" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "ì¸ì¦ ìºì‹œë¥¼ 사용하여 ì´ ì˜ì—­ì„ ë– ë‚  수 ì—†ìŒ" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "ë¹„ë°€ì„ ì‚¬ìš©í•˜ì—¬ ì´ ì˜ì—­ì— 등ë¡í•  수 ì—†ìŒ" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "ë¹„ë°€ì„ ì‚¬ìš©í•˜ì—¬ ì´ ì˜ì—­ì„ ë– ë‚  수 ì—†ìŒ" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "암호를 입력하여 ì´ ì˜ì—­ì— 등ë¡í•  수 ì—†ìŒ" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "암호를 입력하여 ì´ ì˜ì—­ì„ ë– ë‚  수 ì—†ìŒ" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "ì´ ì˜ì—­ì— 등ë¡í•  수 ì—†ìŒ" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "ì´ ì˜ì—­ì„ ë– ë‚  수 ì—†ìŒ" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "다른 ë™ìž‘ì´ ì´ë¯¸ 실행 중" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "다른 ë„ë©”ì¸ì— ì´ë¯¸ 참여함: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "허용ë˜ëŠ” ë¡œê·¸ì¸ ì •ë³´ë¥¼ 변경할 수 없습니다. 진단 기ë¡ì„ 참조하십시오." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "ì´ ì˜ì—­ì—는 로그ì¸ì„ 지정할 수 ì—†ìŒ" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "ìž˜ëª»ëœ ë¡œê·¸ì¸ ì¸ìž %s%s%sì´(ê°€) ë¡œê·¸ì¸ í˜•ì‹ê³¼ ì¼ì¹˜í•˜ì§€ 않습니다." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 설치할 수 ì—†ìŒ: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "필요한 패키지가 설치ë˜ì§€ 않았ìŒ: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "필요한 패키지 설치 중" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "ì˜ì—­ì„ 발견할 수 없습니다. 진단 기ë¡ì„ 참조하십시오." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "ì´ ë„ë©”ì¸ì— 참여하지 않았ìŒ" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Samba 공급ìžê°€ í—ˆìš©ëœ ë¡œê·¸ì¸ì„ 제한할 수 없습니다." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "ìž˜ëª»ëœ ë¡œê·¸ì¸ ì¸ìž '%s'ì— ì§€ì›í•˜ì§€ 않는 문ìžê°€ í¬í•¨ë˜ì–´ 있습니다." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "nsswitch.conf와 PAMì—서 SSSD를 활성화할 수 없습니다." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "ë„ë©”ì¸ì— ìžë™ìœ¼ë¡œ 등ë¡í•  수 ì—†ìŒ" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "ì¼íšŒìš© 암호를 사용하여 ë„ë©”ì¸ì— 등ë¡í•˜ëŠ” ê²ƒì€ '%s' êµ¬ì„±ì› ì†Œí”„íŠ¸ì›¨ì–´ì—서만 ì§€" "ì›í•¨" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "ì‚¬ìš©ìž ì•”í˜¸ë¥¼ 사용하여 ë„ë©”ì¸ì— 등ë¡í•˜ëŠ” ê²ƒì€ '%s' êµ¬ì„±ì› ì†Œí”„íŠ¸ì›¨ì–´ì—서만 ì§€" "ì›í•¨" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "ë„ë©”ì¸ì— 참여하기 위하여 ì§€ì›ë˜ì§€ 않는 ì¸ì¦ ì •ë³´" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "ì´ë¯¸ ë„ë©”ì¸ì— 등ë¡ë¨" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "ê°™ì€ ì´ë¦„ì˜ ë„ë©”ì¸ì´ ì´ë¯¸ 설정ë¨" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "sssd.conf 설정 파ì¼ì— ë„ë©”ì¸ %sì´(ê°€) ì´ë¯¸ 있ìŒ" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "sssd.conf 설정 파ì¼ì— ë„ë©”ì¸ %sì´(ê°€) ì—†ìŒ" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "IPA ë„ë©”ì¸ì— 등ë¡í•  때 computer-ou ì¸ìžë¥¼ ì§€ì›í•˜ì§€ 않습니다." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "IPA ë„ë©”ì¸ì— 등ë¡í•  때 computer-ou ì¸ìžë¥¼ ì§€ì›í•˜ì§€ 않습니다." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "ì´ ì˜ì—­ì— 등ë¡ë˜ì–´ 있지 않ìŒ" #: tools/realm.c:40 msgid "Discover available realm" msgstr "사용 가능한 ì˜ì—­ 검색" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "ì´ ê¸°ê¸°ë¥¼ ì˜ì—­ì— 등ë¡" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "ì´ ê¸°ê¸°ë¥¼ ì˜ì—­ì—서 ë“±ë¡ í•´ì œ" #: tools/realm.c:43 msgid "List known realms" msgstr "알려진 ì˜ì—­ 목ë¡" #: tools/realm.c:44 msgid "Permit user logins" msgstr "ì‚¬ìš©ìž ë¡œê·¸ì¸ í—ˆìš©" #: tools/realm.c:45 msgid "Deny user logins" msgstr "ì‚¬ìš©ìž ë¡œê·¸ì¸ ê±°ë¶€" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "%s ì˜µì…˜ì˜ ê°’ì´ ìž˜ëª»ë¨: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "지정한 ì ‘ë‘ì–´ì— ë”°ë¥¸ 설치 모드" #: tools/realm.c:215 msgid "Verbose output" msgstr "ìžì„¸í•œ 출력" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "ìž…ë ¥ 묻지 않기" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "ì˜ì—­ ì„œë¹„ìŠ¤ì— ì—°ê²°í•  수 ì—†ìŒ" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "ì˜ì—­ 서비스를 불러올 수 ì—†ìŒ" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "시스템 ë²„ìŠ¤ì— ì—°ê²°í•  수 ì—†ìŒ" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "소켓 ìŒì„ ìƒì„±í•  수 ì—†ìŒ: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "ì†Œì¼“ì„ ë§Œë“¤ 수 ì—†ìŒ" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "realmd를 실행할 수 ì—†ìŒ" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "런타임 디렉터리를 만들 수 ì—†ìŒ: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "ì¸ì¦ ì •ë³´ ìºì‹œ 파ì¼ì„ 만들 수 ì—†ìŒ: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "ì¸ì¦ì„œ ìºì‹œë¥¼ í•´ì„í•  수 ì—†ìŒ" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "%sì˜ ì•”í˜¸ê°€ 잘못ë¨" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "%s(으)로 ì¸ì¦í•  수 ì—†ìŒ" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "ì‚¬ìš©ìž ì´ë¦„ì„ í•´ì„í•  수 ì—†ìŒ: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "ì¸ì¦ì„œ ìºì‹œë¥¼ ì½ì„ 수 ì—†ìŒ" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Kerberos를 초기화 í•  수 ì—†ìŒ" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "ìžë™ ì ‘ê·¼ 모드로 실행 ì¤‘ì¼ ë•Œ 암호를 물어볼 수 ì—†ìŒ" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "%s 암호: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "암호를 물어볼 수 ì—†ìŒ: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "ì˜ì—­ì— 암호를 사용하여 등ë¡í•  수 ì—†ìŒ" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "ì˜ì—­ì— 1회용 암호를 사용하여 등ë¡í•  수 ì—†ìŒ" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Kerberos ì¸ì¦ 정보를 ì„ íƒí•  수 ì—†ìŒ" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Kerberos ì¸ì¦ 정보를 ì½ì„ 수 ì—†ìŒ" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "ì˜ì—­ì— ìžë™ìœ¼ë¡œ 등ë¡í•  수 ì—†ìŒ" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "ì˜ì—­ì„ 발견할 수 ì—†ìŒ" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "기본 ì˜ì—­ì„ ì°¾ì„ ìˆ˜ ì—†ìŒ" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "ì˜ì—­ì„ ì°¾ì„ ìˆ˜ ì—†ìŒ: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "모든 발견한 ì˜ì—­ 표시" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "ì´ë¦„ë§Œ 표시" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "지정한 í´ë¼ì´ì–¸íЏ 소프트웨어 사용" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "지정한 êµ¬ì„±ì› ì†Œí”„íŠ¸ì›¨ì–´ 사용" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "지정한 서버 소프트웨어 사용" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "모든 ì˜ì—­ 표시" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "ì˜ì—­ì— 등ë¡í•  수 ì—†ìŒ" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "ì´ ì˜ì—­ì— 등ë¡í•  수 ì—†ìŒ" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "ì˜ì—­ì„ ì°¾ì„ ìˆ˜ ì—†ìŒ" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "ìžë™ ID ëŒ€ì‘ ë¹„í™œì„±í™”" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "지정한 í´ë¼ì´ì–¸íЏ 소프트웨어 사용" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "등ë¡í•  Computer OU DN" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "암호 ì—†ì´ ìžë™ìœ¼ë¡œ 등ë¡" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "미리 설정한 ì¼íšŒìš© 암호로 등ë¡" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "지정한 í´ë¼ì´ì–¸íЏ 소프트웨어 사용" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "지정한 서버 소프트웨어 사용" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "등ë¡ì— 사용할 ì‚¬ìš©ìž ì´ë¦„" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "컴퓨터 ê³„ì •ì˜ ì‚¬ìš©ìž ì›ì¹™ 설정" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "등ë¡í•  í•˜ë‚˜ì˜ ì˜ì—­ 지정" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "--no-password ì¸ìžëŠ” --one-time-password ë° --user ì¸ìžì™€ ê°™ì´ ì‚¬ìš©í•  수 ì—†ìŒ" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "--one-time-password ì¸ìžëŠ” --user ì¸ìžì™€ ê°™ì´ ì‚¬ìš©í•  수 ì—†ìŒ" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "ì˜ì—­ì„ ë– ë‚  수 ì—†ìŒ" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "ì˜ì—­ì—서 컴퓨터 ì‚­ì œ" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "삭제하는 ë° ì‚¬ìš©í•  ì‚¬ìš©ìž ì´ë¦„" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "허용ë˜ëŠ” 로그ì¸ì„ 변경할 수 ì—†ìŒ" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "ìž„ì˜ì˜ ì˜ì—­ 계정 ë¡œê·¸ì¸ í—ˆìš©" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "ìž„ì˜ì˜ ì˜ì—­ 계정 ë¡œê·¸ì¸ ê±°ë¶€" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "로그ì¸í•  때 사용할 ì˜ì—­ ê³„ì •ì˜ ê±°ë¶€ê¶Œ" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "ì´ë¦„ì„ í—ˆìš©í•  그룹으로 취급" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "로그ì¸ì„ 허용하거나 거절할 ì˜ì—­" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "-a ë˜ëŠ” --all ì˜µì…˜ì— ë¡œê·¸ì¸ ì •ë³´ë¥¼ 지정할 수 ì—†ìŒ" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "로그ì¸ì„ 거부할 때 --withdraw ë° -x ì¸ìžë¥¼ 사용할 수 ì—†ìŒ" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "--withdraw 옵션ì—는 ë¡œê·¸ì¸ ì˜µì…˜ì„ ì§€ì •í•´ì•¼ 함" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "-a ë˜ëŠ” --all ì˜µì…˜ì— ê·¸ë£¹ 정보를 지정할 수 ì—†ìŒ" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "--allì„ ì‚¬ìš©í•˜ë©´ 모든 로그ì¸ì„ 거부함" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "허용 목ë¡ì— 추가하거나 삭제할 ì‚¬ìš©ìž ì§€ì •" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "--allì„ ì§€ì •í•˜ì§€ 않고 거부하는 ì˜µì…˜ì€ ì˜¤ëž˜ë˜ì—ˆìŠµë‹ˆë‹¤. ì˜ì—­ 권한 --withdraw 옵" "ì…˜ì„ ì‚¬ìš©í•˜ì‹­ì‹œì˜¤" realmd-0.17.1/po/pa.po0000644003225100322510000003347614315277002014750 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/freedesktop/" "realmd/language/pa/)\n" "Language: pa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/ka.gmo0000644003225100322510000000073314315277003015076 0ustar00sbosesbose00000000000000Þ•$,8¡9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Georgian (http://www.transifex.com/freedesktop/realmd/language/ka/) Language: ka MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n!=1); realmd-0.17.1/po/en_GB.gmo0000644003225100322510000003171614315277003015462 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D¼q-. #\ /€ ° $Ë ð !S-!7!D¹!Jþ!I"<`""±"È" ç"# $#!E#g#-†#)´#Þ#õ#$.$K$_$t$”$ ±$Ò$"ñ$!%6%$J%o%%ª%»%Ô%ã%-û%.)&X&6w&3®&*â&3 '8A',z'!§'É'<ç'=$(b(z(%š(À(%Ö(]ü(YZ)#´)<Ø)2*7H*4€*#µ*<Ù*7+N+(`+(‰+²+.Î+ý+,%),#O,"s,–,°,É,Û,ú,& -+4-;`-2œ-Ï-9ï-).D./^.Ž.©.¹.Í.1á./?-/Hm/L¶/;0A?040E¶0=ü0:1*V1%1§1'Å1"í1826I2,€2/­2Ý2ú2 383U3u3’3,¡3s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 19:43+0000 Last-Translator: Andi Chandler Language-Team: English (United Kingdom) (http://www.transifex.com/freedesktop/realmd/language/en_GB/) Language: en_GB MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialise kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorised to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginrealmd-0.17.1/po/hr.gmo0000644003225100322510000003353714315277003015124 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,Déq+[ '‡ 9¯ é + !6! U!iv!3à!G"H\"*¥"JÐ"#I5#$#)¤#Î#(æ#)$$9$G^$1¦$Ø$&ö$%"<%"_%‚%&¢%'É%"ñ%3&2H&9{&µ&1Ó&''#-'Q'i'ƒ'”'7§'5ß'#(89(9r(/¬(8Ü(:).P)+)«)AÉ)C *O**h*#“*·*(Ñ*bú*b]+,À+Uí+:C,D~,*Ã,)î,R-Nk-º-$Ô-7ù-(1.6Z.‘.#±.,Õ.'/**/U/q/‰/%™/¿/"Ù/+ü/<(00e0/–0HÆ01-10G1 x1™1°1Å17Ý1(2J>2\‰2Mæ2;43Hp39¹3Aó3>54t4,‹4.¸4%ç4- 5&;59b57œ56Ô55 6'A6"i6#Œ6'°6"Ø6(û6$7(67s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2020-09-23 19:34+0000 Last-Translator: milotype Language-Team: Croatian (http://www.transifex.com/freedesktop/realmd/language/hr/) Language: hr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2; Domena s ovim nazivom je već konfiguriranaIme administratora ili lozinka ne važiDomena %s već postoji u sssd.conf datoteci konfiguracijeVeć je pridružen jednoj domeniVeć je pridružen jednoj drugoj domeni: %sVeć je pridružen ovoj domeniVeć pokreće jednu drugu radnjuZa mijenjanje politike odreÄ‘ivanja korisnika koji se mogu prijaviti na ovo raÄunalo potrebna je ovjera.Za otkrivanje podruÄja kerberos potrebna je ovjeraZa pridruživanje ovog ureÄ‘aja podruÄju ili domeni potrebna je ovjeraZa uklanjanje ovog raÄunala iz podruÄja ili domene potrebna je ovjera.Pridruživanje ovom podruÄju nije mogućeLozinka se ne može zahtijevati kad se pokreće u naÄinu rada bez nadzoraPromjeni politiku prijaveJedinstveni naziv raÄunala organizacijske jedinice kojemu se pridružujeKonfigurirana naredba nevažeća: %sKonfigurirana naredba nije pronaÄ‘ena: %sNeuspjela ovjera kao %sNeuspjelo mijenjanje dozvoljenih prijavaNeuspjelo povezivanje na uslugu podruÄjaNeuspjelo povezivanje na bus sustavaNeuspjelo stvaranje predmemorijske datoteke podataka za prijavu: %s: %sNeuspjelo stvaranje izvrÅ¡nog direktorija: %s: %sNeuspjelo stvaranje utiÄniceNeuspjelo stvaranje para utiÄnica: %sNeuspjelo otkrivanje podruÄjaNeuspjelo inicijaliziranje kerbosaNeuspjelo pridruživanje podruÄjuNeuspjelo napuÅ¡tanje podruÄjaNeuspjelo uÄitavanje usluge podruÄjaNeusjpela obrada korisniÄkog imena: %sNeuspjelo zahtijevanje lozinke: %sNeuspjelo Äitanje predmemorije podataka za prijavuNeuspjelo Äitanje podataka za prijavu na kerberosNeuspjelo razrjeÅ¡avanje predmemorije podataka za prijavuNeuspjelo pokretanje realmd-aNeuspjelo biranje podataka za prijavu na kerberosNeuspjelo ispisivanje konfiguracije: %sOdbij sve prijave raÄuna podruÄjaOdbij prijave korisnikaOtkrij dostupno podruÄjeOtkrij podruÄjeNe zahtijevaj unosDomena %s ne postoji u sssd.conf datoteci konfiguracijeUkljuÄivanje SSSD-a u nsswitch.conf i PAM neuspjelo.UpiÅ¡i ovaj stroj u jedno podruÄjeUpisivanje ovog podruÄja pomoću lozinke nije podržanoNeuspjelo mijenjanje dozvoljenih prijava. Vidi dijagnozu.Neuspjelo otkrivanje podruÄja. Vidi dijagnozu.Neuspjelo upisivanje stroja u podruÄje. Vidi dijagnozu.Neuspjelo ispisivanje stroja iz podruÄja. Vidi dijagnozu.Grupe se ne mogu odrediti pomoću -a ili --allInstaliraj naÄin rada na odreÄ‘eni prefiksInstaliranje potrebnih paketaNevažeći argument prijave „%s†sadrži nepodržane znakove.Nevažeći argument prijave%s%s%s ne poklapa se s formatom prijave.Nevažeća lozinka za %sNevažeća vrijednost za %s mogućnost: %sPridruži se automatski bez lozinkePridruži stroj podruÄjuPridruži se pomoću jednokratne lozinkePridruživanje domeni s jednokratnom lozinkom podržano je samo sa softverom za Älanstvo „%sâ€Pridruživanje domeni s korisniÄkom lozinkom podržano je samo sa softverom za Älanstvo „%sâ€Pridruživanje ovom podruÄju nije podržanoPridruživanje ovom podruÄju pomoću predmemorije podataka za prijavu nije podržanoPridruživanje ovom podruÄju pomoću tajne nije podržanoPridruživanje ovom podruÄju bez podataka za prijavu nije podržanoLDAP na ovom sustavu ne podržava UDP vezeNapuÅ¡tanje ovog podruÄja nije podržanoNapuÅ¡tanje ovog podruÄja pomoću predmemorije podataka za prijavu nije podržanoNapuÅ¡tanje ovog podruÄja bez predmemorije podataka za prijavu nije podržanoNabroji poznata podruÄjaPotrebni paketi nisu instalirani: %sZa napuÅ¡tanje ove domene potrebni su podaci za prijavuNijedno zadano podruÄje nije pronaÄ‘enoPrijave se ne bi trebale odrediti pomoću -a ili --allTakvo podruÄje nije pronaÄ‘enoTakvo podruÄje nije pronaÄ‘eno: %sNema autorizaciju za izvrÅ¡avanje ove radnjeNije trenutaÄno pridružen ovoj domeniTrenutaÄno nije pridružen ovom podruÄjuNije pridružen ovoj domeniOperacija je prekinuta.Lozinka za %s: Dozvoli sve prijave raÄuna podruÄjaDozvoli prijave korisnikaProces je prekinut sa signalom: %dPodruÄje ne podržava automatsko ÄlanstvoPodruÄje ne podržava Älanstvo pomoću jednokratne lozinkePodruÄje ne podržava Älanstvo pomoću lozinkePodruÄje za dozvoljavanje/odbijanje prijava zaPrimljeni su nevažeći ili nepodržani Netlogon podaci od poslužiteljaUkloni raÄunalo iz podruÄjaUkloni stroj iz podruÄjaPostavi glavnog korisnika za raÄun na raÄunaluPrikaži sva otkrivena podruÄjaPrikaži sva podruÄjaPrikaži samo nazivePreskoÄena naredba: %sOdreÄ‘ene prijave moraju se odrediti pomoću --withdrawOdredi jedno podruÄje za pridruživanjeOdredi korisnike koji se trebaju dodati ili ukloniti iz popisa dopuÅ¡tenihOdreÄ‘ivanje odbijanja bez --all viÅ¡e se ne podržava. Koristi dozvolu podruÄja --withdrawArgument --no-password ne može se koristiti s --one-time-password ili --userArgument --one-time-password ne može se koristiti s --userArgumenti --withdraw ili -x ne mogu se koristiti kad se prijave odbijajuPružatelj Sambe ne može ograniÄiti dozvoljene prijave.Argument computer-ou nije podržan kad se pridružuje IPA domeni.Sljedeći se paketi ne mogu instalirati, jer nisu dostupni: %sOperacija je prekinutaPodruÄje ne dozvoljava odreÄ‘ivanje prijavaTretiraj nazive kao grupe kojima se dozvoljavaIskljuÄi automatsko povezivanje id-aAutomatsko pridruživanje domeni nije mogućeIspiÅ¡i ovaj stroj iz jednog podruÄjaIspisivanje ovog podruÄja pomoću lozinke nije podržanoIspisivanje ovog podruÄja pomoću tajne nije podržanoNepodržani podaci za prijavu za pridruživanje domeniNepodržan ili nepoznat softver za Älanstvo „%sâ€Koristi --all za odbijanje svih prijavaKoristi odreÄ‘eni softver klijentaKoristi odreÄ‘eni softver ÄlanstvaKoristi odreÄ‘eni softver poslužiteljaKorisniÄko ime koriÅ¡teno za upisKorisniÄko ime koriÅ¡teno za uklanjanjeOpÅ¡iran rezultatPovuci dozvolu prijave raÄunu podruÄjarealmd-0.17.1/po/nb.po0000644003225100322510000003347614315277002014747 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/freedesktop/realmd/" "language/nb/)\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/it.po0000644003225100322510000003346414315277002014761 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Italian (http://www.transifex.com/freedesktop/realmd/language/" "it/)\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/lv.po0000644003225100322510000003353214315277002014762 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Latvian (http://www.transifex.com/freedesktop/realmd/language/" "lv/)\n" "Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/hi.po0000644003225100322510000003346214315277002014743 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Hindi (http://www.transifex.com/freedesktop/realmd/language/" "hi/)\n" "Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/ta.gmo0000644003225100322510000000073214315277003015106 0ustar00sbosesbose00000000000000Þ•$,8 9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Tamil (http://www.transifex.com/freedesktop/realmd/language/ta/) Language: ta MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/ca@valencia.po0000644003225100322510000003352214315277002016526 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/freedesktop/" "realmd/language/ca@valencia/)\n" "Language: ca@valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/lt.gmo0000644003225100322510000000114214315277003015115 0ustar00sbosesbose00000000000000Þ•$,8(9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Lithuanian (http://www.transifex.com/freedesktop/realmd/language/lt/) Language: lt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3); realmd-0.17.1/po/fo.po0000644003225100322510000003346414315277002014751 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Faroese (http://www.transifex.com/freedesktop/realmd/language/" "fo/)\n" "Language: fo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/th.gmo0000644003225100322510000000072214315277003015114 0ustar00sbosesbose00000000000000Þ•$,8˜9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Thai (http://www.transifex.com/freedesktop/realmd/language/th/) Language: th MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; realmd-0.17.1/po/ia.po0000644003225100322510000003347014315277002014733 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Interlingua (http://www.transifex.com/freedesktop/realmd/" "language/ia/)\n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/ca.gmo0000644003225100322510000003474514315277003015100 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D±q+# :O :Š Å #ß !%!!kG!<³!Jð!O;"#‹"A¯"&ñ" #&9#&`#‡#5§#1Ý#*$H:$=ƒ$Á$/ß$%%&5%\%"z%,%;Ê%(&7/&2g&9š&Ô&7ò&8*'6c')š'(Ä'í'(:(3M(%(?§(Nç(;6)Gr)Fº)0*,2*+_*L‹*]Ø*6+%T+*z+¥+7Â+oú+kj, Ö,L÷,3D-7x-5°-&æ-R .=`.!ž.0À.5ñ.+'/9S//§/0Å/'ö/(0G0d0ƒ06˜0)Ï0-ù0;'1Xc1K¼1)2K22!~2! 2:Â2#ý2!3:3U3Dh3­3QÍ3`4M€4=Î4i 5Hv5?¿5Fÿ5F6;d6< 6)Ý6,7747Ql7K¾7. 87988q8+ª8+Ö8-9,09+]9‰9I›9s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2019-09-29 17:16+0000 Last-Translator: Antoni Bella Pérez Language-Team: Catalan (http://www.transifex.com/freedesktop/realmd/language/ca/) Language: ca MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Ja s'ha configurat un domini amb aquest nomEl nom de l'administrador o la contrasenya no són vàlidsJa hi ha el domini %s al fitxer de configuració sssd.confJa es va unir a un dominiJa es va unir a un altre domini: %sJa es va unir a aquest dominiJa s'està executant una altra accióEs requereix autenticació per canviar la política quant a qui pot iniciar la sessió en aquest ordinador.Es requereix autenticació per descobrir un reialme kerberosEs requereix autenticació per unir aquesta màquina a un reialme o dominiEs requereix autenticació per suprimir aquesta màquina d'un reialme o domini.No s'ha pogut unir a aquest reialmeNo es pot demanar una contrasenya quan s'executa en mode desatèsCanvia la política d'inici de sessióOU i DN de l'ordinador a unir-seL'ordre configurada no és vàlida: %sNo s'ha trobat l'ordre configurada: %sNo s'ha pogut autenticar com %sNo s'han pogut canviar els inicis permesos de sessióNo s'ha pogut connectar amb el servei del reialmeNo s'ha pogut connectar al bus del sistemaNo s'ha pogut crear el fitxer de memòria cau de les credencials: %s: %sNo s'ha pogut crear el directori de temps d'execució: %s: %sNo s'ha pogut crear el socketNo s'ha pogut crear la parella dels sockets: %sNo s'han pogut descobrir els reialmesNo s'ha pogut inicialitzar el kerberosNo s'ha pogut unir al reialmeNo s'ha pogut abandonar al reialmeNo s'ha pogut carregar el servei del reialmeNo s'ha pogut analitzar sintàcticament el nom d'usuari: %sNo s'ha pogut demanar la contrasenya: %sNo s'ha pogut llegir la memòria cau de les credencialsNo s'han pogut llegir les credencials del kerberosNo s'ha pogut resoldre la memòria cau de les credencialsNo s'ha pogut executar realmdNo s'han pogut seleccionar les credencials del kerberosNo s'ha pogut escriure a la sortida de configuració: %sDenega qualsevol compte d'inici de sessió del reialmeDenega els inicis de sessió dels usuarisDescobreix tots els reialmes disponiblesDescobreix el reialmeNo demanis resNo hi ha el domini %s al fitxer de configuració sssd.confNo s'ha pogut habilitar SSSD a nsswitch.conf i PAM.Inscriu aquesta màquina a un reialmeEn aquest reialme no s'admet la inscripció amb una contrasenyaNo s'han pogut canviar els inicis de sessió permesos. Vegeu els diagnòstics.No s'ha pogut descobrir el reialme. Vegeu els diagnòstics.No s'ha pogut inscriure la màquina al reialme. Vegeu els diagnòstics.No s'ha pogut inscriure la màquina al domini. Vegeu els diagnòstics.Els grups no poden especificar-se amb -a o --allMode d'instal·lació a un prefix específicS'estan instal·lant els paquets necessarisL'argument no vàlid d'inici de sessió «%s» conté caràcters no admesos.L'argument no vàlid d'inici de sessió%s%s%s no coincideix amb el format d'inici de sessió.Contrasenya no vàlida per %sValor no vàlid per a l'opció %s: %sUneix-te automàticament sense contrasenyaUneix la màquina al reialmeUneix-te amb una contrasenya preestablerta d'un sol úsLa unió a un domini amb una contrasenya d'un sol ús només és compatible amb el programari de membres «%s»La unió a un domini amb una contrasenya d'usuari només és compatible amb el programari de membres «%s»Aquest reialme no admet la unióEn aquest reialme no s'admet la unió amb la memòria cau de les credencialsEn aquest reialme no s'admet la unió amb un secretEn aquest reialme no s'admet la unió sense credencialsEn aquest sistema, LDAP no accepta les connexions UDPAquest reialme no admet l'abandonamentEn aquest reialme no s'admet l'abandonament amb la memòria cau de les credencialsEn aquest reialme no s'admet l'abandonament sense credencialsLlista tots els reialmes conegutsNo estan instal·lats els paquets necessaris: %sEs necessiten credencials per abandonar aquest dominiSense domini predeterminat del descobrimentNo s'ha d'especificar cap inici de sessió amb -a o --allNo s'ha trobat el reialmeNo s'ha trobat el reialme: %sNo esteu autoritzat per realitzar aquesta accióActualment no s'ha unit a aquest dominiActualment no s'ha unit a aquest reialmeNo s'ha unit a aquest dominiL'operació es va cancel·lar.Contrasenya per %s: Permet qualsevol compte d'inici de sessió del reialmePermet els inicis de sessió dels usuarisEl procés es va finalitzar amb el senyal: %dEl reialme no és compatible amb la pertinença automàticaEl reialme no és compatible amb la pertinença mitjançant una contrasenya d'un sol úsEl reialme no és compatible amb la pertinença mitjançant una contrasenyaReialme per permetre o denegar connexionsS'han rebut dades no vàlides o no compatibles de Netlogon des del servidorSuprimeix l'ordinador del reialmeSuprimeix la màquina del reialmeEstableix el principal usuari per al compte de l'ordinadorMostra tots els reialmes descobertsMostra tots els reialmesMostra únicament els nomsOrdre ignorada: %sS'han d'especificar els inicis específics de sessió amb --withdrawEspecifica un reialme a unir-seEspecifica els usuaris específics per afegir o treure de la llista dels permesosL'especificació de la denegació sense --all està en desús. Utilitzeu realm permit --withdrawL'argument --no-password no pot utilitzar-se amb --one-time-password o --userL'argument --one-time-password no es pot utilitzar amb --userEls arguments --withdraw o -x no es poden utilitzar quan es realitza la denegació dels inicis de sessióEl proveïdor de Samba no pot restringir els inicis permesos de sessió.L'argument computer-ou no s'admet quan s'uneix a un domini IPA.Els següents paquets no estan disponibles per a la instal·lació: %sL'operació es va cancel·larEl reialme no admet l'especificació dels inicis de sessióTracta els noms com a grups als quals se'ls dóna permissióDesactiva l'assignació automàtica d'id.No s'ha pogut unir automàticament al dominiAnul·la la inscripció d'aquesta màquina d'un reialmeEn aquest reialme no s'admet l'anul·lació de la inscripció amb una contrasenyaEn aquest reialme no s'admet l'anul·lació de la inscripció amb un secretCredencials no admeses per unir-se a un dominiProgramari de membres no compatible o desconegut «%s»Utilitzeu --all per a denegar tots els inicis de sessióUtilitza el programari específic de clientUtilitza el programari específic de membreUtilitza el programari específic de servidorNom d'usuari per utilitzar en la inscripcióNom d'usuari per utilitzar en l'eliminacióSortida detalladaPermet la retractació per a un compte del reialme per iniciar la sessiórealmd-0.17.1/po/uk.gmo0000644003225100322510000004761114315277003015130 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D†qAø h:!S£!)÷!:!"4\"-‘"¤¿"†d#“ë#’$B%‘U%"ç%5 &C@&A„&CÆ&[ 'xf'uß'dU(Jº(/)@5)1v)9¨)<â)3*cS*I·*K+aM+Q¯+e,-g,M•,Hã,^,-6‹-.Â-!ñ-6.VJ.Y¡.Gû.vC/—º/mR0À0ŸQ1oñ1[a28½2žö2’•3+(4?T4;”4<Ð4x 5†5Œ6^7«ï7‡›8x#9gœ9Y:¦^:s;=y;S·;h <3t<¨</9=3i=E==ã==!>2_>#’>¶>\Í>4*?K_?Y«?v@]|@]Ú@q8A6ªA:áA›B7¸B*ðB(C.DCVsC@ÊC« Dû·D³E}DF“ÂF„VG~ÛGMZH"¨HTËH^ IbIQâIZ4J‹J‰Kj¥KŽLdŸLtMŒyMpN<wN:´N4ïNd$Os+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 15:05+0000 Last-Translator: Yuri Chornoivan Language-Team: Ukrainian (http://www.transifex.com/freedesktop/realmd/language/uk/) Language: uk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3); Домен з цією назвою вже Ð½Ð°Ð»Ð°ÑˆÑ‚Ð¾Ð²Ð°Ð½Ð¾Ð†Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача-адмініÑтратора або пароль не Ñ” чиннимиУ файлі налаштувань sssd.conf вже Ñ” Ð·Ð°Ð¿Ð¸Ñ Ð´Ð¾Ð¼ÐµÐ½Ñƒ %sВже долучено до доменуУже долучено до іншого домену: %sВже долучено до цього доменуВже виконуєтьÑÑ Ñ–Ð½ÑˆÐ° діÑÐ”Ð»Ñ Ð·Ð¼Ñ–Ð½Ð¸Ñ‚Ð¸ правил щодо того, хто може входити до цієї ÑиÑтеми, Ñлід пройти розпізнаваннÑ.Щоб отримати доÑтуп до виÑÐ²Ð»ÐµÐ½Ð½Ñ Ð¾Ð±Ð»Ð°Ñті Kerberos, Ñлід пройти розпізнаваннÑÐ”Ð»Ñ Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ комп’ютера до облаÑті або домену Ñлід пройти розпізнаваннÑÐ”Ð»Ñ Ð²Ð¸Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ комп’ютера з облаÑті або домену Ñлід пройти розпізнаваннÑ.Ð”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ цієї облаÑті неможливеУ автономному режимі роботи надÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð·Ð°Ð¿Ð¸Ñ‚Ñ–Ð² щодо Ð²Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½ÐµÐ¼Ð¾Ð¶Ð»Ð¸Ð²ÐµÐ—Ð¼Ñ–Ð½Ð° правил входуDN OU комп’ютера Ð´Ð»Ñ Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½ÑÐалаштована команда Ñ” некоректною: %sÐалаштованої команди не знайдено: %sÐе вдалоÑÑ Ð¿Ñ€Ð¾Ð¹Ñ‚Ð¸ Ñ€Ð¾Ð·Ð¿Ñ–Ð·Ð½Ð°Ð²Ð°Ð½Ð½Ñ Ñк %sÐе вдалоÑÑ Ð·Ð¼Ñ–Ð½Ð¸Ñ‚Ð¸ ÑпиÑок допущених кориÑтувачівÐе вдалоÑÑ Ð²Ñтановити зв’Ñзок зі Ñлужбою обÑÐ»ÑƒÐ³Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð±Ð»Ð°ÑтіÐе вдалоÑÑ Ð²Ñтановити Ð·â€™Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· каналом обміну даних ÑиÑтемиÐе вдалоÑÑ Ñтворити файл кешу реєÑтраційних даних: %s: %sÐе вдалоÑÑ Ñтворити робочий каталог: %s: %sÐе вдалоÑÑ Ñтворити ÑокетÐе вдалоÑÑ Ñтворити пару Ñокетів: %sÐе вдалоÑÑ Ð²Ð¸Ñвити облаÑтіÐе вдалоÑÑ Ñ–Ð½Ñ–Ñ†Ñ–Ð°Ð»Ñ–Ð·ÑƒÐ²Ð°Ñ‚Ð¸ KerberosÐе вдалоÑÑ Ð´Ð¾Ð»ÑƒÑ‡Ð¸Ñ‚Ð¸ÑÑ Ð´Ð¾ облаÑтіÐе вдалоÑÑ Ð¿Ð¾Ð»Ð¸ÑˆÐ¸Ñ‚Ð¸ облаÑтьÐе вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸ Ñлужбу обÑÐ»ÑƒÐ³Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð±Ð»Ð°ÑтіÐе вдалоÑÑ Ð¾Ð±Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸ Ñ–Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача: %sÐе вдалоÑÑ Ð½Ð°Ð´Ñ–Ñлати запит щодо паролÑ: %sÐе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ дані з кешу реєÑтраційних данихÐе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ реєÑтраційні дані kerberosÐе вдалоÑÑ Ð²Ñтановити шлÑÑ… до кешу реєÑтраційних данихÐе вдалоÑÑ Ð·Ð°Ð¿ÑƒÑтити realmdÐе вдалоÑÑ Ð²Ð¸Ð±Ñ€Ð°Ñ‚Ð¸ реєÑтраційні дані kerberosÐе вдалоÑÑ Ð·Ð°Ð¿Ð¸Ñати файл налаштувань: %sЗаборонити вхід Ð´Ð»Ñ ÑƒÑÑ–Ñ… облікових запиÑів облаÑтіЗаборонити вхід кориÑтувачамВиÑвити доÑтупну облаÑтьВиÑÐ²Ð»ÐµÐ½Ð½Ñ Ð¾Ð±Ð»Ð°ÑтіÐе проÑити про Ð²Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð´Ð°Ð½Ð¸Ñ…Ð£ файлі налаштувань sssd.conf немає запиÑу домену %sСпроба Ð²Ð¼Ð¸ÐºÐ°Ð½Ð½Ñ SSSD у nsswitch.conf Ñ– PAM зазнала невдачі.ЗареєÑтрувати цей комп’ютер у облаÑтіРеєÑтрації у цьому домену з викориÑтаннÑм Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ðµ передбаченоÐе вдалоÑÑ Ð·Ð¼Ñ–Ð½Ð¸Ñ‚Ð¸ ÑпиÑок допущених кориÑтувачів. Див. діагноÑтичні повідомленнÑ.Ðе вдалоÑÑ Ð²Ð¸Ñвити облаÑть. Див. діагноÑтичні повідомленнÑ.Ðе вдалоÑÑ Ð·Ð°Ñ€ÐµÑ”Ñтрувати комп’ютер у облаÑті. Див. діагноÑтичні повідомленнÑ.Ðе вдалоÑÑ ÑкаÑувати реєÑтрацію комп’ютера у облаÑті. Див. діагноÑтичні повідомленнÑ.Ðе можна вказувати групи, Ñкщо викориÑтано параметр -a або --allÐ’Ñтановити режим до вказаного префікÑом каталогуВÑтановлюємо потрібні пакункиУ некоректному параметрі входу, «%s», міÑÑ‚ÑтьÑÑ Ñимволи, підтримки Ñких не передбачено.Ðекоректний аргумент кориÑтувача%s%s%s не відповідає формату запиÑу кориÑтувача.Ðекоректний пароль до %sÐекоректне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð° %s: %sÐвтоматично долучати без паролÑÐ”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ ÐºÐ¾Ð¼Ð¿â€™ÑŽÑ‚ÐµÑ€Ð° до облаÑтіДолучати на оÑнові попередньо вÑтановленого одноразового паролÑÐ”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ домену на оÑнові одноразового Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð¿ÐµÑ€ÐµÐ´Ð±Ð°Ñ‡ÐµÐ½Ð¾ лише у разі викориÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð½Ð¾Ð³Ð¾ Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‡Ð»ÐµÐ½Ñтвом «%sÂ»Ð”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ домену на оÑнові Ð¿Ð°Ñ€Ð¾Ð»Ñ ÐºÐ¾Ñ€Ð¸Ñтувача передбачено лише у разі викориÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð½Ð¾Ð³Ð¾ Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‡Ð»ÐµÐ½Ñтвом «%s»Підтримки Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ цього домену не передбаченоПідтримки Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ цього домену з викориÑтаннÑм кешу реєÑтраційних даних не передбаченоПідтримки Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ цього домену з викориÑтаннÑм ключа не Ð¿ÐµÑ€ÐµÐ´Ð±Ð°Ñ‡ÐµÐ½Ð¾Ð”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ цього домену без реєÑтраційних даних не передбаченоУ LDAP на цій ÑиÑтемі не передбачено підтримки з’єднань UDPПідтримки Ð¿Ð¾Ð»Ð¸ÑˆÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ домену не передбаченоПідтримки Ð¿Ð¾Ð»Ð¸ÑˆÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ домену з викориÑтаннÑм кешу реєÑтраційних даних не Ð¿ÐµÑ€ÐµÐ´Ð±Ð°Ñ‡ÐµÐ½Ð¾ÐŸÐ¾Ð»Ð¸ÑˆÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ домену без реєÑтраційних даних не передбаченоПоказати ÑпиÑок відомих облаÑтейÐе вÑтановлено потрібні Ð´Ð»Ñ Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸ пакунки: %sÐ”Ð»Ñ Ð²Ð¸Ñ…Ð¾Ð´Ñƒ з цього домену Ñлід вказати реєÑтраційні даніÐе виÑвлено типової облаÑтіÐе можна вказувати назви запиÑів Ð´Ð»Ñ Ð²Ñ…Ð¾Ð´Ñƒ, Ñкщо викориÑтано параметр -a або --allТакої облаÑті не знайденоТакої облаÑті не знайдено: %sÐе уповноважено на Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñ†Ñ–Ñ”Ñ— діїЗараз не долучено до цього доменуЗараз не долучено до цієї облаÑтіÐе долучено до цього доменуДію було ÑкаÑовано.Пароль до %s: Дозволити вхід Ð´Ð»Ñ ÑƒÑÑ–Ñ… облікових запиÑів облаÑтіДозволити вхід кориÑÑ‚ÑƒÐ²Ð°Ñ‡Ð°Ð¼ÐŸÑ€Ð¾Ñ†ÐµÑ Ð±ÑƒÐ»Ð¾ перервано з таким Ñигналом: %dУ облаÑті не передбачено автоматичного членÑтваУ облаÑті не передбачено членÑтва на оÑнові одноразового паролÑУ облаÑті не передбачено членÑтва на оÑнові паролÑОблаÑть до Ñкої Ñлід дозволити або заборонити вхідОтримано некоректні або непідтримувані дані Netlogon від ÑервераВилучити комп’ютер з облаÑÑ‚Ñ–Ð’Ð¸Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ ÐºÐ¾Ð¼Ð¿â€™ÑŽÑ‚ÐµÑ€Ð° з облаÑтіВÑтановити реєÑтраційний Ð·Ð°Ð¿Ð¸Ñ ÐºÐ¾Ñ€Ð¸Ñтувача Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ облікового запиÑу комп’ютераПоказати вÑÑ– виÑвлені облаÑтіПоказувати вÑÑ– облаÑтіПоказувати лише назвиПропущено таку команду: %sОкремі Ð·Ð°Ð¿Ð¸Ñ Ñлід вказувати за допомогою --withdrawВказати одну облаÑть Ð´Ð»Ñ Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½ÑВказати назви запиÑів певних кориÑтувачів, Ñкі Ñлід додати або вилучити зі ÑпиÑку Ð´Ð¾Ð·Ð²Ð¾Ð»ÐµÐ½Ð¸Ñ…Ð’Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð°Ð±Ð¾Ñ€Ð¾Ð½Ð¸ без параметра --all вважаєтьÑÑ Ð·Ð°Ñтарілим. СкориÑтайтеÑÑ Ð²Ñ–Ð´ÐºÐ»Ð¸ÐºÐ°Ð½Ð½Ñ Ð´Ð¾Ñтуп Ð´Ð»Ñ Ð¾Ð±Ð»Ð°Ñті за допомогою параметра --withdrawПараметр --no-password не можна викориÑтовувати разом з параметрами --one-time-password Ñ– --userПараметр --one-time-password не можна викориÑтовувати разом з параметром --userПід Ñ‡Ð°Ñ Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð°Ð±Ð¾Ñ€Ð¾Ð½Ð¸ входу не можна викориÑтовувати параметр --withdraw або -xÐадавач доÑтупу Samba не може обмежувати перелік дозволених кориÑтувачів.Підтримки параметра computer-ou Ð´Ð»Ñ Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ домену IPA не передбачено.Ці пакунки не доÑтупні Ð´Ð»Ñ Ð²ÑтановленнÑ: %sДію було ÑкаÑованоУ облаÑті заборонено Ð²ÐºÐ°Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ñ€Ð¸ÑтувачівВважати імена назвами груп, Ñким Ñлід надати доÑтупВимкнути автоматичне прив’ÑÐ·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ–Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ñ–ÐºÐ°Ñ‚Ð¾Ñ€Ñ–Ð²Ðе вдалоÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾ долучитиÑÑ Ð´Ð¾ доменуСкаÑувати реєÑтрацію цього комп’ютера у облаÑтіСкаÑÑƒÐ²Ð°Ð½Ð½Ñ Ñ€ÐµÑ”Ñтрації у цьому домену з викориÑтаннÑм Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ðµ передбаченоСкаÑÑƒÐ²Ð°Ð½Ð½Ñ Ñ€ÐµÑ”Ñтрації у цьому домену з викориÑтаннÑм ключа не передбаченоÐепідтримувані реєÑтраційні дані Ð´Ð»Ñ Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ доменуÐепідтримуване або невідоме програмне Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‡Ð»ÐµÐ½Ñтвом, «%s»СкориÑтайтеÑÑ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¾Ð¼ --all, щоб заборонити вхід уÑімВикориÑтовувати Ñпецифічне клієнтÑьке програмне забезпеченнÑВикориÑтовувати Ñпецифічне програмне Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‡Ð»ÐµÐ½ÑтвомВикориÑтовувати Ñпецифічне Ñерверне програмне забезпеченнÑÐ†Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача Ð´Ð»Ñ Ñ€ÐµÑ”ÑÑ‚Ñ€Ð°Ñ†Ñ–Ñ—Ð†Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача Ð´Ð»Ñ Ð²Ð¸Ð»ÑƒÑ‡ÐµÐ½Ð½ÑРежим докладних повідомленьВідкликати дозвіл входу Ð´Ð»Ñ Ð¾Ð±Ð»Ñ–ÐºÐ¾Ð²Ð¾Ð³Ð¾ запиÑу облаÑтіrealmd-0.17.1/po/et.po0000644003225100322510000003346514315277002014756 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Estonian (http://www.transifex.com/freedesktop/realmd/" "language/et/)\n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/pt.po0000644003225100322510000004725614315277002014774 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Pedro Albuquerque , 2015 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 19:43+0000\n" "Last-Translator: Pedro Albuquerque \n" "Language-Team: Portuguese (http://www.transifex.com/freedesktop/realmd/" "language/pt/)\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Descobrir o reino" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "É necessária autenticação para descobrir um reino kerberos" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Juntar máquina ao reino" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "É necessária autenticação para juntar esta máquina a um reino ou domínio" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Remover máquina do reino" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "É necessária autenticação para remover esta máquina de um reino ou domínio." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Alterar política dos inícios de sessão" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "É necessária autenticação para alterar a política de quem pode iniciar " "sessão neste computador." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "O processo terminou com o sinal %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "A operação foi cancelada" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Comando configurado não encontrado: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Comando saltado: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Comando configurado inválido: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "O servidor enviou dados Netlogon inválidos ou não suportados" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "O LDAP neste sistema não suporta ligações UDP" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Programa \"%s\" não suportado ou desconhecido" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Já se juntou a um domínio" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Nome ou senha de administrador não são válidos" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Não está atualmente junto a este domínio" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "São necessárias credenciais para sair deste domínio" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Impossível escrever a configuração: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Não está autorizado a realizar esta ação" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "A operação foi cancelada" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Falha ao inscrever a máquina no reino. Veja o diagnóstico." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "Falha ao desinscrever a máquina no domínio. Veja o diagnóstico." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Juntar-se a este reino sem credenciais não é suportado" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "Sair deste reino sem credenciais não é suportado" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "Juntar-se a este reino com uma cache de credenciais não é suportado" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "Sair deste reino com uma cache de credenciais não é suportado" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Juntar-se a este reino usando um segredo não é suportado" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Desinscrever-se deste reino usando um segredo não é suportado" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Inscrever-se neste reino usando uma senha não é suportado" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Desinscrever-se deste reino usando uma senha não é suportado" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Juntar-se a este reino não é suportado" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Sair deste reino não é suportado" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Já há outra ação em execução" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Já está junto a outro domínio: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "Falha ao alterar sessões permitidas. Veja o diagnóstico." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "O reino não permite especificar sessões" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "Argumento%s%s%s se início de sessão inválido, não corresponde ao formato de " "sessão." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Os seguintes pacotes não estão disponíveis para instalação: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Não estão instalados pacotes necessários: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "A instalar pacotes necessários" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Falha ao descobrir o reino. Veja o diagnóstico." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Não está junto a este domínio." #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "O fornecedor Samba não pode restringir sessões permitidas." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "Argumento \"%s\" de sessão inválido contém caracteres não suportados." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Falha ao ativar SSSD em nsswitch.conf e PAM." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Impossível juntar-se automaticamente ao domínio" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Juntar-se a um domínio com uma senha de utilização única só é suportado com " "o programa de membros \"%s\"" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Juntar-se a um domínio com uma senha de utilizador só é suportado com o " "programa de membros \"%s\"" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Credenciais não suportadas para se juntar a um domínio" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Já se juntou a este domínio" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Já está configurado um domínio com este nome" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "O domínio %s já está no ficheiro de configuração sssd.conf" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "O domínio %s não está no ficheiro de configuração sssd.conf" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "O argumento computer-ou não é suportado ao juntar-se a um domínio IPA." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "O argumento computer-ou não é suportado ao juntar-se a um domínio IPA." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Não está atualmente junto a este reino" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Descobrir reino disponível" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Inscrever esta máquina num reino" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Desinscrever esta máquina de um reino" #: tools/realm.c:43 msgid "List known realms" msgstr "Listar reinos conhecidos" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Permitir sessões de utilizador" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Negar sessões de utilizador" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Valor inválido para a opção %s: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Instalar modo num prefixo específico" #: tools/realm.c:215 msgid "Verbose output" msgstr "Saída verbosa" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Não pedir entrada" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Impossível ligar ao serviço do reino" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Impossível carregar o serviço do reino" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Impossível ligar ao bus do sistema" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Impossível criar par da tomada: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Impossível criar tomada" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Impossível executar o realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Impossível criar pasta de execução: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Impossível criar ficheiro de cache de credencial: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Impossível resolver a cache de credencial" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Senha inválida para %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Impossível autenticar como %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Impossível processar nome de utilizador: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Impossível ler cache de credencial" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Impossível inicializar kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "Impossível pedir uma senha quando excutado em modo não assistido" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Senha para %s: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Impossível pedir senha: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "O reino não suporta adesão usando uma senha" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "O reino não suporta adesão usando senha de utilização única" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Impossível selecionar as credenciais kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Impossível ler as credenciais kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "O reino não suporta adesão automática" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Impossível descobrir reinos" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Sem reino predefinido" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Não se encontrou tal reino: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Mostrar todos os reinos descobertos" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Mostrar só os nomes" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Usar programa de cliente específico" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Usar programa de adesão específico" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Usar programa de servidor específico" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Mostrar todos os reinos" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Impossível juntar-se ao reino" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Impossível juntar-se a este reino" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Não se encontrou tal reino" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Desligar mapeamento de id automático" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Usar programa de cliente específico" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "OU DN de computador para se juntar" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Juntar-se automaticamente sem senha" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Juntar-se usando uma senha predefinida de utilização única" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Usar programa de cliente específico" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Usar programa de servidor específico" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Nome de utilizador para a inscrição" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Definir o principal do utilizador para a conta do computador" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Especifique um reino para se juntar" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "O argumento --no-password não pode ser usado com --one-time-password ou --" "user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "O argumento --one-time-password não pode ser usado com --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Impossível sair do reino" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Remover computador do reino" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Nome de utilizador a usar para remoção" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Impossível alterar sessões permitidas" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Permitir sessão de qualquer conta do reino" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Negar sessão de qualquer conta do reino" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Retirar permissão de sessão a uma conta do reino" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Tratar nomes como grupos aos quais permitir" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Reino ao qual permitir/negar sessões" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Não pode especificar sessões com -a ou --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "Os argumentos --withdraw ou -x não podem ser usados ao negar sessões" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Sessões específicas têm de ser declaradas com --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Os grupos não podem ser especificados com -a ou --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Use --all para negar todas as sessões" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Declare utilizadores específicos para adicionar ou remover da lista de " "permitidos" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Especificar negação com --all é obsoleto. Use permissão de reino --withdraw" realmd-0.17.1/po/gu.gmo0000644003225100322510000000073514315277003015120 0ustar00sbosesbose00000000000000Þ•$,8£9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Gujarati (http://www.transifex.com/freedesktop/realmd/language/gu/) Language: gu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/kk.gmo0000644003225100322510000000073114315277003015106 0ustar00sbosesbose00000000000000Þ•$,8Ÿ9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Kazakh (http://www.transifex.com/freedesktop/realmd/language/kk/) Language: kk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n!=1); realmd-0.17.1/po/te.gmo0000644003225100322510000000073314315277003015113 0ustar00sbosesbose00000000000000Þ•$,8¡9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Telugu (http://www.transifex.com/freedesktop/realmd/language/te/) Language: te MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/zh_TW.po0000644003225100322510000003347414315277003015402 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/freedesktop/realmd/" "language/zh_TW/)\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/th.po0000644003225100322510000003345214315277003014756 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Thai (http://www.transifex.com/freedesktop/realmd/language/" "th/)\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/nl.gmo0000644003225100322510000000073214315277003015113 0ustar00sbosesbose00000000000000Þ•$,8 9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Dutch (http://www.transifex.com/freedesktop/realmd/language/nl/) Language: nl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/pa.gmo0000644003225100322510000000074614315277003015107 0ustar00sbosesbose00000000000000Þ•$,8¬9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Panjabi (Punjabi) (http://www.transifex.com/freedesktop/realmd/language/pa/) Language: pa MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/ms.gmo0000644003225100322510000000072314315277003015121 0ustar00sbosesbose00000000000000Þ•$,8™9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Malay (http://www.transifex.com/freedesktop/realmd/language/ms/) Language: ms MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; realmd-0.17.1/po/fr.gmo0000644003225100322510000000451514315277003015114 0ustar00sbosesbose00000000000000Þ•´LÀ#ÁåS7TDŒJÑ0 Op#•&¹àú"> [7ü4mQI¿T N^"­"Ð&ó1-O0}®Îê -      Admin name or password is not validAlready joined to a domainAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Change login policyConfigured command invalid: %sConfigured command not found: %sDiscover realmJoin machine to realmNot currently joined to this domainProcess was terminated with signal: %dRemove machine from realmShow only the namesSkipped command: %sThe operation was cancelledUse --all to deny all loginsProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-19 16:36+0000 Last-Translator: Stef Walter Language-Team: French (http://www.transifex.com/freedesktop/realmd/language/fr/) Language: fr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); Le nom ou mot de passe de l'administrateur est invalideDéjà adjoint à un domaineL'authentification est nécessaire afin de modifier la politique de qui peut se connecter sur cet ordinateur.L'authentification est nécessaire afin de découvrir un domaine kerberosL'authentification est nécessaire afin d'inscrire cette machine au domaine kerberosL'authentification est nécessaire afin de supprimer cette machine du domaine.Modifier la politique de connexionCommande configurée invalide : %sCommande configurée introuvable : %sDécouverte du domaineJoindre la machine au domaineActuellement disjoint d'un quelconque domaineLe processus s'est terminé avec un signal : %dSupprimer la machine du domaineAfficher seulement les nomsCommande sautée : %sL'opération a été annuléeUtiliser --add pour interdire toute connexionrealmd-0.17.1/po/boldquot.sed0000644003225100322510000000033114315276770016331 0ustar00sbosesbose00000000000000s/"\([^"]*\)"/“\1â€/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“â€/""/g s/“/“/g s/â€/â€/g s/‘/‘/g s/’/’/g realmd-0.17.1/po/bn_IN.po0000644003225100322510000003350214315277002015323 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Bengali (India) (http://www.transifex.com/freedesktop/realmd/" "language/bn_IN/)\n" "Language: bn_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/nn.gmo0000644003225100322510000000074614315277003015122 0ustar00sbosesbose00000000000000Þ•$,8¬9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Norwegian Nynorsk (http://www.transifex.com/freedesktop/realmd/language/nn/) Language: nn MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); realmd-0.17.1/po/en@boldquot.header0000644003225100322510000000247114315276770017440 0ustar00sbosesbose00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # # This catalog furthermore displays the text between the quotation marks in # bold face, assuming the VT100/XTerm escape sequences. # realmd-0.17.1/po/zh_TW.gmo0000644003225100322510000000074414315277003015540 0ustar00sbosesbose00000000000000Þ•$,8ª9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Chinese (Taiwan) (http://www.transifex.com/freedesktop/realmd/language/zh_TW/) Language: zh_TW MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; realmd-0.17.1/po/ja.po0000644003225100322510000005441414315277002014735 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Hajime Taira , 2013 # Takuro Onoue , 2021 # e93ed3aa97dec2eb31063731872555fc_1460a05 <71305a0095156d8e18373a5b7cfeb79e_8587>, 2013 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2021-01-22 02:39+0000\n" "Last-Translator: Takuro Onoue \n" "Language-Team: Japanese (http://www.transifex.com/freedesktop/realmd/" "language/ja/)\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "レルムを検出ã™ã‚‹" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Kerberosレルムを検出ã™ã‚‹ã«ã¯èªè¨¼ãŒå¿…è¦ã§ã™" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "マシンをレルムã«å‚加ã•ã›ã‚‹" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "ã“ã®ãƒžã‚·ãƒ³ã‚’レルムã¾ãŸã¯ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã•ã›ã‚‹ã«ã¯èªè¨¼ãŒå¿…è¦ã§ã™" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "レルムã‹ã‚‰ãƒžã‚·ãƒ³ã‚’削除ã—ã¾ã™" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "ã“ã®ã‚³ãƒ³ãƒ”ューターをレルムã¾ãŸã¯ãƒ‰ãƒ¡ã‚¤ãƒ³ã‹ã‚‰å‰Šé™¤ã™ã‚‹ã«ã¯ã€èªè¨¼ãŒå¿…è¦ã§ã™ã€‚" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "ログインãƒãƒªã‚·ãƒ¼ã®å¤‰æ›´" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "ã“ã®ã‚³ãƒ³ãƒ”ューターをレルムã¾ãŸã¯ãƒ‰ãƒ¡ã‚¤ãƒ³ã‹ã‚‰å‰Šé™¤ã™ã‚‹ã«ã¯ã€èªè¨¼ãŒå¿…è¦ã§ã™ã€‚" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "プロセスã¯ã“ã®ã‚·ã‚°ãƒŠãƒ«ã§çµ‚了ã—ã¾ã—ãŸ: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "æ“作ãŒã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•れã¾ã—ãŸ" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "設定ã•れãŸã‚³ãƒžãƒ³ãƒ‰ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "スキップã—ãŸã‚³ãƒžãƒ³ãƒ‰: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "設定ã•れãŸã‚³ãƒžãƒ³ãƒ‰ãŒç„¡åй: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" "サーãƒãƒ¼ã‹ã‚‰ç„¡åйã¾ãŸã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ãªã„ Netlogon データをå—ä¿¡ã—ã¾ã—ãŸ" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "ã“ã®ã‚·ã‚¹ãƒ†ãƒ ã® LDAP 㯠UDP 接続をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "サãƒãƒ¼ãƒˆã•れã¦ã„ãªã„ã€ã¾ãŸã¯ä¸æ˜Žãªãƒ¡ãƒ³ãƒãƒ¼ã‚·ãƒƒãƒ—ソフトウェア '%s'" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "ã™ã§ã«ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加済ã¿" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "管ç†è€…åã¾ãŸã¯ãƒ‘スワードãŒç„¡åйã§ã™" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "ç¾åœ¨ã“ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã—ã¦ã„ã¾ã›ã‚“" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "ã“ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã‚’離れるã«ã¯è³‡æ ¼æƒ…å ±ãŒå¿…è¦ã§ã™" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "設定を書ã出ã™ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸ: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "ã“ã®ã‚¢ã‚¯ã‚·ãƒ§ãƒ³ã‚’実行ã™ã‚‹æ¨©é™ãŒã‚りã¾ã›ã‚“" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "æ“作ã¯ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•れã¾ã—ãŸã€‚" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "マシンをレルムã«ç™»éŒ²ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚診断をå‚ç…§ã—ã¦ãã ã•ã„。" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "ドメインã‹ã‚‰ãƒžã‚·ãƒ³ã®ç™»éŒ²è§£é™¤ã«å¤±æ•—ã—ã¾ã—ãŸã€‚診断をå‚ç…§ã—ã¦ãã ã•ã„。" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "資格情報ãªã—ã§ã“ã®ãƒ¬ãƒ«ãƒ ã«å‚加ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "資格情報ãªã—ã§ã“ã®ãƒ¬ãƒ«ãƒ ã‚’離れるã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "資格情報キャッシュを使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã¸å‚加ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "資格情報キャッシュを使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã‚’離れるã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "secret を使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã¸å‚加ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" "secret を使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã‹ã‚‰ç™»éŒ²è§£é™¤ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "パスワードを使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã‚’登録ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" "パスワードを使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã‚’登録解除ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "ã“ã®ãƒ¬ãƒ«ãƒ ã¸ã®å‚加ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "ã“ã®ãƒ¬ãƒ«ãƒ ã‚’離れるã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "ã™ã§ã«ä»–ã®æ“作ãŒå®Ÿè¡Œä¸­" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "ã™ã§ã«åˆ¥ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã—ã¦ã„ã¾ã™: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "許å¯ã•れãŸãƒ­ã‚°ã‚¤ãƒ³ã®å¤‰æ›´ã«å¤±æ•—ã—ã¾ã—ãŸã€‚診断をå‚ç…§ã—ã¦ãã ã•ã„。" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "レルムã§ã¯ãƒ­ã‚°ã‚¤ãƒ³ã‚’指定ã§ãã¾ã›ã‚“" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "無効ãªãƒ­ã‚°ã‚¤ãƒ³å¼•æ•° %s %s %s ãŒãƒ­ã‚°ã‚¤ãƒ³å½¢å¼ã¨ä¸€è‡´ã—ã¾ã›ã‚“。" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "次ã®ãƒ‘ッケージã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã§ãã¾ã›ã‚“: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "å¿…è¦ãªãƒ‘ッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã¾ã›ã‚“: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "å¿…è¦ãªãƒ‘ッケージã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "ãƒ¬ãƒ«ãƒ ã®æ¤œå‡ºã«å¤±æ•—ã—ã¾ã—ãŸã€‚診断をå‚ç…§ã—ã¦ãã ã•ã„。" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "ã“ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã—ã¦ã„ã¾ã›ã‚“" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Samba プロãƒã‚¤ãƒ€ãƒ¼ã¯ã€è¨±å¯ã•れãŸãƒ­ã‚°ã‚¤ãƒ³ã‚’制é™ã§ãã¾ã›ã‚“。" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "無効ãªãƒ­ã‚°ã‚¤ãƒ³å¼•æ•° '%s' ã«ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ãªã„文字ãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "nsswitch.conf ãŠã‚ˆã³ PAM ã§ SSSD を有効ã«ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "ドメインã«è‡ªå‹•çš„ã«å‚加ã§ãã¾ã›ã‚“" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "ワンタイムパスワードã§ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã™ã‚‹ã“ã¨ã¯ã€'%s' メンãƒãƒ¼ã‚·ãƒƒãƒ—ソフトウェ" "ã‚¢ã§ã®ã¿ã‚µãƒãƒ¼ãƒˆã•れã¾ã™" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "ユーザーパスワードを使用ã—ã¦ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã™ã‚‹ã“ã¨ã¯ã€'%s' メンãƒãƒ¼ã‚·ãƒƒãƒ—ソフ" "トウェアã§ã®ã¿ã‚µãƒãƒ¼ãƒˆã•れã¾ã™" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "ドメインã«å‚加ã™ã‚‹ãŸã‚ã®ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ãªã„資格情報" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "ã™ã§ã«ã“ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加済ã¿" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "ã“ã®åå‰ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã¯ã™ã§ã«è¨­å®šã•れã¦ã„ã¾ã™" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "sssd.conf 設定ファイルã«ã™ã§ã«ãƒ‰ãƒ¡ã‚¤ãƒ³ %s ãŒã‚りã¾ã™" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "sssd.conf 設定ファイルã«ãƒ‰ãƒ¡ã‚¤ãƒ³ %s ãŒã‚りã¾ã›ã‚“" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "IPA ドメインã«å‚加ã™ã‚‹å ´åˆã€computer-ou 引数ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“。" #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "IPA ドメインã«å‚加ã™ã‚‹å ´åˆã€computer-ou 引数ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“。" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "ç¾åœ¨ã€ã“ã®ãƒ¬ãƒ«ãƒ ã«å‚加ã—ã¦ã„ã¾ã›ã‚“" #: tools/realm.c:40 msgid "Discover available realm" msgstr "利用å¯èƒ½ãªãƒ¬ãƒ«ãƒ ã‚’検出ã™ã‚‹" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "ã“ã®ãƒžã‚·ãƒ³ã‚’レルムã«ç™»éŒ²ã™ã‚‹" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "ã“ã®ãƒžã‚·ãƒ³ã‚’レルムã‹ã‚‰ç™»éŒ²è§£é™¤ã™ã‚‹" #: tools/realm.c:43 msgid "List known realms" msgstr "既知ã®ãƒ¬ãƒ«ãƒ ã‚’一覧表示ã™ã‚‹" #: tools/realm.c:44 msgid "Permit user logins" msgstr "ユーザーã®ãƒ­ã‚°ã‚¤ãƒ³ã‚’許å¯" #: tools/realm.c:45 msgid "Deny user logins" msgstr "ユーザーã®ãƒ­ã‚°ã‚¤ãƒ³ã‚’æ‹’å¦" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "%s オプションã®å€¤ãŒç„¡åйã§ã™: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "特定ã®ãƒ—レフィックスã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ãƒ¢ãƒ¼ãƒ‰ã‚’設定ã™ã‚‹" #: tools/realm.c:215 msgid "Verbose output" msgstr "詳細ãªå‡ºåŠ›" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "å…¥åŠ›ã‚’è¦æ±‚ã—ãªã„ã§ãã ã•ã„" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "ãƒ¬ãƒ«ãƒ ã‚µãƒ¼ãƒ“ã‚¹ã«æŽ¥ç¶šã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "レルムサービスをロードã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "システムãƒã‚¹ã«æŽ¥ç¶šã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "ソケットペアを作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "ソケットを生æˆã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "realmd ã‚’èµ·å‹•ã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "ランタイムディレクトリを作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "資格情報キャッシュファイルを作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "資格情報キャッシュを解決ã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "%s ã«å¯¾ã™ã‚‹ç„¡åйãªãƒ‘スワード" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "%s ã¨ã—ã¦èªè¨¼ã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "ユーザーåをパースã§ãã¾ã›ã‚“ã§ã—ãŸ: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "資格情報キャッシュを読ã¿å–れã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "kerberos ã‚’åˆæœŸåŒ–ã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "無人モードã§å®Ÿè¡Œã—ã¦ã„ã‚‹å ´åˆã€ãƒ‘スワードã®å…¥åŠ›ã‚’æ±‚ã‚ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "%s ã«å¯¾ã™ã‚‹ãƒ‘スワード:" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "パスワードã®å…¥åŠ›ã‚’æ±‚ã‚ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸ: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "レルムã¯ãƒ‘スワードを使用ã—ãŸãƒ¡ãƒ³ãƒãƒ¼ã‚·ãƒƒãƒ—をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" "レルムã¯ãƒ¯ãƒ³ã‚¿ã‚¤ãƒ ãƒ‘スワードを使用ã—ãŸãƒ¡ãƒ³ãƒãƒ¼ã‚·ãƒƒãƒ—をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "kerberos è³‡æ ¼æƒ…å ±ã‚’é¸æŠžã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "kerberos 資格情報を読ã¿å–れã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "レルムã¯è‡ªå‹•メンãƒãƒ¼ã‚·ãƒƒãƒ—をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "レルムを検出ã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "デフォルトã®ãƒ¬ãƒ«ãƒ ã¯æ¤œå‡ºã•れã¾ã›ã‚“" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "ãã®ã‚ˆã†ãªãƒ¬ãƒ«ãƒ ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "検出ã•れãŸã™ã¹ã¦ã®ãƒ¬ãƒ«ãƒ ã‚’表示" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "åå‰ã ã‘表示" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "特定ã®ã‚¯ãƒ©ã‚¤ã‚¢ãƒ³ãƒˆã‚½ãƒ•トウェアを使用ã™ã‚‹" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "特定ã®ãƒ¡ãƒ³ãƒãƒ¼ã‚·ãƒƒãƒ—ソフトウェアを使用ã™ã‚‹" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "特定ã®ã‚µãƒ¼ãƒãƒ¼ã‚½ãƒ•トウェアを使用ã™ã‚‹" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "ã™ã¹ã¦ã®ãƒ¬ãƒ«ãƒ ã‚’表示" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "レルムã«å‚加ã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "ã“ã®ãƒ¬ãƒ«ãƒ ã«å‚加ã§ãã¾ã›ã‚“" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "ãã®ã‚ˆã†ãªãƒ¬ãƒ«ãƒ ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "自動 ID マッピングをオフã«ã—ã¾ã™" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "特定ã®ã‚¯ãƒ©ã‚¤ã‚¢ãƒ³ãƒˆã‚½ãƒ•トウェアを使用ã™ã‚‹" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "コンピューター OU DN ã«å‚加ã™ã‚‹" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "パスワードãªã—ã§è‡ªå‹•çš„ã«å‚加" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "プリセットワンタイムパスワードを使用ã—ã¦å‚加ã™ã‚‹" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "特定ã®ã‚¯ãƒ©ã‚¤ã‚¢ãƒ³ãƒˆã‚½ãƒ•トウェアを使用ã™ã‚‹" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "特定ã®ã‚µãƒ¼ãƒãƒ¼ã‚½ãƒ•トウェアを使用ã™ã‚‹" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "登録ã«ä½¿ç”¨ã™ã‚‹ãƒ¦ãƒ¼ã‚¶ãƒ¼å" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "コンピューターアカウントã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ãƒ—リンシパルを設定ã™ã‚‹" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "å‚加ã™ã‚‹ãƒ¬ãƒ«ãƒ ã‚’1ã¤æŒ‡å®šã™ã‚‹" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "--no-password 引数ã¯ã€-one-time-password ã¾ãŸã¯ --user ã¨ä¸€ç·’ã«ä½¿ç”¨ã™ã‚‹ã“ã¨ã¯" "ã§ãã¾ã›ã‚“。" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "--one-time-password 引数㯠--user ã¨ä¸€ç·’ã«ä½¿ç”¨ã§ãã¾ã›ã‚“" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "レルムを離れるã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "レルムã‹ã‚‰ã‚³ãƒ³ãƒ”ューターを削除" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "削除ã«ä½¿ç”¨ã™ã‚‹ãƒ¦ãƒ¼ã‚¶ãƒ¼å" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "許å¯ã•れãŸãƒ­ã‚°ã‚¤ãƒ³ã‚’変更ã§ãã¾ã›ã‚“ã§ã—ãŸ" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "レルムアカウントã®ãƒ­ã‚°ã‚¤ãƒ³ã‚’許å¯ã™ã‚‹" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "レルムアカウントã®ãƒ­ã‚°ã‚¤ãƒ³ã‚’æ‹’å¦ã™ã‚‹" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "レルムアカウントã®ãƒ­ã‚°ã‚¤ãƒ³ã®è¨±å¯ã‚’å–り消ã™" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "åå‰ã‚’許å¯ã™ã‚‹ã‚°ãƒ«ãƒ¼ãƒ—ã¨ã—ã¦æ‰±ã„ã¾ã™" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "ログインを許å¯/æ‹’å¦ã™ã‚‹ãƒ¬ãƒ«ãƒ " #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "-a ã¾ãŸã¯ --all を使用ã—ã¦ãƒ­ã‚°ã‚¤ãƒ³ã‚’指定ã—ãªã„ã§ãã ã•ã„" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "ログインを拒å¦ã™ã‚‹å ´åˆã€-withdraw ã¾ãŸã¯ -x 引数ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "特定ã®ãƒ­ã‚°ã‚¤ãƒ³ã¯ --withdraw ã§æŒ‡å®šã™ã‚‹å¿…è¦ãŒã‚りã¾ã™" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "グループを -a ã¾ãŸã¯ --all を指定ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "--all を使用ã—ã¦ã€ã™ã¹ã¦ã®ãƒ­ã‚°ã‚¤ãƒ³ã‚’æ‹’å¦ã—ã¾ã™" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "許å¯ãƒªã‚¹ãƒˆã«è¿½åŠ ã¾ãŸã¯å‰Šé™¤ã™ã‚‹ç‰¹å®šã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’指定ã—ã¾ã™" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "--all ãªã—ã§ deny を指定ã™ã‚‹ã“ã¨ã¯éžæŽ¨å¥¨ã§ã™ã€‚--withdraw ã§ãƒ¬ãƒ«ãƒ ã®ä½¿ç”¨ã‚’許å¯" "ã™ã‚‹" realmd-0.17.1/po/LINGUAS0000644003225100322510000000035514315014035015016 0ustar00sbosesbose00000000000000ar as az bg bn_IN ca ca@valencia cs cy da de el en_GB eo es et eu fa fi fo fr ga gl gu he hi hr hu ia id it ja ka kk kn ko lt lv ml mr ms nb nl nn oc or pa pl pt pt_BR ro ru si sk sl sq sr@latin sv ta te th tr uk vi wa zh_CN zh_HK zh_TW realmd-0.17.1/po/zh_HK.gmo0000644003225100322510000000074714315277003015513 0ustar00sbosesbose00000000000000Þ•$,8­9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Chinese (Hong Kong) (http://www.transifex.com/freedesktop/realmd/language/zh_HK/) Language: zh_HK MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; realmd-0.17.1/po/de.po0000644003225100322510000005037714315277002014737 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Benjamin Steinwender , 2014 # Ben Wiederhake , 2020 # Ettore Atalan , 2014-2015 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2020-10-23 11:54+0000\n" "Last-Translator: Ben Wiederhake \n" "Language-Team: German (http://www.transifex.com/freedesktop/realmd/language/" "de/)\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Bereich entdecken" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Legitimierung ist erforderlich, um einen Kerberos-Bereich zu entdecken" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Rechner einem Bereich beitreten" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Legitimierung ist erforderlich, damit dieser Rechner einem Bereich oder " "einer Domäne beitritt" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Rechner aus Bereich entfernen" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Legitimierung ist erforderlich, um diesen Rechner aus einem Bereich oder aus " "einer Domäne zu entfernen." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Anmelderichtlinie ändern" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Legitimierung ist zum Ändern der Richtlinie, wer sich auf diesem Rechner " "anmelden darf, notwendig." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Prozess wurde mit Signal %d beendet" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "Der Vorgang wurde abgebrochen" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Eingestellter Befehl nicht gefunden: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Befehl übersprungen: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Eingestellter Befehl ungültig: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Ungültige oder nicht unterstützde Netzlogin-Daten vom Server empfangen" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "LDAP auf diesem System unterstützt keine UDP-Verbindungen" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Nicht unterstützte oder unbekannte Mitgliedschafts-Software »%s«" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Bereits einer Domäne beigetreten" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Systemverwaltername oder -passwort ist nicht gültig" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Dieser Domäne derzeit nicht beigetreten" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Anmeldedaten sind zum Verlassen der Domäne erforderlich" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Konfiguration konnte nicht geschrieben werden: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Nicht berechtigt, diese Aktion auszuführen" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Vorgang wurde abgebrochen." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" "Rechner konnte nicht in den Bereich angemeldet werden. Schauen Sie in die " "Diagnose." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" "Rechner konnte nicht vom Bereich abgemeldet werden. Schauen Sie in die " "Diagnose." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Beitreten zu diesem Bereich wird ohne Anmeldedaten nicht unterstützt" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "Verlassen dieses Bereichs wird ohne Anmeldedaten nicht unterstützt" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "Beitreten zu diesem Bereich mit einem Anmeldedaten-Cache wird nicht " "unterstützt" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "Verlassen dieses Bereichs mit einem Anmeldedaten-Cache wird nicht unterstützt" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Beitreten zu diesem Bereich mit einem Geheimnis wird nicht unterstützt" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Verlassen dieses Bereichs mit einem Geheimnis wird nicht unterstützt" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Beitreten dieses Bereichs mit einem Passwort wird nicht unterstützt" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Verlassen dieses Bereichs mit einem Passwort wird nicht unterstützt" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Beitreten zu diesem Bereich wird nicht unterstützt" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Verlassen dieses Bereichs wird nicht unterstützt" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Es läuft bereits eine andere Aktion" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Bereits einer anderen Domäne beigetreten: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" "Fehler beim Ändern der zugelassenen Anmeldungen. Schauen Sie in die Diagnose." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "Dieser Bereich erlaubt das Präzisieren von Anmeldungen nicht" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "Ungültiges Anmeldeargument%s%s%s entspricht nicht dem Anmeldeformat." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Die folgenden Pakete sind nicht für eine Installation verfügbar: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Die notwendigen Pakete sind nicht installiert: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Benötigte Pakete werden installiert" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Fehler beim Entdecken des Bereichs. Schauen Sie in die Diagnose." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Dieser Domäne nicht beigetreten" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" "Der Samba-Anbieter kann die zugelassenen Anmeldungen nicht beschränken." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "Ungültiges Anmeldeargument '%s' enthält nicht unterstützte Zeichen." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Aktivierung von SSSD in nsswitch.conf und PAM ist fehlgeschlagen." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Der Domäne kann nicht automatisch beigetreten werden" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Das Beitreten zu einer Domäne mit einem Einmalpasswort wird nur mit der " "Mitgliedschafts-Software »%s« unterstützt" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Das Beitreten zu einer Domäne mit einem Nutzerpasswort wird nur mit der " "Mitgliedschafts-Software »%s« unterstützt" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Nicht unterstützte Anmeldedaten, um der Domäne beizutreten" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Dieser Domäne bereits beigetreten" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Eine Domäne mit diesem Namen ist bereits eingerichtet" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "Die Domäne %s ist bereits in der Datei sssd.conf eingerichtet" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "Die Domäne %s ist nicht in der Datei sssd.conf eingerichtet" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Diesem Bereich derzeit nicht beigetreten" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Verfügbaren Bereich entdecken" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Diesen Rechner in einem Bereich anmelden" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Diesen Rechner aus einem Bereich abmelden" #: tools/realm.c:43 msgid "List known realms" msgstr "Bekannte Bereiche auflisten" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Benutzeranmeldungen zulassen" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Benutzeranmeldungen verweigern" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Ungültiger Wert für Option %s: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "Detaillierte Ausgabe" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Nicht nach einer Eingabe fragen" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Mit dem Bereichsdienst konnte nicht verbunden werden" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Bereichsdienst konnte nicht geladen werden" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Verbindung zum Systembus konnte nicht hergestellt werden" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Socket-Paar konnte nicht erstellt werden: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Socket konnte nicht erstellt werden" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "realmd konnte nicht ausgeführt werden" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Laufzeit-Ordner konnte nicht erstellen werden: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Anmeldedaten-Cachedatei konnte nicht erstellt werden: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Anmeldedaten-Cache konnte nicht aufgelöst werden" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Ungültiges Passwort für »%s«" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Konnte nicht als %s authentifizieren" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Benutzername konnte nicht gelesen werden: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Anmeldedaten-Cache konnte nicht gelesen werden" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Kerberos konnte nicht initialisiert werden" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" "Kann nicht nach dem Passwort fragen, wenn im unbeaufsichtigten Modus " "ausgeführt" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Passwort für %s: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Es konnte nicht nach einem Passwort gefragt werden: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "Bereich unterstützt keine Mitgliedschaft mit einem Passwort" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "Bereich unterstützt keine Mitgliedschaft mit einem Einmalpasswort" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Kerberos-Anmeldedaten konnten nicht ausgewählt werden" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Kerberos-Anmeldedaten konnten nicht gelesen werden" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "Bereich unterstützt keine automatische Mitgliedschaft" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Bereiche konnten nicht entdeckt werden" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Kein Standardbereich entdeckt" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Kein solcher Bereich gefunden: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Alle entdeckten Bereiche anzeigen" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Nur die Namen anzeigen" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Bestimmte Client-Software verwenden" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Bestimmte Mitgliedschafts-Software verwenden" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Bestimmte Server-Software verwenden" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Alle Bereiche anzeigen" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Dem Bereich konnte nicht beigetreten werden" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Diesem Bereich kann nicht beigetreten werden" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Kein solcher Bereich gefunden" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Bestimmte Client-Software verwenden" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Automatisch ohne Passwort beitreten" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Mit einem vorgegebenen Einmalpasswort beitreten" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Bestimmte Client-Software verwenden" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Bestimmte Server-Software verwenden" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Zur Anmeldung zu verwendender Benutzername" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Das Benutzer-Principal für das Rechnerkonto festlegen" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Geben Sie einen Bereich zum Beitreten an" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Das Argument »--no-password« kann nicht zusammen mit »--one-time-password« " "oder »--user« verwendet werden" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" "Das Argument »--one-time-password« kann nicht zusammen mit »--user« " "verwendet werden" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Der Bereich konnte nicht verlassen werden" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Rechner aus Bereich entfernen" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Zum Entfernen zu verwendender Benutzername" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Zugelassene Anmeldungen konnten nicht geändert werden" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Anmeldung jedes Bereichsbenutzerkontos zulassen" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Anmeldung jedes Bereichsbenutzerkontos verweigern" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Erlaubnis für die zur Anmeldung mit Bereichskonten zurückziehen" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Namen wie zuzulassende Gruppen behandeln" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Bereich soll Anmeldungen zulassen/verweigern für" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Keine Anmeldungen sollten mit -a oder --all angegeben werden" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "Die Argumente »--withdraw« und »-x« dürfen nicht beim Verweigern von " "Anmeldungen verwendet werden" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Bestimmte Anmeldungen müssen mit --withdraw angegeben werden" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Gruppen dürfen nicht mit -a oder --all angegeben werden" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Verwenden Sie »--all«, um alle Anmeldungen zu verweigern" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/oc.gmo0000644003225100322510000000174314315277003015106 0ustar00sbosesbose00000000000000Þ•\ œÈÉÝì5I³e"<Sp¯ÄChange login policyDiscover realmJoin machine to realmOperation was cancelled.Remove machine from realmSkipped command: %sThe operation was cancelledProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2017-09-23 20:04+0000 Last-Translator: Cédric Valmary Language-Team: Occitan (post 1500) (http://www.transifex.com/freedesktop/realmd/language/oc/) Language: oc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); Modificar la politica de connexionDescobèrta del domeniJónher la maquina al domeniL'operacion es estada anullada.Suprimir la maquina del domeniComanda sautada : %sL'operacion es estada anulladarealmd-0.17.1/po/es.po0000644003225100322510000005013214315277002014743 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Adolfo Jayme-Barrientos, 2013 # Adolfo Jayme-Barrientos, 2013 # 0f759dd1ea6c4c76cedc299039ca4f23_7584d04 <454cc45058db9632179dc8079c0c1af3_5311>, 2013 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 15:03+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Spanish (http://www.transifex.com/freedesktop/realmd/language/" "es/)\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "Descubrir reino" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Se requiere autenticación para descubrir un reino de Kerberos" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Unir equipo al reino" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Se requiere autenticación para unir este equipo a un reino o a un dominio" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Quitar equipo del reino" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Se requiere autenticación para quitar este equipo de un reino o de un " "dominio." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Cambiar política de inicio de sesión" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Para cambiar la política sobre quién puede iniciar sesión en este equipo, " "necesita autenticarse." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "El proceso finalizó con la señal: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "Se canceló la operación" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "No se encontró la orden configurada: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Orden omitida: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "La orden configurada no es válida: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" "Se han recibido datos de Netlogon no válidos o no soportados del servidor" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "En este sistema, LDAP no soporta conexiones UDP" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "El software de membresía «%s» es desconocido o no es compatible" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Ya se unió a un dominio" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "El nombre o la contraseña del administrador no es válido" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Actualmente no se ha unido a este dominio" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Necesita credenciales para abandonar este dominio" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "No se pudo escribir la configuración: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "No tiene autorización para realizar esta acción" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Se canceló la operación." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "Falló al unir el equipo al reino. Consulte los diagnósticos." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "Falló al sacar el equipo del dominio. Consulte los diagnósticos." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "No estaÌ soportado el unirse a este reino sin credenciales" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "No estaÌ soportado el salir de este reino sin credenciales" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "No está soportado el unirse a este reino usando una caché de credenciales" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "No está soportado el salir de este reino usando una caché de credenciales" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "No está soportado el unirse a este reino usando un secreto" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "No está soportado el salir de este reino usando un secreto" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "No estaÌ soportado el unirse a este reino usando una contraseña" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "No estaÌ soportado el salir de este reino usando una contraseña" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "No está soportado el unirse a este reino" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "No está soportado el salir de este reino" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Ya se está ejecutando otra acción" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Ya se ha unido a otro dominio: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" "Falló al cambiar los inicios de sesión permitidos. Consulte los diagnósticos." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "El reino no permite los inicios de sesión específicos" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "El argumento%s%s%s no válido no coincide con el formato de inicio de sesión." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Los siguientes paquetes no están disponibles para instalarlos: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Paquetes necesarios no instalados: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Instalando los paquetes necesarios" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "FalloÌ al descubrir reino. Consulte los diagnoÌsticos." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "No se ha unido a este dominio" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" "El proveedor Samba no puede restringir los inicios de sesión permitidos." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" "El argumento de inicio de sesión «%s» no válido contiene caracteres no " "soportados" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Falló al activar SSSD en nsswitch.conf y PAM." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "No se pudo unir automáticamente al dominio" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Unirse a un dominio con una contraseña de un solo uso solo está soportado " "con el software del miembro «%s»" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Unirse a un dominio con una contraseña de usuario solo está soportado con el " "software del miembro «%s»" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "No se admiten las credenciales para unirse al dominio" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Ya se ha unido a este dominio" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Ya está configurado un dominio con este nombre" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "El dominio %s ya está en el archivo de configuración sssd.conf" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "No tiene al dominio %s en el archivo de configuración sssd.conf" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "El argumento del equipo no está soportado al unirse a un dominio IPA." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "El argumento del equipo no está soportado al unirse a un dominio IPA." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Actualmente no se ha unido a este dominio" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Descubrir reino disponible" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Unir este equipo a un reino" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Sacar este equipo de un reino" #: tools/realm.c:43 msgid "List known realms" msgstr "Listar los reinos conocidos" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Permitir inicios de sesión de usuario" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Denegar inicios de sesión de usuario" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Instalar modo en un prefijo específico" #: tools/realm.c:215 msgid "Verbose output" msgstr "Salida detallada" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "No preguntar" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "No se pudo conectar al servicio del reino" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "No se pudo cargar el servicio del reino" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "No se pudo conectar al bus del sistema" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "No se pudo crear el par del socket: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "No se pudo crear el socket" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "No se pudo ejecutar realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "No se pudo crear la carpeta en tiempo de ejecución: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "No se pudo crear el archivo de la caché de credenciales: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "No se pudo resolver la caché de credenciales" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Contraseña no válida para %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "No se pudo autenticar como %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "No se pudo analizar el nombre de usuario: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "No se pudo leer la caché de la credencial" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "No se pudo inicializar Kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "No se puede solicitar una contraseña al ejecutarse en modo desatendido" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Contraseña para %s:" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "No se pudo solicitar la contraseña: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "El reino no soporta que los miembros usen una contraseña" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" "El reino no soporta que los miembros usen una contraseña de un solo uso" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "No se pudieron seleccionar las credencias de Kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "No se pudieron leer las credencias de Kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "El reino no soporta los miembros automáticos" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "No se pudieron descubrir los reinos" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "No se ha descubierto ningún reino predeterminado" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "No se ha encontrado el reino: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Mostrar todos los reinos descubiertos" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Solo mostrar los nombres" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Utilizar un software cliente específico" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Usar software de membresía específico" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Usar software de servidor específico" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Mostrar todos los reinos" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "No se pudo unir al reino" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "No se puede unir a este reino" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "No se ha encontrado el reino" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Utilizar un software cliente específico" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "OU DN del equipo que unir" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Unirse automáticamente sin una contraseña" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Unirse con una contraseña preestablecida de un solo uso" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Utilizar un software cliente específico" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Usar software de servidor específico" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Nombre de usuario que usar para unirse" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Establecer el usuario principal para la cuenta del equipo" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Especificar un reino al que unirse" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "No se puede usar el argumento --no-password con --one-time-password ni con --" "user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "No se puede usar el argumento--one-time-password con --user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "No se pudo abandonar el reino" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Quitar equipo del reino" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Nombre de usuario que usar para quitar" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "No se pudieron cambiar los inicios de sesión permitidos" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Permitir el inicio de sesión a cualquier cuenta del reino" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Denegar el inicio de sesión a cualquier cuenta del reino" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Quitar permiso para iniciar sesión a una cuenta del reino" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Tratar nombres como grupos a los que permitir" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Reino en el que permitir/denegar los inicios de sesión" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "No se deben especificar inicios de sesión con -a ni con --all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "No se pueden usar los argumentos --withdraw ni -x al denegar inicios de " "sesión" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Los inicios de sesión específicos se deben especificar con --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "No se pueden especificar los grupos con -a ni con --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Usar --all para denegar todos los inicios de sesión" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "Especificar los usuarios que añadir o quitar de la lista de permitidos" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Especificar la denegación con --all está obsoleto. Use realm permit --" "withdraw" realmd-0.17.1/po/he.gmo0000644003225100322510000000107114315277003015073 0ustar00sbosesbose00000000000000Þ•$,8ÿ9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Hebrew (http://www.transifex.com/freedesktop/realmd/language/he/) Language: he MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3; realmd-0.17.1/po/tr.po0000644003225100322510000005006514315277003014767 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Muhammet Kara , 2015 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 19:43+0000\n" "Last-Translator: Muhammet Kara \n" "Language-Team: Turkish (http://www.transifex.com/freedesktop/realmd/language/" "tr/)\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "EriÅŸim alanını keÅŸfet" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "Bir kerberos eriÅŸim alanını keÅŸfetmek kimlik doÄŸrulama gerektiriyor" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Makineyi etki alanına ekle" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Bu makineyi bir eriÅŸim alanına veya alana eklemek kimlik doÄŸrulama " "gerektiriyor" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Makineyi etki alanından çıkar" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Bu makineyi bir eriÅŸim alanından veya bir alandan çıkarmak kimlik doÄŸrulama " "gerektiriyor." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Oturum açma politikasını deÄŸiÅŸtir" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Bu bilgisayarda kimin oturum açacağı ile ilgili politikayı deÄŸiÅŸtirmek " "kimlik doÄŸrulama gerektiriyor." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "Süreç ÅŸu sinyal ile sonlandırıldı: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "İşlem iptal edildi" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Yapılandırılan komut bulunamadı: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Atlanan komut: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Yapılandırılan komut geçersiz: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Sunucudan geçersiz veya desteklenmeyen Netlogon verisi alındı" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "Sistem üzerindeki LDAP, UDP baÄŸlantılarını desteklemiyor" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "Desteklenmeyen veya bilinmeyen '%s' üyelik yazılımı" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Zaten bir alana katılındı" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Yönetici adı veya parolası gereçersiz" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Yakında bu alana katılmamış" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Bu alandan ayrılmak için kimlik bilgileri gereklidir" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Yapılandırmaya yazılamadı: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Bu eylemi gerçekleÅŸtirmeye yetkili deÄŸilsiniz" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "İşlem iptal edildi." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" "Makinenin eriÅŸim alanına kaydedilmesi baÅŸarısız oldu. Tanılamalara bakın." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" "Makinenin eriÅŸim alanından çıkartılması baÅŸarısız oldu. Tanılamalara bakın." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Bu eriÅŸim alanına kimlik bilgileri olmadan katılmak desteklenmiyor" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "Bu eriÅŸim alanından kimlik bilgileri olmadan ayrılmak desteklenmiyor" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "Bu eriÅŸim alanına bir kimlik bilgisi ön belleÄŸi kullanarak katılmak " "desteklenmiyor" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "Bu eriÅŸim alanından bir kimlik bilgisi ön belleÄŸi kullanarak ayrılmak " "desteklenmiyor" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "Bu eriÅŸim alanına bir sırrı kullanarak katılmak desteklenmiyor" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "Bu eriÅŸim alanından bir sırrı kullanarak ayrılmak desteklenmiyor" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "Bu eriÅŸim alanına bir parola kullanarak kayıt yaptırmak desteklenmiyor" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "Bu eriÅŸim alanından bir parola kullanarak ayrılmak desteklenmiyor" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Bu eriÅŸim alanına katılmak desteklenmiyor" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Bu eriÅŸim alanından ayrılmak desteklenmiyor" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Zaten baÅŸka eylem çalışıyor" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Zaten baÅŸka bir alana katılındı: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "İzin verilen oturumlar deÄŸiÅŸtirilemedi. Tanılamalara bakın." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "Bu eriÅŸim alanı oturumları belirtmeye izin vermiyor" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "Geçersiz oturum açma deÄŸiÅŸkeni%s%s%s oturum açma biçimiyle eÅŸleÅŸmiyor." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "AÅŸağıdaki paketler kurulum için uygun deÄŸil: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Gerekli paketler kurulmamış: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Gerekli paketler kuruluyor" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "EriÅŸim alanının keÅŸfi baÅŸarısız oldu. Tanılamalara bakın." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Bu alana katılınmadı " #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "Samba saÄŸlayıcı izin verilen oturumları kısıtlayamaz." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" "Geçersiz oturum açma deÄŸiÅŸkeni '%s' desteklenmeyen karakterler içeriyor." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "PAM ve nsswitch.conf içinde SSSD etkinleÅŸtirmesi baÅŸarısız oldu." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Alana otomatik olarak katılınamadı" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Bir alana tek kullanımlık parola ile katılmak ancak '%s' üyelik yazılımı ile " "desteklenmektedir" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Bir alana bir kullanıcı parolası ile katılmak ancak '%s' üyelik yazılımı ile " "desteklenmektedir" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Bir alana katılmak için desteklenmeyen kimlik bilgileri" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Bu alana zaten katıldınız" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Bu isimli bir alan zaten yapılandırıldı" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "sssd.conf yapılandırma dosyasında %s alanı zaten mevcut" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "sssd.conf yapılandırma dosyasında %s alanı bulunmuyor" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "computer-ou parametresi bir IPA alanına baÄŸlanırken desteklenmez." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "computer-ou parametresi bir IPA alanına baÄŸlanırken desteklenmez." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Bu eriÅŸim alanına yakında katılmadınız" #: tools/realm.c:40 msgid "Discover available realm" msgstr "Kullanılabilir eriÅŸim alanını keÅŸfet" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "Bu makineyi bir eriÅŸim alanına kaydettir" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "Bu makineyi bir eriÅŸim alanından çıkar" #: tools/realm.c:43 msgid "List known realms" msgstr "Bilinen eriÅŸim alanlarını listele" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Kullanıcı oturum açmasını kısıtla" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Kullanıcı oturum açmasına izin verme" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "%s seçeneÄŸi için geçersiz deÄŸer: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Belirli bir önek için kurulum kipi" #: tools/realm.c:215 msgid "Verbose output" msgstr "Ayrıntılı çıktı" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Girdi için sorma" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "EriÅŸim alanı servisine baÄŸlanılamadı" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "EriÅŸim alanı servisi yüklenemedi" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Sistem veri yoluna baÄŸlanılamadı" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Soket çifti oluÅŸturulamadı: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Soket oluÅŸturulamadı" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "realmd çalıştırılamadı" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Çalışma zamanı dizini oluÅŸturulamadı: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Kimlik önbellek dosyası oluÅŸturulamadı: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Kimlik önbelleÄŸi çözülemedi" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "%s için geçersiz parola" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "%s olarak kimlik doÄŸrulanamadı" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Kullanıcı adı ayrıştırılamadı: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Kimlik ön belleÄŸi okunamadı" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Kerberos baÅŸlatılamadı" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "Sahipsiz kipte çalışırken parola sorulamadı" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "%s için parola: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Parola sorulamadı: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "EriÅŸim alanı parola kullanan üyeliÄŸi desteklemiyor" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "EriÅŸim alanı tek kullanımlık parola kullanan üyeliÄŸi desteklemiyor" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Kerberos kimliÄŸi seçilemedi" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Kerberos kimlikleri okunamadı" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "EriÅŸim alanı otomatik üyeliÄŸi desteklemiyor" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "EriÅŸim alanları keÅŸfedilemedi" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Varsayılan eriÅŸim alanı keÅŸfedilemedi" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Böyle bir eriÅŸim alanı bulunmadı: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "KeÅŸfedilen tüm eriÅŸim alanlarını göster" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Sadece isimleri göster" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "Belirli istemci yazılımını kullan" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "Belirli üyelik yazılımını kullan" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "Belirli sunucu yazılımı kullan" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Tüm eriÅŸim alanlarını göster" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "EriÅŸim alanına katılamadı" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Bu eriÅŸim alanına katılamaz" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Böyle bir eriÅŸim alanı bulunamadı" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Otomatik kimlik haritalamayı kapat" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "Belirli istemci yazılımını kullan" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "Katılmak için bilgisayar OU DN'i" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Parolasız otomatik katıl" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Önceden ayarlanmış bir tek kullanımlık parola ile katıl" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "Belirli istemci yazılımını kullan" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "Belirli sunucu yazılımı kullan" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Bu kayıt için kullanılacak kullanıcı adı" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "Bilgisayar hesabı için temel kullanıcıyı ayarla" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Katılmak için bir eriÅŸim alanı belirtin" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "--no-password parametresi --one-time-password veya --user ile birlikte " "kullanılamaz" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "--one-time-password parametresi --user ile birlikte kullanılamaz" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "EriÅŸim alanı terk edilemedi" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Bilgisayarı eriÅŸim alanından ayır" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Ayırma için kullanılacak kullanıcı adı" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "İzin verilen oturumlar deÄŸiÅŸtirilemedi" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Herhangi bir eriÅŸim alanı giriÅŸine izin ver" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Herhangi bir eriÅŸim alanı giriÅŸini reddet" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Bir eriÅŸim alanı için oturum açma hesabına verilen izni iptal et" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "İsimlere izin verilecek gruplar olarak davran" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "Oturumlara izin verilecek/reddedilecek eriÅŸim alanı" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "Hiç bir oturum -a veya --all ile blirtilmemelidir" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "--withdraw veya -x parametreleri oturumları reddederken kullanılamaz" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Belirli oturumlar --withdraw ile belirtilmelidir" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Gruplar -a veya --all ile belirtilmemelidir" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "Tüm oturumları reddetmek için --all kullanın" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Izin verilen listeden ekleme veya çıkarma yapmak için belirli kullanıcıları " "belirtin" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "--all kullanmadan reddetme tanımlamak artık kullanılmıyor. EriÅŸim alanı " "iznini --withdraw ile kullanın" realmd-0.17.1/po/uk.po0000644003225100322510000006435114315277003014764 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Yuri Chornoivan , 2013,2015 msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2017-09-19 15:05+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian (http://www.transifex.com/freedesktop/realmd/" "language/uk/)\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != " "11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % " "100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || " "(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "ВиÑÐ²Ð»ÐµÐ½Ð½Ñ Ð¾Ð±Ð»Ð°Ñті" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" "Щоб отримати доÑтуп до виÑÐ²Ð»ÐµÐ½Ð½Ñ Ð¾Ð±Ð»Ð°Ñті Kerberos, Ñлід пройти розпізнаваннÑ" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "Ð”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ ÐºÐ¾Ð¼Ð¿â€™ÑŽÑ‚ÐµÑ€Ð° до облаÑті" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" "Ð”Ð»Ñ Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ комп’ютера до облаÑті або домену Ñлід пройти " "розпізнаваннÑ" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "Ð’Ð¸Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ ÐºÐ¾Ð¼Ð¿â€™ÑŽÑ‚ÐµÑ€Ð° з облаÑті" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" "Ð”Ð»Ñ Ð²Ð¸Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ комп’ютера з облаÑті або домену Ñлід пройти " "розпізнаваннÑ." #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "Зміна правил входу" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" "Ð”Ð»Ñ Ð·Ð¼Ñ–Ð½Ð¸Ñ‚Ð¸ правил щодо того, хто може входити до цієї ÑиÑтеми, Ñлід пройти " "розпізнаваннÑ." #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "ÐŸÑ€Ð¾Ñ†ÐµÑ Ð±ÑƒÐ»Ð¾ перервано з таким Ñигналом: %d" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "Дію було ÑкаÑовано" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "Ðалаштованої команди не знайдено: %s" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "Пропущено таку команду: %s" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "Ðалаштована команда Ñ” некоректною: %s" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "Отримано некоректні або непідтримувані дані Netlogon від Ñервера" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "У LDAP на цій ÑиÑтемі не передбачено підтримки з’єднань UDP" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" "Ðепідтримуване або невідоме програмне Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‡Ð»ÐµÐ½Ñтвом, «%s»" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "Вже долучено до домену" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "Ð†Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача-адмініÑтратора або пароль не Ñ” чинними" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "Зараз не долучено до цього домену" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "Ð”Ð»Ñ Ð²Ð¸Ñ…Ð¾Ð´Ñƒ з цього домену Ñлід вказати реєÑтраційні дані" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "Ðе вдалоÑÑ Ð·Ð°Ð¿Ð¸Ñати файл налаштувань: %s" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "Ðе уповноважено на Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñ†Ñ–Ñ”Ñ— дії" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "Дію було ÑкаÑовано." #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" "Ðе вдалоÑÑ Ð·Ð°Ñ€ÐµÑ”Ñтрувати комп’ютер у облаÑті. Див. діагноÑтичні повідомленнÑ." #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" "Ðе вдалоÑÑ ÑкаÑувати реєÑтрацію комп’ютера у облаÑті. Див. діагноÑтичні " "повідомленнÑ." #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "Ð”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ цього домену без реєÑтраційних даних не передбачено" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "ÐŸÐ¾Ð»Ð¸ÑˆÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ домену без реєÑтраційних даних не передбачено" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" "Підтримки Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ цього домену з викориÑтаннÑм кешу реєÑтраційних даних " "не передбачено" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" "Підтримки Ð¿Ð¾Ð»Ð¸ÑˆÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ домену з викориÑтаннÑм кешу реєÑтраційних даних не " "передбачено" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" "Підтримки Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ цього домену з викориÑтаннÑм ключа не передбачено" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" "СкаÑÑƒÐ²Ð°Ð½Ð½Ñ Ñ€ÐµÑ”Ñтрації у цьому домену з викориÑтаннÑм ключа не передбачено" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "РеєÑтрації у цьому домену з викориÑтаннÑм Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ðµ передбачено" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" "СкаÑÑƒÐ²Ð°Ð½Ð½Ñ Ñ€ÐµÑ”Ñтрації у цьому домену з викориÑтаннÑм Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ðµ передбачено" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "Підтримки Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ цього домену не передбачено" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "Підтримки Ð¿Ð¾Ð»Ð¸ÑˆÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ домену не передбачено" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "Вже виконуєтьÑÑ Ñ–Ð½ÑˆÐ° діÑ" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "Уже долучено до іншого домену: %s" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" "Ðе вдалоÑÑ Ð·Ð¼Ñ–Ð½Ð¸Ñ‚Ð¸ ÑпиÑок допущених кориÑтувачів. Див. діагноÑтичні " "повідомленнÑ." #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "У облаÑті заборонено Ð²ÐºÐ°Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ñ€Ð¸Ñтувачів" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" "Ðекоректний аргумент кориÑтувача%s%s%s не відповідає формату запиÑу " "кориÑтувача." #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "Ці пакунки не доÑтупні Ð´Ð»Ñ Ð²ÑтановленнÑ: %s" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "Ðе вÑтановлено потрібні Ð´Ð»Ñ Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸ пакунки: %s" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "Ð’Ñтановлюємо потрібні пакунки" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "Ðе вдалоÑÑ Ð²Ð¸Ñвити облаÑть. Див. діагноÑтичні повідомленнÑ." #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "Ðе долучено до цього домену" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" "Ðадавач доÑтупу Samba не може обмежувати перелік дозволених кориÑтувачів." #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" "У некоректному параметрі входу, «%s», міÑÑ‚ÑтьÑÑ Ñимволи, підтримки Ñких не " "передбачено." #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "Спроба Ð²Ð¼Ð¸ÐºÐ°Ð½Ð½Ñ SSSD у nsswitch.conf Ñ– PAM зазнала невдачі." #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "Ðе вдалоÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾ долучитиÑÑ Ð´Ð¾ домену" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" "Ð”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ домену на оÑнові одноразового Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð¿ÐµÑ€ÐµÐ´Ð±Ð°Ñ‡ÐµÐ½Ð¾ лише у разі " "викориÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð½Ð¾Ð³Ð¾ Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‡Ð»ÐµÐ½Ñтвом «%s»" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" "Ð”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ домену на оÑнові Ð¿Ð°Ñ€Ð¾Ð»Ñ ÐºÐ¾Ñ€Ð¸Ñтувача передбачено лише у разі " "викориÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð½Ð¾Ð³Ð¾ Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‡Ð»ÐµÐ½Ñтвом «%s»" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "Ðепідтримувані реєÑтраційні дані Ð´Ð»Ñ Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ домену" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "Вже долучено до цього домену" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "Домен з цією назвою вже налаштовано" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "У файлі налаштувань sssd.conf вже Ñ” Ð·Ð°Ð¿Ð¸Ñ Ð´Ð¾Ð¼ÐµÐ½Ñƒ %s" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "У файлі налаштувань sssd.conf немає запиÑу домену %s" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" "Підтримки параметра computer-ou Ð´Ð»Ñ Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ домену IPA не передбачено." #: service/realm-sssd-ipa.c:298 #, fuzzy msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" "Підтримки параметра computer-ou Ð´Ð»Ñ Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ домену IPA не передбачено." #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "Зараз не долучено до цієї облаÑті" #: tools/realm.c:40 msgid "Discover available realm" msgstr "ВиÑвити доÑтупну облаÑть" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "ЗареєÑтрувати цей комп’ютер у облаÑті" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "СкаÑувати реєÑтрацію цього комп’ютера у облаÑті" #: tools/realm.c:43 msgid "List known realms" msgstr "Показати ÑпиÑок відомих облаÑтей" #: tools/realm.c:44 msgid "Permit user logins" msgstr "Дозволити вхід кориÑтувачам" #: tools/realm.c:45 msgid "Deny user logins" msgstr "Заборонити вхід кориÑтувачам" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "Ðекоректне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð° %s: %s" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "Ð’Ñтановити режим до вказаного префікÑом каталогу" #: tools/realm.c:215 msgid "Verbose output" msgstr "Режим докладних повідомлень" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "Ðе проÑити про Ð²Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð´Ð°Ð½Ð¸Ñ…" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "Ðе вдалоÑÑ Ð²Ñтановити зв’Ñзок зі Ñлужбою обÑÐ»ÑƒÐ³Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð±Ð»Ð°Ñті" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "Ðе вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸ Ñлужбу обÑÐ»ÑƒÐ³Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð±Ð»Ð°Ñті" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "Ðе вдалоÑÑ Ð²Ñтановити Ð·â€™Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· каналом обміну даних ÑиÑтеми" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "Ðе вдалоÑÑ Ñтворити пару Ñокетів: %s" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "Ðе вдалоÑÑ Ñтворити Ñокет" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "Ðе вдалоÑÑ Ð·Ð°Ð¿ÑƒÑтити realmd" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "Ðе вдалоÑÑ Ñтворити робочий каталог: %s: %s" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "Ðе вдалоÑÑ Ñтворити файл кешу реєÑтраційних даних: %s: %s" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "Ðе вдалоÑÑ Ð²Ñтановити шлÑÑ… до кешу реєÑтраційних даних" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "Ðекоректний пароль до %s" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ð¹Ñ‚Ð¸ Ñ€Ð¾Ð·Ð¿Ñ–Ð·Ð½Ð°Ð²Ð°Ð½Ð½Ñ Ñк %s" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "Ðе вдалоÑÑ Ð¾Ð±Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸ Ñ–Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача: %s" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ дані з кешу реєÑтраційних даних" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "Ðе вдалоÑÑ Ñ–Ð½Ñ–Ñ†Ñ–Ð°Ð»Ñ–Ð·ÑƒÐ²Ð°Ñ‚Ð¸ Kerberos" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" "У автономному режимі роботи надÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð·Ð°Ð¿Ð¸Ñ‚Ñ–Ð² щодо Ð²Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½ÐµÐ¼Ð¾Ð¶Ð»Ð¸Ð²Ðµ" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "Пароль до %s: " #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "Ðе вдалоÑÑ Ð½Ð°Ð´Ñ–Ñлати запит щодо паролÑ: %s" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "У облаÑті не передбачено членÑтва на оÑнові паролÑ" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "У облаÑті не передбачено членÑтва на оÑнові одноразового паролÑ" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð±Ñ€Ð°Ñ‚Ð¸ реєÑтраційні дані kerberos" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ реєÑтраційні дані kerberos" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "У облаÑті не передбачено автоматичного членÑтва" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "Ðе вдалоÑÑ Ð²Ð¸Ñвити облаÑті" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "Ðе виÑвлено типової облаÑті" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "Такої облаÑті не знайдено: %s" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "Показати вÑÑ– виÑвлені облаÑті" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "Показувати лише назви" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "ВикориÑтовувати Ñпецифічне клієнтÑьке програмне забезпеченнÑ" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" "ВикориÑтовувати Ñпецифічне програмне Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‡Ð»ÐµÐ½Ñтвом" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "ВикориÑтовувати Ñпецифічне Ñерверне програмне забезпеченнÑ" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "Показувати вÑÑ– облаÑті" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "Ðе вдалоÑÑ Ð´Ð¾Ð»ÑƒÑ‡Ð¸Ñ‚Ð¸ÑÑ Ð´Ð¾ облаÑті" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "Ð”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ цієї облаÑті неможливе" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "Такої облаÑті не знайдено" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "Вимкнути автоматичне прив’ÑÐ·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ–Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ñ–ÐºÐ°Ñ‚Ð¾Ñ€Ñ–Ð²" #: tools/realm-join.c:298 #, fuzzy msgid "Use specific computer name instead of hostname" msgstr "ВикориÑтовувати Ñпецифічне клієнтÑьке програмне забезпеченнÑ" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "DN OU комп’ютера Ð´Ð»Ñ Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "Ðвтоматично долучати без паролÑ" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "Долучати на оÑнові попередньо вÑтановленого одноразового паролÑ" #: tools/realm-join.c:308 #, fuzzy msgid "Use specific operation system name" msgstr "ВикориÑтовувати Ñпецифічне клієнтÑьке програмне забезпеченнÑ" #: tools/realm-join.c:310 #, fuzzy msgid "Use specific operation system version" msgstr "ВикориÑтовувати Ñпецифічне Ñерверне програмне забезпеченнÑ" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "Ð†Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача Ð´Ð»Ñ Ñ€ÐµÑ”Ñтрації" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" "Ð’Ñтановити реєÑтраційний Ð·Ð°Ð¿Ð¸Ñ ÐºÐ¾Ñ€Ð¸Ñтувача Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ облікового запиÑу " "комп’ютера" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "Вказати одну облаÑть Ð´Ð»Ñ Ð´Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" "Параметр --no-password не можна викориÑтовувати разом з параметрами --one-" "time-password Ñ– --user" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" "Параметр --one-time-password не можна викориÑтовувати разом з параметром --" "user" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "Ðе вдалоÑÑ Ð¿Ð¾Ð»Ð¸ÑˆÐ¸Ñ‚Ð¸ облаÑть" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "Вилучити комп’ютер з облаÑті" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "Ð†Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача Ð´Ð»Ñ Ð²Ð¸Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "Ðе вдалоÑÑ Ð·Ð¼Ñ–Ð½Ð¸Ñ‚Ð¸ ÑпиÑок допущених кориÑтувачів" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "Дозволити вхід Ð´Ð»Ñ ÑƒÑÑ–Ñ… облікових запиÑів облаÑті" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "Заборонити вхід Ð´Ð»Ñ ÑƒÑÑ–Ñ… облікових запиÑів облаÑті" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "Відкликати дозвіл входу Ð´Ð»Ñ Ð¾Ð±Ð»Ñ–ÐºÐ¾Ð²Ð¾Ð³Ð¾ запиÑу облаÑті" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "Вважати імена назвами груп, Ñким Ñлід надати доÑтуп" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "ОблаÑть до Ñкої Ñлід дозволити або заборонити вхід" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" "Ðе можна вказувати назви запиÑів Ð´Ð»Ñ Ð²Ñ…Ð¾Ð´Ñƒ, Ñкщо викориÑтано параметр -a або " "--all" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" "Під Ñ‡Ð°Ñ Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð°Ð±Ð¾Ñ€Ð¾Ð½Ð¸ входу не можна викориÑтовувати параметр --" "withdraw або -x" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "Окремі Ð·Ð°Ð¿Ð¸Ñ Ñлід вказувати за допомогою --withdraw" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "Ðе можна вказувати групи, Ñкщо викориÑтано параметр -a або --all" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "СкориÑтайтеÑÑ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¾Ð¼ --all, щоб заборонити вхід уÑім" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" "Вказати назви запиÑів певних кориÑтувачів, Ñкі Ñлід додати або вилучити зі " "ÑпиÑку дозволених" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" "Ð’Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð°Ð±Ð¾Ñ€Ð¾Ð½Ð¸ без параметра --all вважаєтьÑÑ Ð·Ð°Ñтарілим. СкориÑтайтеÑÑ " "Ð²Ñ–Ð´ÐºÐ»Ð¸ÐºÐ°Ð½Ð½Ñ Ð´Ð¾Ñтуп Ð´Ð»Ñ Ð¾Ð±Ð»Ð°Ñті за допомогою параметра --withdraw" realmd-0.17.1/po/ta.po0000644003225100322510000003346214315277003014750 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Tamil (http://www.transifex.com/freedesktop/realmd/language/" "ta/)\n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/ro.gmo0000644003225100322510000000100614315277003015115 0ustar00sbosesbose00000000000000Þ•$,8Ì9Project-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2015-10-20 19:12+0000 Last-Translator: Stef Walter Language-Team: Romanian (http://www.transifex.com/freedesktop/realmd/language/ro/) Language: ro MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1)); realmd-0.17.1/po/zh_HK.po0000644003225100322510000003347714315277003015355 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/freedesktop/" "realmd/language/zh_HK/)\n" "Language: zh_HK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/po/ja.gmo0000644003225100322510000004012414315277003015073 0ustar00sbosesbose00000000000000Þ•€­Ð -Ñ #ÿ /# S $n “ ± SÐ 7$ D\ J¡ ì < @ T k Š « Ç !è  -))W˜¸Ñî7 Tu"”!·Ù$í0M^w†-ž.Ìû63Q*…3°8ä,!Jl<Š=Ç%=c%y]ŸYý#W<{2¸7ë4##X<|7¹ñ((,U.q ´%Ì#ò"9Sl~&°+×;2?r9’Ìç/1L\p1„¶?ÐHLY;¦Aâ4$EY=ŸÝ*ù%$J'h"8³6ì,#/P€ ºÛø5,D¨q? 3Z GŽ $Ö 7û *3!!^!o€!;ð!],"oŠ"'ú"i"#!Œ#+®#(Ú#7$*;$<f$6£$3Ú$P%J_%-ª%7Ø%*&-;&*i&6”&9Ë&7'I='<‡'6Ä'<û'(8(6a(:˜(6Ó($ )'/)W)'p)A˜)LÚ)*'*fR*`¹*N+]i+fÇ+J.,Ky,-Å,có,RW-'ª-+Ò-*þ-').HQ.•š.ž0/?Ï/r0^‚0]á0J?1EŠ1oÐ1Z@2'›2FÃ2? 33J3O~39Î3=4<F43ƒ43·4-ë4*5D56d5$›5:À5Hû5oD6`´6+7gA7-©7*×7T8-W8…8¤8"·8HÚ8(#9TL9n¡9q:F‚:YÉ:T#;ax;=Ú;'<3@<6t<.«<0Ú<3 =l?=g¬=N>_c>BÃ><??C?6ƒ?$º?$ß?@?@s+|C@U0E8OZ jbWm$' A;RGB^zavID=-Yr5 d 6 \]7Q 1eH`!wp<FNi}&X2L,*MV9Jl:€TyKnt_{Sox#c)(43%~Pugfkq?/"h.[>A domain with this name is already configuredAdmin name or password is not validAlready have domain %s in sssd.conf config fileAlready joined to a domainAlready joined to another domain: %sAlready joined to this domainAlready running another actionAuthentication is required to change the policy of who can log in on this computer.Authentication is required to discover a kerberos realmAuthentication is required to join this machine to a realm or domainAuthentication is required to remove this computer from a realm or domain.Cannot join this realmCannot prompt for a password when running in unattended modeChange login policyComputer OU DN to joinConfigured command invalid: %sConfigured command not found: %sCouldn't authenticate as %sCouldn't change permitted loginsCouldn't connect to realm serviceCouldn't connect to system busCouldn't create credential cache file: %s: %sCouldn't create runtime directory: %s: %sCouldn't create socketCouldn't create socket pair: %sCouldn't discover realmsCouldn't initialize kerberosCouldn't join realmCouldn't leave realmCouldn't load the realm serviceCouldn't parse user name: %sCouldn't prompt for password: %sCouldn't read credential cacheCouldn't read kerberos credentialsCouldn't resolve credential cacheCouldn't run realmdCouldn't select kerberos credentialsCouldn't write out config: %sDeny any realm account loginDeny user loginsDiscover available realmDiscover realmDo not prompt for inputDon't have domain %s in sssd.conf config fileEnabling SSSD in nsswitch.conf and PAM failed.Enroll this machine in a realmEnrolling this realm using a password is not supportedFailed to change permitted logins. See diagnostics.Failed to discover realm. See diagnostics.Failed to enroll machine in realm. See diagnostics.Failed to unenroll machine from domain. See diagnostics.Groups may not be specified with -a or --allInstall mode to a specific prefixInstalling necessary packagesInvalid login argument '%s' contains unsupported characters.Invalid login argument%s%s%s does not match the login format.Invalid password for %sInvalid value for %s option: %sJoin automatically without a passwordJoin machine to realmJoin using a preset one time passwordJoining a domain with a one time password is only supported with the '%s' membership softwareJoining a domain with a user password is only supported with the '%s' membership softwareJoining this realm is not supportedJoining this realm using a credential cache is not supportedJoining this realm using a secret is not supportedJoining this realm without credentials is not supportedLDAP on this system does not support UDP connectionsLeaving this realm is not supportedLeaving this realm using a credential cache is not supportedLeaving this realm without credentials is not supportedList known realmsNecessary packages are not installed: %sNeed credentials for leaving this domainNo default realm discoveredNo logins should be specified with -a or --allNo such realm foundNo such realm found: %sNot authorized to perform this actionNot currently joined to this domainNot currently joined to this realmNot joined to this domainOperation was cancelled.Password for %s: Permit any realm account loginPermit user loginsProcess was terminated with signal: %dRealm does not support automatic membershipRealm does not support membership using a one time passwordRealm does not support membership using a passwordRealm to permit/deny logins forReceived invalid or unsupported Netlogon data from serverRemove computer from realmRemove machine from realmSet the user principal for the computer accountShow all discovered realmsShow all realmsShow only the namesSkipped command: %sSpecific logins must be specified with --withdrawSpecify one realm to joinSpecify specific users to add or remove from the permitted listSpecifying deny without --all is deprecated. Use realm permit --withdrawThe --no-password argument cannot be used with --one-time-password or --userThe --one-time-password argument cannot be used with --userThe --withdraw or -x arguments cannot be used when denying loginsThe Samba provider cannot restrict permitted logins.The computer-ou argument is not supported when joining an IPA domain.The following packages are not available for installation: %sThe operation was cancelledThe realm does not allow specifying loginsTreat names as groups which to permitTurn off automatic id mappingUnable to automatically join the domainUnenroll this machine from a realmUnenrolling this realm using a password is not supportedUnenrolling this realm using a secret is not supportedUnsupported credentials for joining a domainUnsupported or unknown membership software '%s'Use --all to deny all loginsUse specific client softwareUse specific membership softwareUse specific server softwareUser name to use for enrollmentUser name to use for removalVerbose outputWithdraw permit for a realm account to loginProject-Id-Version: realmd Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues PO-Revision-Date: 2021-01-22 02:39+0000 Last-Translator: Takuro Onoue Language-Team: Japanese (http://www.transifex.com/freedesktop/realmd/language/ja/) Language: ja MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; ã“ã®åå‰ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã¯ã™ã§ã«è¨­å®šã•れã¦ã„ã¾ã™ç®¡ç†è€…åã¾ãŸã¯ãƒ‘スワードãŒç„¡åйã§ã™sssd.conf 設定ファイルã«ã™ã§ã«ãƒ‰ãƒ¡ã‚¤ãƒ³ %s ãŒã‚りã¾ã™ã™ã§ã«ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加済ã¿ã™ã§ã«åˆ¥ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã—ã¦ã„ã¾ã™: %sã™ã§ã«ã“ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加済ã¿ã™ã§ã«ä»–ã®æ“作ãŒå®Ÿè¡Œä¸­ã“ã®ã‚³ãƒ³ãƒ”ューターをレルムã¾ãŸã¯ãƒ‰ãƒ¡ã‚¤ãƒ³ã‹ã‚‰å‰Šé™¤ã™ã‚‹ã«ã¯ã€èªè¨¼ãŒå¿…è¦ã§ã™ã€‚Kerberosレルムを検出ã™ã‚‹ã«ã¯èªè¨¼ãŒå¿…è¦ã§ã™ã“ã®ãƒžã‚·ãƒ³ã‚’レルムã¾ãŸã¯ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã•ã›ã‚‹ã«ã¯èªè¨¼ãŒå¿…è¦ã§ã™ã“ã®ã‚³ãƒ³ãƒ”ューターをレルムã¾ãŸã¯ãƒ‰ãƒ¡ã‚¤ãƒ³ã‹ã‚‰å‰Šé™¤ã™ã‚‹ã«ã¯ã€èªè¨¼ãŒå¿…è¦ã§ã™ã€‚ã“ã®ãƒ¬ãƒ«ãƒ ã«å‚加ã§ãã¾ã›ã‚“無人モードã§å®Ÿè¡Œã—ã¦ã„ã‚‹å ´åˆã€ãƒ‘スワードã®å…¥åŠ›ã‚’æ±‚ã‚ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“ログインãƒãƒªã‚·ãƒ¼ã®å¤‰æ›´ã‚³ãƒ³ãƒ”ューター OU DN ã«å‚加ã™ã‚‹è¨­å®šã•れãŸã‚³ãƒžãƒ³ãƒ‰ãŒç„¡åй: %s設定ã•れãŸã‚³ãƒžãƒ³ãƒ‰ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“: %s%s ã¨ã—ã¦èªè¨¼ã§ãã¾ã›ã‚“ã§ã—ãŸè¨±å¯ã•れãŸãƒ­ã‚°ã‚¤ãƒ³ã‚’変更ã§ãã¾ã›ã‚“ã§ã—ãŸãƒ¬ãƒ«ãƒ ã‚µãƒ¼ãƒ“ã‚¹ã«æŽ¥ç¶šã§ãã¾ã›ã‚“ã§ã—ãŸã‚·ã‚¹ãƒ†ãƒ ãƒã‚¹ã«æŽ¥ç¶šã§ãã¾ã›ã‚“ã§ã—ãŸè³‡æ ¼æƒ…報キャッシュファイルを作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ: %s: %sランタイムディレクトリを作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ: %s: %sソケットを生æˆã§ãã¾ã›ã‚“ã§ã—ãŸã‚½ã‚±ãƒƒãƒˆãƒšã‚¢ã‚’作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ: %sレルムを検出ã§ãã¾ã›ã‚“ã§ã—ãŸkerberos ã‚’åˆæœŸåŒ–ã§ãã¾ã›ã‚“ã§ã—ãŸãƒ¬ãƒ«ãƒ ã«å‚加ã§ãã¾ã›ã‚“ã§ã—ãŸãƒ¬ãƒ«ãƒ ã‚’離れるã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸãƒ¬ãƒ«ãƒ ã‚µãƒ¼ãƒ“スをロードã§ãã¾ã›ã‚“ã§ã—ãŸãƒ¦ãƒ¼ã‚¶ãƒ¼åをパースã§ãã¾ã›ã‚“ã§ã—ãŸ: %sパスワードã®å…¥åŠ›ã‚’æ±‚ã‚ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸ: %s資格情報キャッシュを読ã¿å–れã¾ã›ã‚“ã§ã—ãŸkerberos 資格情報を読ã¿å–れã¾ã›ã‚“ã§ã—ãŸè³‡æ ¼æƒ…報キャッシュを解決ã§ãã¾ã›ã‚“ã§ã—ãŸrealmd ã‚’èµ·å‹•ã§ãã¾ã›ã‚“ã§ã—ãŸkerberos è³‡æ ¼æƒ…å ±ã‚’é¸æŠžã§ãã¾ã›ã‚“ã§ã—ãŸè¨­å®šã‚’書ã出ã™ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸ: %sレルムアカウントã®ãƒ­ã‚°ã‚¤ãƒ³ã‚’æ‹’å¦ã™ã‚‹ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³ã‚’æ‹’å¦åˆ©ç”¨å¯èƒ½ãªãƒ¬ãƒ«ãƒ ã‚’検出ã™ã‚‹ãƒ¬ãƒ«ãƒ ã‚’検出ã™ã‚‹å…¥åŠ›ã‚’è¦æ±‚ã—ãªã„ã§ãã ã•ã„sssd.conf 設定ファイルã«ãƒ‰ãƒ¡ã‚¤ãƒ³ %s ãŒã‚りã¾ã›ã‚“nsswitch.conf ãŠã‚ˆã³ PAM ã§ SSSD を有効ã«ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ã“ã®ãƒžã‚·ãƒ³ã‚’レルムã«ç™»éŒ²ã™ã‚‹ãƒ‘スワードを使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã‚’登録ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“許å¯ã•れãŸãƒ­ã‚°ã‚¤ãƒ³ã®å¤‰æ›´ã«å¤±æ•—ã—ã¾ã—ãŸã€‚診断をå‚ç…§ã—ã¦ãã ã•ã„ã€‚ãƒ¬ãƒ«ãƒ ã®æ¤œå‡ºã«å¤±æ•—ã—ã¾ã—ãŸã€‚診断をå‚ç…§ã—ã¦ãã ã•ã„。マシンをレルムã«ç™»éŒ²ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚診断をå‚ç…§ã—ã¦ãã ã•ã„。ドメインã‹ã‚‰ãƒžã‚·ãƒ³ã®ç™»éŒ²è§£é™¤ã«å¤±æ•—ã—ã¾ã—ãŸã€‚診断をå‚ç…§ã—ã¦ãã ã•ã„。グループを -a ã¾ãŸã¯ --all を指定ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“特定ã®ãƒ—レフィックスã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ãƒ¢ãƒ¼ãƒ‰ã‚’設定ã™ã‚‹å¿…è¦ãªãƒ‘ッケージã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ç„¡åйãªãƒ­ã‚°ã‚¤ãƒ³å¼•æ•° '%s' ã«ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ãªã„文字ãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚無効ãªãƒ­ã‚°ã‚¤ãƒ³å¼•æ•° %s %s %s ãŒãƒ­ã‚°ã‚¤ãƒ³å½¢å¼ã¨ä¸€è‡´ã—ã¾ã›ã‚“。%s ã«å¯¾ã™ã‚‹ç„¡åйãªãƒ‘スワード%s オプションã®å€¤ãŒç„¡åйã§ã™: %sパスワードãªã—ã§è‡ªå‹•çš„ã«å‚加マシンをレルムã«å‚加ã•ã›ã‚‹ãƒ—リセットワンタイムパスワードを使用ã—ã¦å‚加ã™ã‚‹ãƒ¯ãƒ³ã‚¿ã‚¤ãƒ ãƒ‘スワードã§ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã™ã‚‹ã“ã¨ã¯ã€'%s' メンãƒãƒ¼ã‚·ãƒƒãƒ—ソフトウェアã§ã®ã¿ã‚µãƒãƒ¼ãƒˆã•れã¾ã™ãƒ¦ãƒ¼ã‚¶ãƒ¼ãƒ‘スワードを使用ã—ã¦ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã™ã‚‹ã“ã¨ã¯ã€'%s' メンãƒãƒ¼ã‚·ãƒƒãƒ—ソフトウェアã§ã®ã¿ã‚µãƒãƒ¼ãƒˆã•れã¾ã™ã“ã®ãƒ¬ãƒ«ãƒ ã¸ã®å‚加ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“資格情報キャッシュを使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã¸å‚加ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“secret を使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã¸å‚加ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“資格情報ãªã—ã§ã“ã®ãƒ¬ãƒ«ãƒ ã«å‚加ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“ã“ã®ã‚·ã‚¹ãƒ†ãƒ ã® LDAP 㯠UDP 接続をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“ã“ã®ãƒ¬ãƒ«ãƒ ã‚’離れるã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“資格情報キャッシュを使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã‚’離れるã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“資格情報ãªã—ã§ã“ã®ãƒ¬ãƒ«ãƒ ã‚’離れるã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“既知ã®ãƒ¬ãƒ«ãƒ ã‚’一覧表示ã™ã‚‹å¿…è¦ãªãƒ‘ッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã¾ã›ã‚“: %sã“ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã‚’離れるã«ã¯è³‡æ ¼æƒ…å ±ãŒå¿…è¦ã§ã™ãƒ‡ãƒ•ォルトã®ãƒ¬ãƒ«ãƒ ã¯æ¤œå‡ºã•れã¾ã›ã‚“-a ã¾ãŸã¯ --all を使用ã—ã¦ãƒ­ã‚°ã‚¤ãƒ³ã‚’指定ã—ãªã„ã§ãã ã•ã„ãã®ã‚ˆã†ãªãƒ¬ãƒ«ãƒ ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸãã®ã‚ˆã†ãªãƒ¬ãƒ«ãƒ ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ: %sã“ã®ã‚¢ã‚¯ã‚·ãƒ§ãƒ³ã‚’実行ã™ã‚‹æ¨©é™ãŒã‚りã¾ã›ã‚“ç¾åœ¨ã“ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã—ã¦ã„ã¾ã›ã‚“ç¾åœ¨ã€ã“ã®ãƒ¬ãƒ«ãƒ ã«å‚加ã—ã¦ã„ã¾ã›ã‚“ã“ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã«å‚加ã—ã¦ã„ã¾ã›ã‚“æ“作ã¯ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•れã¾ã—ãŸã€‚%s ã«å¯¾ã™ã‚‹ãƒ‘スワード:レルムアカウントã®ãƒ­ã‚°ã‚¤ãƒ³ã‚’許å¯ã™ã‚‹ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³ã‚’許å¯ãƒ—ロセスã¯ã“ã®ã‚·ã‚°ãƒŠãƒ«ã§çµ‚了ã—ã¾ã—ãŸ: %dレルムã¯è‡ªå‹•メンãƒãƒ¼ã‚·ãƒƒãƒ—をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“レルムã¯ãƒ¯ãƒ³ã‚¿ã‚¤ãƒ ãƒ‘スワードを使用ã—ãŸãƒ¡ãƒ³ãƒãƒ¼ã‚·ãƒƒãƒ—をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“レルムã¯ãƒ‘スワードを使用ã—ãŸãƒ¡ãƒ³ãƒãƒ¼ã‚·ãƒƒãƒ—をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“ログインを許å¯/æ‹’å¦ã™ã‚‹ãƒ¬ãƒ«ãƒ ã‚µãƒ¼ãƒãƒ¼ã‹ã‚‰ç„¡åйã¾ãŸã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ãªã„ Netlogon データをå—ä¿¡ã—ã¾ã—ãŸãƒ¬ãƒ«ãƒ ã‹ã‚‰ã‚³ãƒ³ãƒ”ューターを削除レルムã‹ã‚‰ãƒžã‚·ãƒ³ã‚’削除ã—ã¾ã™ã‚³ãƒ³ãƒ”ューターアカウントã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ãƒ—リンシパルを設定ã™ã‚‹æ¤œå‡ºã•れãŸã™ã¹ã¦ã®ãƒ¬ãƒ«ãƒ ã‚’表示ã™ã¹ã¦ã®ãƒ¬ãƒ«ãƒ ã‚’表示åå‰ã ã‘表示スキップã—ãŸã‚³ãƒžãƒ³ãƒ‰: %s特定ã®ãƒ­ã‚°ã‚¤ãƒ³ã¯ --withdraw ã§æŒ‡å®šã™ã‚‹å¿…è¦ãŒã‚りã¾ã™å‚加ã™ã‚‹ãƒ¬ãƒ«ãƒ ã‚’1ã¤æŒ‡å®šã™ã‚‹è¨±å¯ãƒªã‚¹ãƒˆã«è¿½åŠ ã¾ãŸã¯å‰Šé™¤ã™ã‚‹ç‰¹å®šã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’指定ã—ã¾ã™--all ãªã—ã§ deny を指定ã™ã‚‹ã“ã¨ã¯éžæŽ¨å¥¨ã§ã™ã€‚--withdraw ã§ãƒ¬ãƒ«ãƒ ã®ä½¿ç”¨ã‚’許å¯ã™ã‚‹--no-password 引数ã¯ã€-one-time-password ã¾ãŸã¯ --user ã¨ä¸€ç·’ã«ä½¿ç”¨ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。--one-time-password 引数㯠--user ã¨ä¸€ç·’ã«ä½¿ç”¨ã§ãã¾ã›ã‚“ログインを拒å¦ã™ã‚‹å ´åˆã€-withdraw ã¾ãŸã¯ -x 引数ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“Samba プロãƒã‚¤ãƒ€ãƒ¼ã¯ã€è¨±å¯ã•れãŸãƒ­ã‚°ã‚¤ãƒ³ã‚’制é™ã§ãã¾ã›ã‚“。IPA ドメインã«å‚加ã™ã‚‹å ´åˆã€computer-ou 引数ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“。次ã®ãƒ‘ッケージã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã§ãã¾ã›ã‚“: %sæ“作ãŒã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•れã¾ã—ãŸãƒ¬ãƒ«ãƒ ã§ã¯ãƒ­ã‚°ã‚¤ãƒ³ã‚’指定ã§ãã¾ã›ã‚“åå‰ã‚’許å¯ã™ã‚‹ã‚°ãƒ«ãƒ¼ãƒ—ã¨ã—ã¦æ‰±ã„ã¾ã™è‡ªå‹• ID マッピングをオフã«ã—ã¾ã™ãƒ‰ãƒ¡ã‚¤ãƒ³ã«è‡ªå‹•çš„ã«å‚加ã§ãã¾ã›ã‚“ã“ã®ãƒžã‚·ãƒ³ã‚’レルムã‹ã‚‰ç™»éŒ²è§£é™¤ã™ã‚‹ãƒ‘スワードを使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã‚’登録解除ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“secret を使用ã—ã¦ã“ã®ãƒ¬ãƒ«ãƒ ã‹ã‚‰ç™»éŒ²è§£é™¤ã™ã‚‹ã“ã¨ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“ドメインã«å‚加ã™ã‚‹ãŸã‚ã®ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ãªã„資格情報サãƒãƒ¼ãƒˆã•れã¦ã„ãªã„ã€ã¾ãŸã¯ä¸æ˜Žãªãƒ¡ãƒ³ãƒãƒ¼ã‚·ãƒƒãƒ—ソフトウェア '%s'--all を使用ã—ã¦ã€ã™ã¹ã¦ã®ãƒ­ã‚°ã‚¤ãƒ³ã‚’æ‹’å¦ã—ã¾ã™ç‰¹å®šã®ã‚¯ãƒ©ã‚¤ã‚¢ãƒ³ãƒˆã‚½ãƒ•トウェアを使用ã™ã‚‹ç‰¹å®šã®ãƒ¡ãƒ³ãƒãƒ¼ã‚·ãƒƒãƒ—ソフトウェアを使用ã™ã‚‹ç‰¹å®šã®ã‚µãƒ¼ãƒãƒ¼ã‚½ãƒ•トウェアを使用ã™ã‚‹ç™»éŒ²ã«ä½¿ç”¨ã™ã‚‹ãƒ¦ãƒ¼ã‚¶ãƒ¼å削除ã«ä½¿ç”¨ã™ã‚‹ãƒ¦ãƒ¼ã‚¶ãƒ¼å詳細ãªå‡ºåŠ›ãƒ¬ãƒ«ãƒ ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã®ãƒ­ã‚°ã‚¤ãƒ³ã®è¨±å¯ã‚’å–り消ã™realmd-0.17.1/po/nl.po0000644003225100322510000003346214315277002014754 0ustar00sbosesbose00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: realmd\n" "Report-Msgid-Bugs-To: https://gitlab.freedesktop.org/realmd/realmd/-/issues\n" "POT-Creation-Date: 2022-09-29 13:14+0200\n" "PO-Revision-Date: 2015-10-20 19:12+0000\n" "Last-Translator: Stef Walter \n" "Language-Team: Dutch (http://www.transifex.com/freedesktop/realmd/language/" "nl/)\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: service/org.freedesktop.realmd.policy.in:14 msgid "Discover realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:15 msgid "Authentication is required to discover a kerberos realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:24 msgid "Join machine to realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:25 msgid "Authentication is required to join this machine to a realm or domain" msgstr "" #: service/org.freedesktop.realmd.policy.in:38 msgid "Remove machine from realm" msgstr "" #: service/org.freedesktop.realmd.policy.in:39 msgid "" "Authentication is required to remove this computer from a realm or domain." msgstr "" #: service/org.freedesktop.realmd.policy.in:48 msgid "Change login policy" msgstr "" #: service/org.freedesktop.realmd.policy.in:49 msgid "" "Authentication is required to change the policy of who can log in on this " "computer." msgstr "" #: service/realm-command.c:347 #, c-format msgid "Process was terminated with signal: %d" msgstr "" #: service/realm-command.c:400 service/realm-ldap.c:424 msgid "The operation was cancelled" msgstr "" #: service/realm-command.c:577 #, c-format msgid "Configured command not found: %s" msgstr "" #: service/realm-command.c:582 #, c-format msgid "Skipped command: %s" msgstr "" #: service/realm-command.c:588 #, c-format msgid "Configured command invalid: %s" msgstr "" #: service/realm-disco-mscldap.c:198 msgid "Received invalid or unsupported Netlogon data from server" msgstr "" #: service/realm-disco-mscldap.c:346 msgid "LDAP on this system does not support UDP connections" msgstr "" #: service/realm-disco-mscldap.c:354 service/realm-disco-rootdse.c:480 msgid "Failed to setup LDAP connection" msgstr "" #: service/realm-example.c:82 service/realm-samba.c:293 #: service/realm-sssd-ad.c:362 service/realm-sssd-ipa.c:304 #, c-format msgid "Unsupported or unknown membership software '%s'" msgstr "" #: service/realm-example.c:170 service/realm-samba.c:334 msgid "Already joined to a domain" msgstr "" #: service/realm-example.c:178 service/realm-example.c:271 msgid "Admin name or password is not valid" msgstr "" #: service/realm-example.c:242 service/realm-samba.c:475 #: service/realm-sssd-ad.c:584 msgid "Not currently joined to this domain" msgstr "" #: service/realm-example.c:301 msgid "Need credentials for leaving this domain" msgstr "" #: service/realm-ini-config.c:736 #, c-format msgid "Couldn't write out config: %s" msgstr "" #: service/realm-invocation.c:536 msgid "Not authorized to perform this action" msgstr "" #: service/realm-kerberos.c:130 service/realm-kerberos.c:208 #: service/realm-provider.c:158 msgid "Operation was cancelled." msgstr "" #: service/realm-kerberos.c:135 msgid "Failed to enroll machine in realm. See diagnostics." msgstr "" #: service/realm-kerberos.c:213 msgid "Failed to unenroll machine from domain. See diagnostics." msgstr "" #: service/realm-kerberos.c:273 msgid "Joining this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:274 msgid "Leaving this realm without credentials is not supported" msgstr "" #: service/realm-kerberos.c:277 msgid "Joining this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:278 msgid "Leaving this realm using a credential cache is not supported" msgstr "" #: service/realm-kerberos.c:281 msgid "Joining this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:282 msgid "Unenrolling this realm using a secret is not supported" msgstr "" #: service/realm-kerberos.c:285 msgid "Enrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:286 msgid "Unenrolling this realm using a password is not supported" msgstr "" #: service/realm-kerberos.c:312 msgid "Joining this realm is not supported" msgstr "" #: service/realm-kerberos.c:313 msgid "Leaving this realm is not supported" msgstr "" #: service/realm-kerberos.c:333 service/realm-kerberos.c:506 msgid "Already running another action" msgstr "" #: service/realm-kerberos.c:377 #, c-format msgid "Already joined to another domain: %s" msgstr "" #: service/realm-kerberos.c:448 msgid "Failed to change permitted logins. See diagnostics." msgstr "" #: service/realm-kerberos.c:749 msgid "The realm does not allow specifying logins" msgstr "" #: service/realm-kerberos.c:757 #, c-format msgid "Invalid login argument%s%s%s does not match the login format." msgstr "" #: service/realm-packages.c:390 #, c-format msgid "The following packages are not available for installation: %s" msgstr "" #: service/realm-packages.c:472 service/realm-packages.c:507 #, c-format msgid "Necessary packages are not installed: %s" msgstr "" #. #. * Various people have been worried by installing packages #. * quietly, so notify about what's going on. #. * #. * In reality *configuring* and *starting* a daemon is far #. * more worrisome than the installation. It's realmd's job #. * to configure, enable and start stuff. So if you're properly #. * worried, remove realmd and do stuff manually. #. #: service/realm-packages.c:478 tools/realm-client.c:143 msgid "Installing necessary packages" msgstr "" #: service/realm-provider.c:163 msgid "Failed to discover realm. See diagnostics." msgstr "" #: service/realm-samba.c:520 msgid "Not joined to this domain" msgstr "" #: service/realm-samba.c:530 service/realm-samba.c:572 msgid "The Samba provider cannot restrict permitted logins." msgstr "" #: service/realm-sssd.c:130 #, c-format msgid "Invalid login argument '%s' contains unsupported characters." msgstr "" #: service/realm-sssd-ad.c:128 msgid "Enabling SSSD in nsswitch.conf and PAM failed." msgstr "" #: service/realm-sssd-ad.c:277 msgid "Unable to automatically join the domain" msgstr "" #: service/realm-sssd-ad.c:379 #, c-format msgid "" "Joining a domain with a one time password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:393 #, c-format msgid "" "Joining a domain with a user password is only supported with the '%s' " "membership software" msgstr "" #: service/realm-sssd-ad.c:409 msgid "Unsupported credentials for joining a domain" msgstr "" #: service/realm-sssd-ad.c:465 service/realm-sssd-ipa.c:308 #: tools/realm-join.c:242 msgid "Already joined to this domain" msgstr "" #: service/realm-sssd-ad.c:471 service/realm-sssd-ipa.c:312 msgid "A domain with this name is already configured" msgstr "" #: service/realm-sssd-config.c:149 #, c-format msgid "Already have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-config.c:198 #, c-format msgid "Don't have domain %s in sssd.conf config file" msgstr "" #: service/realm-sssd-ipa.c:294 msgid "The computer-ou argument is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:298 msgid "" "The do-not-touch-config option is not supported when joining an IPA domain." msgstr "" #: service/realm-sssd-ipa.c:466 msgid "Not currently joined to this realm" msgstr "" #: tools/realm.c:40 msgid "Discover available realm" msgstr "" #: tools/realm.c:41 msgid "Enroll this machine in a realm" msgstr "" #: tools/realm.c:42 msgid "Unenroll this machine from a realm" msgstr "" #: tools/realm.c:43 msgid "List known realms" msgstr "" #: tools/realm.c:44 msgid "Permit user logins" msgstr "" #: tools/realm.c:45 msgid "Deny user logins" msgstr "" #: tools/realm.c:182 #, c-format msgid "Invalid value for %s option: %s" msgstr "" #: tools/realm.c:214 msgid "Install mode to a specific prefix" msgstr "" #: tools/realm.c:215 msgid "Verbose output" msgstr "" #: tools/realm.c:216 msgid "Do not prompt for input" msgstr "" #: tools/realm-client.c:193 tools/realm-client.c:203 msgid "Couldn't connect to realm service" msgstr "" #: tools/realm-client.c:232 msgid "Couldn't load the realm service" msgstr "" #: tools/realm-client.c:251 msgid "Couldn't connect to system bus" msgstr "" #: tools/realm-client.c:281 #, c-format msgid "Couldn't create socket pair: %s" msgstr "" #: tools/realm-client.c:289 tools/realm-client.c:321 msgid "Couldn't create socket" msgstr "" #: tools/realm-client.c:302 msgid "Couldn't run realmd" msgstr "" #: tools/realm-client.c:569 #, c-format msgid "Couldn't create runtime directory: %s: %s" msgstr "" #: tools/realm-client.c:579 #, c-format msgid "Couldn't create credential cache file: %s: %s" msgstr "" #: tools/realm-client.c:589 msgid "Couldn't resolve credential cache" msgstr "" #: tools/realm-client.c:679 #, c-format msgid "Invalid password for %s" msgstr "" #: tools/realm-client.c:683 #, c-format msgid "Couldn't authenticate as %s" msgstr "" #: tools/realm-client.c:708 #, c-format msgid "Couldn't parse user name: %s" msgstr "" #: tools/realm-client.c:732 msgid "Couldn't read credential cache" msgstr "" #: tools/realm-client.c:758 tools/realm-client.c:965 msgid "Couldn't initialize kerberos" msgstr "" #: tools/realm-client.c:821 msgid "Cannot prompt for a password when running in unattended mode" msgstr "" #: tools/realm-client.c:825 #, c-format msgid "Password for %s: " msgstr "" #: tools/realm-client.c:843 #, c-format msgid "Couldn't prompt for password: %s" msgstr "" #: tools/realm-client.c:878 msgid "Realm does not support membership using a password" msgstr "" #: tools/realm-client.c:917 msgid "Realm does not support membership using a one time password" msgstr "" #: tools/realm-client.c:985 msgid "Couldn't select kerberos credentials" msgstr "" #: tools/realm-client.c:999 msgid "Couldn't read kerberos credentials" msgstr "" #: tools/realm-client.c:1049 msgid "Realm does not support automatic membership" msgstr "" #: tools/realm-discover.c:136 msgid "Couldn't discover realms" msgstr "" #: tools/realm-discover.c:156 msgid "No default realm discovered" msgstr "" #: tools/realm-discover.c:158 #, c-format msgid "No such realm found: %s" msgstr "" #: tools/realm-discover.c:183 msgid "Show all discovered realms" msgstr "" #: tools/realm-discover.c:184 tools/realm-discover.c:278 msgid "Show only the names" msgstr "" #: tools/realm-discover.c:185 tools/realm-join.c:296 tools/realm-leave.c:271 msgid "Use specific client software" msgstr "" #: tools/realm-discover.c:186 tools/realm-join.c:302 msgid "Use specific membership software" msgstr "" #: tools/realm-discover.c:187 tools/realm-join.c:312 tools/realm-leave.c:274 msgid "Use specific server software" msgstr "" #: tools/realm-discover.c:188 tools/realm-join.c:318 tools/realm-leave.c:276 msgid "Use ldaps to connect to LDAP" msgstr "" #: tools/realm-discover.c:277 msgid "Show all realms" msgstr "" #: tools/realm-join.c:92 tools/realm-join.c:132 tools/realm-join.c:163 msgid "Couldn't join realm" msgstr "" #: tools/realm-join.c:233 msgid "Cannot join this realm" msgstr "" #: tools/realm-join.c:235 msgid "No such realm found" msgstr "" #: tools/realm-join.c:294 msgid "Turn off automatic id mapping" msgstr "" #: tools/realm-join.c:298 msgid "Use specific computer name instead of hostname" msgstr "" #: tools/realm-join.c:300 msgid "Computer OU DN to join" msgstr "" #: tools/realm-join.c:304 msgid "Join automatically without a password" msgstr "" #: tools/realm-join.c:306 msgid "Join using a preset one time password" msgstr "" #: tools/realm-join.c:308 msgid "Use specific operation system name" msgstr "" #: tools/realm-join.c:310 msgid "Use specific operation system version" msgstr "" #: tools/realm-join.c:314 msgid "User name to use for enrollment" msgstr "" #: tools/realm-join.c:316 msgid "Set the user principal for the computer account" msgstr "" #: tools/realm-join.c:320 msgid "Do not change client configuration" msgstr "" #: tools/realm-join.c:340 msgid "Specify one realm to join" msgstr "" #: tools/realm-join.c:345 msgid "" "The --no-password argument cannot be used with --one-time-password or --user" msgstr "" #: tools/realm-join.c:350 msgid "The --one-time-password argument cannot be used with --user" msgstr "" #: tools/realm-leave.c:181 tools/realm-leave.c:210 msgid "Couldn't leave realm" msgstr "" #: tools/realm-leave.c:272 msgid "Remove computer from realm" msgstr "" #: tools/realm-leave.c:275 msgid "User name to use for removal" msgstr "" #: tools/realm-logins.c:129 tools/realm-logins.c:175 msgid "Couldn't change permitted logins" msgstr "" #: tools/realm-logins.c:200 msgid "Permit any realm account login" msgstr "" #: tools/realm-logins.c:200 msgid "Deny any realm account login" msgstr "" #: tools/realm-logins.c:202 msgid "Withdraw permit for a realm account to login" msgstr "" #: tools/realm-logins.c:204 msgid "Treat names as groups which to permit" msgstr "" #: tools/realm-logins.c:205 msgid "Realm to permit/deny logins for" msgstr "" #: tools/realm-logins.c:219 msgid "No logins should be specified with -a or --all" msgstr "" #: tools/realm-logins.c:222 msgid "The --withdraw or -x arguments cannot be used when denying logins" msgstr "" #: tools/realm-logins.c:225 msgid "Specific logins must be specified with --withdraw" msgstr "" #: tools/realm-logins.c:228 msgid "Groups may not be specified with -a or --all" msgstr "" #: tools/realm-logins.c:235 msgid "Use --all to deny all logins" msgstr "" #: tools/realm-logins.c:237 msgid "Specify specific users to add or remove from the permitted list" msgstr "" #: tools/realm-logins.c:241 msgid "" "Specifying deny without --all is deprecated. Use realm permit --withdraw" msgstr "" realmd-0.17.1/manual/0000755003225100322510000000000014315277004014634 5ustar00sbosesbose00000000000000realmd-0.17.1/manual/gdbus-org.freedesktop.realmd.KerberosMembership.html0000644003225100322510000004000714315277004026760 0ustar00sbosesbose00000000000000 org.freedesktop.realmd.KerberosMembership: realmd

org.freedesktop.realmd.KerberosMembership

org.freedesktop.realmd.KerberosMembership

Methods

Join  (IN  (ssv) credentials,
       IN  a{sv} options);
Leave (IN  (ssv) credentials,
       IN  a{sv} options);

Properties

SuggestedAdministrator     readable   s
SupportedJoinCredentials   readable   a(ss)
SupportedLeaveCredentials  readable   a(ss)

Description

An interface used to configure this machine by joining a realm.

It sets up a computer/host account in the realm for this machine and a keytab to track the credentials for that account.

The various properties are guaranteed to have been updated before the operation methods return, if they change state.

Method Details

The Join() method

Join (IN  (ssv) credentials,
      IN  a{sv} options);

Join this machine to the realm and enroll the machine.

If this method returns successfully, then the machine will be joined to the realm. It is not necessary to restart services or the machine afterward. Relevant properties on the realm will be updated before the method returns.

The credentials should be set according to one of the supported credentials returned by org.freedesktop.realmd.Kerberos:SupportedJoinCredentials. The first string in the tuple is the type, the second string is the owner, and the variant contains the credential contents See the discussion at org.freedesktop.realmd.Kerberos:SupportedJoinCredentials for more information.

options can contain, but is not limited to, the following values:

  • automatic-id-mapping: a boolean value whether to turn on automatic UID/GID mapping. If not specified the default will come from realmd.conf configuration.

  • operation: a string identifier chosen by the client, which can then later be passed to Cancel() in order to cancel the operation

  • computer-ou: a string containing an LDAP DN for an organizational unit where the computer account should be created

  • user-principal: a string containing an kerberos user principal name to be set on the computer account

  • membership-software: a string containing the membership software identifier that the returned realms should match.

  • manage-system: a boolean which controls whether this machine should be managed by the realm or domain or not. Defaults to true.

This method requires authorization for the PolicyKit action called org.freedesktop.realmd.configure-realm.

In addition to common DBus error results, this method may return:

  • org.freedesktop.realmd.Error.Failed: may be returned if the join failed for a generic reason.

  • org.freedesktop.realmd.Error.Cancelled: returned if the operation was cancelled.

  • org.freedesktop.realmd.Error.NotAuthorized: returned if the calling client is not permitted to perform a join operation.

  • org.freedesktop.realmd.Error.AuthenticationFailed: returned if the credentials passed did not authenticate against the realm correctly. It is appropriate to prompt the user again.

  • org.freedesktop.realmd.Error.AlreadyEnrolled: returned if already enrolled in this realm, or if already enrolled in another realm (if enrolling in multiple realms is not supported).

  • org.freedesktop.realmd.Error.BadHostname: returned if the machine has a hostname that is not usable for a join or is in conflict with those in the domain.

  • org.freedesktop.realmd.Error.Busy: returned if the service is currently performing another operation like join or leave.

IN (ssv) credentials:

IN a{sv} options:


The Leave() method

Leave (IN  (ssv) credentials,
       IN  a{sv} options);

Leave the realm and unenroll the machine.

If this method returns successfully, then the machine will have left the domain and been unenrolled. It is not necessary to restart services or the machine afterward. Relevant properties on the realm will be updated before the method returns.

The credentials should be set according to one of the supported credentials returned by org.freedesktop.realmd.Kerberos:SupportedJoinCredentials. The first string in the tuple is the type, the second string is the owner, and the variant contains the credential contents See the discussion at org.freedesktop.realmd.Kerberos:SupportedJoinCredentials for more information.

options can contain, but is not limited to, the following values:

  • operation: a string identifier chosen by the client, which can then later be passed to Cancel() in order to cancel the operation

This method requires authorization for the PolicyKit action called org.freedesktop.realmd.deconfigure-realm.

In addition to common DBus error results, this method may return:

  • org.freedesktop.realmd.Error.Failed: may be returned if the unenroll failed for a generic reason.

  • org.freedesktop.realmd.Error.Cancelled: returned if the operation was cancelled.

  • org.freedesktop.realmd.Error.NotAuthorized: returned if the calling client is not permitted to perform an unenroll operation.

  • org.freedesktop.realmd.Error.AuthenticationFailed: returned if the credentials passed did not authenticate against the realm correctly. It is appropriate to prompt the user again.

  • org.freedesktop.realmd.Error.NotEnrolled: returned if not enrolled in this realm.

  • org.freedesktop.realmd.Error.Busy: returned if the service is currently performing another operation like join or leave.

IN (ssv) credentials:

IN a{sv} options:

Property Details

The "SuggestedAdministrator" property

SuggestedAdministrator  readable   s

common administrator name The common administrator name for this type of realm. This can be used by clients as a hint when prompting the user for administrative authentication.


The "SupportedJoinCredentials" property

SupportedJoinCredentials  readable   a(ss)

credentials supported for joining Various kinds of credentials that are supported when calling the org.freedesktop.realmd.Kerberos.Join() method.

Each credential is represented by a type and an owner. The type denotes which kind of credential is passed to the method. The owner indicates to the client how to prompt the user or obtain the credential, and to the service how to use the credential.

The various types are:

  • ccache: the credentials should contain an array of bytes as a ay containing the data from a kerberos credential cache file.

  • password: the credentials should contain a pair of strings as a (ss) representing a name and password. The name may contain a realm in the standard kerberos format. If a realm is missing, it will default to this realm.

  • secret: the credentials should contain a string secret as an ay array of bytes. This is usually used for one time passwords. To pass a string here, encode it in UTF-8, and place the resulting bytes in the value.

  • automatic: the credentials should contain an empty string as a s. Using automatic indicates that default or system credentials are to be used.

The various owners are:

  • administrator: the credentials belong to a kerberos administrator principal. The caller may use this as a hint to prompt the user for administrative credentials.

  • user: the credentials belong to a kerberos user principal. The caller may use this as a hint to prompt the user for his (possibly non-administrative) credentials.

  • computer: the credentials belong to a computer account.

  • none: the credentials have an unspecified owner, such as a one time password.


The "SupportedLeaveCredentials" property

SupportedLeaveCredentials  readable   a(ss)

credentials supported for leaving Various kinds of credentials that are supported when calling the org.freedesktop.realmd.Kerberos.Leave() method.

See org.freedesktop.realmd.Kerberos:SupportedJoinCredentials for a discussion of what the values represent.

realmd-0.17.1/manual/realm.html0000644003225100322510000005117214315277004016630 0ustar00sbosesbose00000000000000 realm: realmd

realm

realm — Manage enrollment in realms

Synopsis

realm discover [realm-name]

realm join [-U user] [realm-name]

realm leave [-U user] [realm-name]

realm list

realm permit [-ax] [-R realm] {user@domain...}

realm deny -a [-R realm]

Description

realm is a command line tool that can be used to manage enrollment in kerberos realms, like Active Directory domains or IPA domains.

See the various sub commands below. The following global options can be used:

-i, --install=/path

Run in install mode. This makes realmd chroot into the directory specified by an absolute path and place files in appropriate locations for use during an installer. No packages will be installed or services will be started when running in this mode.

--unattended

Run in unattended mode without prompting for input.

-v, --verbose

Display verbose diagnostics while doing running commands.

Discover

Discover a realm and its capabilities.

$ realm discover
$ realm discover domain.example.com

After discovering a realm, its name, type and capabilities are displayed.

If no domain is specified, then the domain assigned through DHCP is used as a default.

The following options can be used:

-a, --all

Show all discovered realms (in various configurations).

--client-software=xxx

Only discover realms for which we can use the given client software. Possible values include sssd or winbind.

-n, --name

Only show the names of the discovered realms.

--server-software=xxx

Only discover realms which run the given server software. Possible values include active-directory or ipa.

--membership-software=xxx

Only discover realms for which the given membership software can be used to subsequently perform enrollment. Possible values include samba or adcli.

--use-ldaps

See option description in the section called “Joinâ€.

Join

Configure the local machine for use with a realm.

$ realm join domain.example.com
$ realm join --user=admin --computer-ou=OU=Special domain.example.com

The realm is first discovered, as we would with the discover command. If no domain is specified, then the domain assigned through DHCP is used as a default.

After a successful join, the computer will be in a state where it is able to resolve remote user and group names from the realm. For kerberos realms, a computer account and host keytab is created.

Joining arbitrary kerberos realms is not supported. The realm must have a supported mechanism for joining from a client machine, such as Active Directory or IPA.

If the domain has been preconfigured, and unless --user is explicitly specified, an automatic join is attempted first.

Note that the --user , --no-password, and --one-time-password options are mutually exclusive. At most one of them can be specified.

It is generally possible to use kerberos credentials to perform a join operation. Use the kinit command to acquire credentials prior to starting the join. Do not specify the --user argument, the user will be selected automatically from the credential cache. The realm respects the KRB5_CCACHE environment variable, but uses the default kerberos credential cache if it's not present. Not all types of servers can be joined using kerberos credentials, some (like IPA) insist on prompting for a password.

The following options can be used:

--automatic-id-mapping=no

Do not perform UID/GID mapping for users and groups, but expect these identifiers to be present in the domain already.

--client-software=xxx

Only join realms for which we can use the given client software. Possible values include sssd or winbind. Not all values are supported for all realms. By default the client software is automatically selected.

--computer-ou=OU=xxx

The distinguished name of an organizational unit to create the computer account. The exact format of the distinguished name depends on the client software and membership software. You can usually omit the root DSE portion of distinguished name. This is an Active Directory specific option.

--membership-software=xxx

The software to use when joining to the realm. Possible values include samba or adcli. Not all values are supported for all realms. By default the membership software is automatically selected.

--computer-name=xxx

This option only applies to Active Directory realms. Specify this option to override the default name used when creating the computer account. The system's FQDN will still be saved in the dNSHostName attribute.

Specify the name as a string of 15 or fewer characters that is a valid NetBIOS computer name.

--no-password

Perform the join automatically without a password.

--one-time-password=xxxx

Perform the join using a one time password specified on the command line. This is not possible with all types of realms.

--os-name=xxx

The name of the operation system of the client. When joining an AD domain the value is store in the matching AD attribute.

--os-version=xxx

The version of the operation system of the client. When joining an AD domain the value is store in the matching AD attribute.

--server-software=xxx

Only join realms for run the given server software. Possible values include active-directory or ipa.

-U, --user=xxx

The user name to be used to authenticate with when joining the machine to the realm. You will be prompted for a password.

--user-principal=host/name@REALM

Set the userPrincipalName field of the computer account to this kerberos principal. If you omit the value for this option, then a principal will be set based on the defaults of the membership software.

AD makes a distinction between user and service principals. Only with user principals you can request a Kerberos Ticket-Granting-Ticket (TGT), i.e. only user principals can be used with the kinit command. By default the user principal and the canonical principal name of an AD computer account is shortname$@AD.DOMAIN, where shortname is the NetBIOS name which is limited to 15 characters.

If there are applications which are not aware of the AD default and are using a hard-coded default principal the --user-principal can be used to make AD aware of this principal. Please note that userPrincipalName is a single value LDAP attribute, i.e. only one alternative user principal besides the AD default user principal can be set.

--use-ldaps

Use the ldaps port when connecting to AD where possible. In general this option is not needed because realmd itself only read public information from the Active Directory domain controller which is available anonymously. The supported membership software products will use encrypted connections protected with GSS-SPNEGO/GSSAPI which offers a comparable level of security than ldaps. This option is only needed if the standard LDAP port (389/tcp) is blocked by a firewall and only the LDAPS port (636/tcp) is available. Given that and to lower the initial effort to discover a remote domain realmd does not require a strict certificate check. If the validation of the LDAP server certificate fails realmd will continue to setup the encrypted connection to the LDAP server.

If this option is set to yes realmd will use the ldaps port when reading the rootDSE and call the adcli membership software with the option --use-ldaps. The Samba base membership currently offers only deprecated ways to enable ldaps. Support will be added in realmd when a new way is available.

--do-not-touch-config

Run the join operation but do not touch the local configuration of the client except adding new Kerberos keys to the keytab. The purpose of this option is to synchronize the keytab entries with the ones stored in AD or recreate the computer object in AD without changing the local configuration which might contain changes which would get overwritten by a fully leave/join cycle.

If running realm join with this options does not help to fix issues it is recommended to call realm leave followed by realm join to enforce a fresh configuration with default settings. Since this might overwrite manual changes to the related configuration files it is recommend to save those change before running the commands.

This options is only available when joining AD domains.

Leave

Deconfigure the local machine for use with a realm.

$ realm leave
$ realm leave domain.example.com

If no realm name is specified, then the first configured realm will be used.

The following options can be used:

--client-software=xxx

Only leave the realm which is using the given client software. Possible values include sssd or winbind.

--server-software=xxx

Only leave the realm which is using the given server software. Possible values include active-directory or ipa.

--remove

Remove or disable computer account from the directory while leaving the realm. This will usually prompt for a pasword.

-U, --user

The user name to be used to authenticate with when leaving the realm. You will be prompted for a password. Implies --remove.

--use-ldaps

See option description in the section called “Joinâ€.

List

List all the discovered and configured realms.

$ realm list

By default, realms that have been discovered, but not configured (using the join command), are not displayed. Also, by default, the list of realm details displayed is verbose. The options below can be used to change this default behavior

The following options can be used:

--all

Show all discovered realms (whether or not they have been configured).

--name-only

Display only realm names (as opposed to verbose output).

Permit

Permit local login by users of the realm.

$ realm permit --all
$ realm permit user@example.com
$ realm permit DOMAIN\\User2
$ realm permit --withdraw user@example.com

The current login policy and format of the user names can be seen by using the realm list command.

The following options can be used:

--all, -a

Permit logins using realm accounts on the local machine according to the realm policy.This usually defaults to allowing any realm user to log in.

--groups, -g

Treat the specified names as groups rather than user login names. Permit login by users in the specified groups.

--realm, -R

Specify the of the realm to change login policy for.

--withdraw, -x

Remove a login from the list of realm accounts permitted to log into the machine.

Deny

Deny local login by realm accounts.

$ realm deny --all

This command prevents realm accounts from logging into the local machine. Use realm permit to restrict logins to specific accounts.

The following options can be used:

--all, -a

This option should be specified

--realm, -R

Specify the name of the realm to deny users login to.

SEE ALSO

realmd.conf(5)

realmd-0.17.1/manual/realmd-conf.html0000644003225100322510000005075214315277004017722 0ustar00sbosesbose00000000000000 realmd.conf: realmd

realmd.conf

realmd.conf — Tweak behavior of realmd

Configuration File

realmd can be tweaked by network administrators to act in specific ways. This is done by placing settings in a /etc/realmd.conf. This file does not exist by default. The syntax of this file is the same as an INI file or Desktop Entry file. If the file is changed and realmd is running realmd must be restarted to read the new values.

In general, settings in this file only apply at the point of joining a domain or realm. Once the realm has been setup the settings have no effect. You may choose to configure SSSD or Winbind directly.

Only specify the settings you wish to override in the /etc/realmd.conf file. Settings not specified will be loaded from their packaged defaults which can be found in /usr/local/lib/realmd/realmd-defaults.conf and /usr/local/lib/realmd/realmd-distro.conf. Only override the settings below. You may find other settings if you look through the realmd source code. However these are not guaranteed to remain stable.

There are various sections in the config file. Some sections are global topic sections, and are listed below. Other sections are specific to a given realm. These realm specific sections should always contain the domain name in lower case as their section header.

Examples of each setting is found below, including the header of the section it should be placed in. However in the resulting file only include each section once, and combine the various section setting together as lines underneath the section. For example

[users]
default-home = /home/%U
default-shell = /bin/bash

active-directory

These options should go in an [active-directory] section of the /etc/realmd.conf file. Only specify the settings you wish to override.

default-client

Specify the default-client setting in order to control which client software is the preferred default for use with Active Directory.

[active-directory]
default-client = sssd
# default-client = winbind

The default setting for this is sssd which uses SSSD as the Active Directory client. You can also specify winbind to use Samba Winbind.

Some callers of realmd such as the realm command line tool allow specifying which client software should be used. Others, such as GNOME Control Center, simplify choose the default.

You can verify the preferred default client softawre by running the following command. The realm with the preferred client software will be listed first.

$ realm discover domain.example.com
domain.example.com
  configured: no
  server-software: active-directory
  client-software: sssd
  type: kerberos
  realm-name: AD.THEWALTER.LAN
  domain-name: ad.thewalter.lan
domain.example.com
  configured: no
  server-software: active-directory
  client-software: winbind
  type: kerberos
  realm-name: AD.THEWALTER.LAN
  domain-name: ad.thewalter.lan

use-ldaps

Use the ldaps port when connecting to AD where possible. In general this option is not needed because realmd itself only read public information from the Active Directory domain controller which is available anonymously. The supported membership software products will use encrypted connections protected with GSS-SPNEGO/GSSAPI which offers a comparable level of security than ldaps. This option is only needed if the standard LDAP port (389/tcp) is blocked by a firewall and only the LDAPS port (636/tcp) is available.

If this option is set to yes realmd will use the ldaps port when reading the rootDSE and call the adcli membership software with the option --use-ldaps. The Samba base membership currently offers only deprecated ways to enable ldaps. Support will be added in realmd when a new way is available.

os-name

(see below)

os-version

Specify the os-name and/or os-version settings to control the values that are placed in the computer account operatingSystem and operatingSystemVersion attributes.

This is an Active Directory specific option.

It is also possible to use the --os-name or --os-version argument of the realm command to override the default values.

[active-directory]
os-name = Gentoo Linux
os-version = 9.9.9.9.9

service

These options should go in an [service] section of the /etc/realmd.conf file. Only specify the settings you wish to override.

automatic-install

Set this to no to disable automatic installation of packages via package-kit.

[service]
automatic-install = no
# automatic-install = yes

legacy-samba-config

Set this to yes to create a Samba configuration file with id-mapping options used by Samba-3.5 and earlier version.

[service]
legacy-samba-config = no
# legacy-samba-config = yes

users

These options should go in an [users] section of the /etc/realmd.conf file. Only specify the settings you wish to override.

default-home

Specify the default-home setting in order to control how to set the home directory for accounts that have no home directory explicitly set.

[users]
default-home = /home/%U@%D
# default-home = /nfs/home/%D-%U
# default-home = /home/%D/%U

The default setting for this is /home/%U@%D. The %D format is replaced by the domain name. The %U format is replaced by the user name.

You can verify the home directory for a user by running the following command.

$ getent passwd 'DOMAIN/User'
DOMAIN\user:*:13445:13446:Name:/home/DOMAIN/user:/bin/bash

Note that in the case of IPA domains, most users already have a home directory configured in the domain. Therefore this configuration setting may rarely show through.

default-shell

Specify the default-shell setting in order to control how to set the Unix shell for accounts that have no shell explicitly set.

[users]
default-shell = /bin/bash
# default-shell = /bin/sh

The default setting for this is /bin/bash shell. The shell should be a valid shell if you expect the domain users be able to log in. For example it should exist in the /etc/shells file.

You can verify the shell for a user by running the following command.

$ getent passwd 'DOMAIN/User'
DOMAIN\user:*:13445:13446:Name:/home/DOMAIN/user:/bin/bash

Note that in the case of IPA domains, most users already have a shell configured in the domain. Therefore this configuration setting may rarely show through.

paths

These options should go in an [paths] section of the /etc/realmd.conf file. Only specify the settings you wish to override.

krb5.conf

Path to the Kerberos configuration file, typically /etc/krb5.conf. It can also be the path of a file included by /etc/krb5.conf, e.g. /etc/krb5.conf.d/realmd_settings, if the file does not exist if will be created.

[paths]
krb5.conf = /etc/krb5.conf.d/realmd_settings

When joining an Active Directory domain realmd will set the default_realm and udp_preference_limit options in the Kerberos configuration:

default_realm = DOMAIN.EXAMPLE.COM
udp_preference_limit = 0

The default_realm option is e.g. needed when trying to resolve enterprise principals and makes it more convenient to request Kerberos tickets for users of the default realm. Instead of specifying the whole principal just kinit username can be used.

With udp_preference_limit = 0 always TCP will be used to send Kerberos request to domain controller. This is useful in Active Directory environments because Kerberos will typically switch to TCP after initially starting with UDP because AD Kerberos tickets are often larger than UDP can handle. Using TCP by default will avoid those extra UDP round trips. Additionally it helps to avoid issues with password changes when the DC does not reply soon enough and the client will send a second UDP request. The DC might reply with a reply error to the second request although the original password change request was successful and the client will no know if the request was successful or not. When using TCP this cannot happen because the client will never send a second request but waits on the connection until the server replies.

Please note that realmd will not remove those options while leaving the domain since they are useful in general. When joining a new domain realmd will of course overwrite default_realm.

Realm specific settings

These options should go in an section with the same name as the realm in the /etc/realmd.conf file. For example for the domain.example.com domain the section would be called [domain.example.com]. To figure out the canonical name for a realm use the realm command:

$ realm discover --name-only DOMAIN.example.com
domain.example.com
...

Only specify the settings you wish to override.

computer-ou

Specify this option to create directory computer accounts in a location other than the default. This currently only works with Active Directory domains.

[domain.example.com]
computer-ou = OU=Linux Computers,DC=domain,DC=example,DC=com
# computer-ou = OU=Linux Computers,

Specify the OU as an LDAP DN. It can be relative to the Root DSE, or a complete LDAP DN. Obviously the OU must exist in the directory.

It is also possible to use the --computer-ou argument of the realm command to create a computer account at a specific OU.

computer-name

This option only applied to Active Directory realms. Specify this option to override the default name used when creating the computer account. The system's FQDN will still be saved in the dNSHostName attribute.

[domain.example.com]
computer-name = SERVER01

Specify the name as a string of 15 or fewer characters that is a valid NetBIOS computer name.

It is also possible to use the --computer-name argument of the realm command to override the default computer account name.

user-principal

Set the user-principal to yes to create userPrincipalName attribute for the computer accounts in the realm. The exact value depends on the defaults of the used membership software. To have full control over the value please use the --user-principal option of the realm command, see realm(8) for details.

[domain.example.com]
user-principal = yes

automatic-join

This option only applies to Active Directory realms. This option is off by default. In Active Directory domains, a computer account can be preset with a known computer account password. This can be used for automatic joins without authentication.

When automatic joins are used there is no mutual authentication between the machine and the domain during the join process.

[domain.example.com]
automatic-join = yes

automatic-id-mapping

This option is on by default for Active Directory realms. Turn it off to use UID and GID information stored in the directory (as-per RFC2307) rather than automatically generating UID and GID numbers.

This option only makes sense for Active Directory realms.

[domain.example.com]
automatic-id-mapping = no
# automatic-id-mapping = yes

manage-system

This option is on by default. Normally joining a realm affects many aspects of the configuration and management of the system. Turning this off limits the interaction with the realm or domain to authentication and identity.

[domain.example.com]
manage-system = no
# manage-system = yes

When this option is turned on realmd defaults to using domain policy to control who can log into this machine. Further adjustments to login policy can be made with the realm permit command.

fully-qualified-names

This option is on by default. If turned off then realm user and group names are not qualified their name. This may cause them to conflict with local user and group names.

[domain.example.com]
fully-qualified-names = no
# fully-qualified-names = yes

SEE ALSO

realm(8)

realmd-0.17.1/manual/book.devhelp20000644003225100322510000001632514315277004017230 0ustar00sbosesbose00000000000000 realmd-0.17.1/manual/gdbus-org.freedesktop.realmd.Service.html0000644003225100322510000001745514315277004024603 0ustar00sbosesbose00000000000000 org.freedesktop.realmd.Service: realmd

org.freedesktop.realmd.Service

org.freedesktop.realmd.Service — the realmd service

Methods

Cancel    (IN  s operation);
SetLocale (IN  s locale);
Release   ();

Signals

Diagnostics (s data,
             s operation);

Description

Global calls for managing the realmd service. Usually you'll want to use org.freedesktop.realmd.Provider instead.

This interface is implemented by the realmd service, and is always available at the object path /org/freedesktop/realmd

The service also implements the org.freedesktop.DBus.ObjectManager interface which makes it easy to retrieve all realmd objects and properties in one go.

Method Details

The Cancel() method

Cancel (IN  s operation);

Cancel a realmd operation. To be able to cancel an operation, pass a uniquely chosen operation string identifier as an option in the method's options argument.

These operation string identifiers should be unique per client calling the realmd service.

It is not guaranteed that the service can or will cancel the operation. For example, the operation may have already completed by the time this method is handled. The caller of the operation method will receive a org.freedesktop.realmd.Error.Cancelled if the operation was cancelled.

IN s operation:

the operation to cancel


The SetLocale() method

SetLocale (IN  s locale);

Set the language locale for the client. This locale is used for error messages. The locale is used until the next time this method is called, the client disconnects, or the client calls #Release().

IN s locale:

the locale for the client


The Release() method

Release ();

Normally, realmd waits until all clients have disconnected before exiting itself sometime later. Long lived clients can call this method to allow the realmd service to quit. This is an optimization. The daemon will not exit immediately. It is safe to call this multiple times.

Signal Details

The "Diagnostics" signal

Diagnostics (s data,
             s operation);

This signal is fired when diagnostics result from an operation in the provider or one of its realms.

It is not guaranteed that this signal is emitted once per line. More than one line may be contained in data, or a partial line. New line characters are embedded in data.

This signal is sent explicitly to the client which invoked an operation method. In order to tell which operation this diagnostic data results from, pass a unique operation string identifier in the options argument of the operation method. That same identifier will be passed back via the operation argument of this signal.

s data:

diagnostic data

s operation:

the operation this data resulted from

realmd-0.17.1/manual/guide-ipa-permit.html0000644003225100322510000000540714315277004020672 0ustar00sbosesbose00000000000000 Logins using Domain Accounts: realmd

Logins using Domain Accounts

Once the computer is joined to a IPA domain, the machine will automatically follow the domain settings for whether users are able to log into the machine or not.

To override this behavior and permit any domain account to log in, use the following command.

$ realm permit --realm domain.example.com --all

To permit only specific accounts from the domain to log in use the following command. The first time this command is run it will change the mode to only allow logins by specific accounts, and then add the specified accounts to the list of accounts to permit.

$ realm permit --realm domain.example.com user1@ipa.example.com user2@ipa.example.com

To deny logins from any domain account, use the following command.

$ realm deny --realm domain.example.com --all
realmd-0.17.1/manual/up.png0000644003225100322510000000062614315277004015772 0ustar00sbosesbose00000000000000‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ2.œE€Ù#IDATxœí“=JÄ@F¿o‰] !+¤œ2…Å[ZÌ<@/á<€¥…XÛ Ú­20v±³ˆÂ…Ïj0»lþvV°ðA`˜ ïÍ ð—t*iùâHÒ­~xR~'IUUÉ9ç#OÁ‘my–eJÓTeY†GvÉ@x¤O#ß;2E>9²|t$DÞ9nnBäíÈjµò‘BRIsIªë:HîŸ8ŽU…œùëùPÖÚN™1fc­sNÎ95Mã§–ɵ¤ ׿ŸØŒ1~¸pEòe$ïIž°€Ç î7nrDòf!;Ã`¨çÝ'äykíÎI’øáû䲤sI_]ÿÇy—‡‘€ÅÀ^^I>O>Á¡ø­§²š?YBIEND®B`‚realmd-0.17.1/manual/guide-kerberos.html0000644003225100322510000000664014315277004020437 0ustar00sbosesbose00000000000000 Using with other Kerberos realms: realmd

Using with other Kerberos realms

realmd can discover generic Kerberos realms. Since there is no standard way to enroll a computer against a Kerberos server, it is not possible to do this with realmd.

Discovering Kerberos realms

realmd discovers which domains or realms it can use or configure. It can discover and identify Kerberos domains by looking up the appropriate DNS SRV records.

The following DNS SRV record is required to be present for realmd to identify a provided realm as a Kerberos domain.

# In this example the Kerberos domain is 'domain.example.com'
_kerberos._udp.domain.example.com.
$ realm --verbose discover domain.example.com
 * Searching for kerberos SRV records for domain: _kerberos._udp.domain.example.com
 * Searching for MSDCS SRV records on domain: _kerberos._tcp.dc._msdcs.domain.example.com
 * dc.domain.example.com:88
 * Trying to retrieve IPA certificate from dc.domain.example.com
 ! Couldn't read certificate via HTTP: No PEM-encoded certificate found
 ! Couldn't discover IPA KDC: No PEM-encoded certificate found
 * Found kerberos DNS records for: domain.example.com
 * Successfully discovered: domain.example.com
...
realmd-0.17.1/manual/dbus-interface-raw.html0000644003225100322510000001167214315277004021213 0ustar00sbosesbose00000000000000 Raw DBus Interfaces: realmd

Raw DBus Interfaces

These are the current raw DBus interfaces for realmd.

<node name='/'>
	<interface name='org.freedesktop.realmd.Provider'>
		<property name='Name' type='s' access='read'></property>
		<property name='Version' type='s' access='read'></property>
		<property name='Realms' type='ao' access='read'></property>
		<method name='Discover'>
			<arg name='string' type='s' direction='in'></arg>
			<arg name='options' type='a{sv}' direction='in'></arg>
			<arg name='relevance' type='i' direction='out'></arg>
			<arg name='realm' type='ao' direction='out'></arg>
		</method>
	</interface>
	<interface name='org.freedesktop.realmd.Service'>
		<method name='Cancel'>
			<arg name='operation' type='s' direction='in'></arg>
		</method>
		<method name='SetLocale'>
			<arg name='locale' type='s' direction='in'></arg>
		</method>
		<signal name='Diagnostics'>
			<arg name='data' type='s'></arg>
			<arg name='operation' type='s'></arg>
		</signal>
		<method name='Release'>
		</method>
	</interface>
	<interface name='org.freedesktop.realmd.Realm'>
		<property name='Name' type='s' access='read'></property>
		<property name='Configured' type='s' access='read'></property>
		<method name='Deconfigure'>
			<arg name='options' type='a{sv}' direction='in'></arg>
		</method>
		<property name='SupportedInterfaces' type='as' access='read'></property>
		<property name='Details' type='a(ss)' access='read'></property>
		<property name='RequiredPackages' type='as' access='read'></property>
		<property name='LoginFormats' type='as' access='read'></property>
		<property name='LoginPolicy' type='s' access='read'></property>
		<property name='PermittedLogins' type='as' access='read'></property>
		<property name='PermittedGroups' type='as' access='read'></property>
		<method name='ChangeLoginPolicy'>
			<arg name='login_policy' type='s' direction='in'></arg>
			<arg name='permitted_add' type='as' direction='in'></arg>
			<arg name='permitted_remove' type='as' direction='in'></arg>
			<arg name='options' type='a{sv}' direction='in'></arg>
		</method>
	</interface>
	<interface name='org.freedesktop.realmd.Kerberos'>
		<property name='RealmName' type='s' access='read'></property>
		<property name='DomainName' type='s' access='read'></property>
	</interface>
	<interface name='org.freedesktop.realmd.KerberosMembership'>
		<property name='SuggestedAdministrator' type='s' access='read'></property>
		<property name='SupportedJoinCredentials' type='a(ss)' access='read'></property>
		<property name='SupportedLeaveCredentials' type='a(ss)' access='read'></property>
		<method name='Join'>
			<arg name='credentials' type='(ssv)' direction='in'></arg>
			<arg name='options' type='a{sv}' direction='in'></arg>
		</method>
		<method name='Leave'>
			<arg name='credentials' type='(ssv)' direction='in'></arg>
			<arg name='options' type='a{sv}' direction='in'></arg>
		</method>
	</interface>
</node>
			
realmd-0.17.1/manual/guide-ipa.html0000644003225100322510000000761414315277004017376 0ustar00sbosesbose00000000000000 Using with IPA: realmd

Using with IPA

realmd can discover IPA domains and join the current computer as an account on a domain. This allows using domain users locally, and log into the local machine with IPA domain credentials.

Discovering IPA domains

realmd discovers which domains or realms it can use or configure. It can discover and identify IPA domains by looking up the appropriate DNS SRV records and by connecting to the domain LDAP server.

The following DNS SRV records are required to be present for realmd to identify a provided realm as an Kerberos domain.

# In this example the IPA domain is 'domain.example.com'
_ldap._tcp.domain.example.com.

In addition realmd connects to the LDAP server on the IPA domain server's on port 389 and reads the Root DSE information about the domain.

To see how realmd is discovering a particular domain name, try a command like the following. Using the --verbose argument displays verbose discovery information.

$ realm --verbose discover domain.example.com
 * Resolving: _ldap._tcp.dc._msdcs.domain.example.com
 * Resolving: _ldap._tcp.domain.example.com
 * Performing LDAP DSE lookup on: 192.168.10.22
 * Successfully discovered: domain.example.com
...

In addition a IPA domain server's host name or IP address may be specified.

realmd-0.17.1/manual/guide-active-directory.html0000644003225100322510000001062414315277004022075 0ustar00sbosesbose00000000000000 Using with Active Directory: realmd

Using with Active Directory

realmd can discover Active Directory domains and join the current computer as an account on that domain. This allows using domain users locally, as well as use a domain account to log into the machine.

Discovering Active Directory domains

realmd discovers which domains or realms it can use or configure. It can discover and identify Active Directory domains by looking up the appropriate DNS SRV records.

The following DNS SRV records are required to be present for realmd to identify a provided realm as an Active Directory domain. The DNS server that comes with Active Directory on Windows Server automatically creates these DNS records.

# In this example the Active Directory domain is 'domain.example.com'
_ldap._tcp.dc._msdcs.domain.example.com.

An Active Directory specific UDP LDAP ping is sent to each server during discovery.

To see how realmd is discovering a particular domain name, try a command like the following. Using the --verbose argument displays verbose discovery information.

$ realm discover --verbose domain.example.com
 * Resolving: _ldap._tcp.dc._msdcs.domain.example.com
 * Sending MS-CLDAP ping to: 192.168.20.10
 * Sending MS-CLDAP ping to: 192.168.12.12
 * Successfully discovered: domain.example.com
...

In addition an Active Directory domain controller's host name or IP address may be specified directly.

realmd-0.17.1/manual/right.png0000644003225100322510000000073014315277004016457 0ustar00sbosesbose00000000000000‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ2 I%Á=eIDATxœ­”!oÂ@†Ÿ.'**M0$ÄÁ$¿?1~¢vIeEuLlÉ&–Ô4‚ä Í¶B»Ý›œ¹|÷>ï—ûî …$ݶ©oc<”´ÑA©¤×€X’ò IPA client software: realmd

IPA client software

As part of configuring an IPA domain for use on the local computer, realmd will install and configure client software to enable domain accounts to be used on the local computer.

For a IPA domain this is SSSD.

realmd-0.17.1/manual/gdbus-org.freedesktop.realmd.Provider.html0000644003225100322510000002136214315277004024765 0ustar00sbosesbose00000000000000 org.freedesktop.realmd.Provider: realmd

org.freedesktop.realmd.Provider

org.freedesktop.realmd.Provider — a realm provider

Methods

Discover (IN  s     string,
          IN  a{sv} options,
          OUT i     relevance,
          OUT ao    realm);

Properties

Name     readable   s
Version  readable   s
Realms   readable   ao

Description

Various realm providers represent different software implementations that provide access to realms or domains.

This interface is implemented by individual providers, but is aggregated globally at the system bus name org.freedesktop.realmd with the object path /org/freedesktop/realmd

Method Details

The Discover() method

Discover (IN  s     string,
          IN  a{sv} options,
          OUT i     relevance,
          OUT ao    realm);

Discover realms for the given string. The input string is usually a domain or realm name, perhaps typed by a user. If an empty string is provided, the realm provider should try to discover a default realm, if possible (e.g. from DHCP).

options can contain, but is not limited to, the following values:

  • operation: a string identifier chosen by the client, which can then later be passed to Cancel() in order to cancel the operation

  • client-software: a string containing the client software identifier that the returned realms should match.

  • server-software: a string containing the client software identifier that the returned realms should match.

  • membership-software: a string containing the membership software identifier that the returned realms should match.

The relevance returned can be used to rank results from different discover calls to different providers. Implementors should return a positive number if the provider highly recommends that the realms be handled by this provider, or a zero if it can possibly handle the realms. Negative numbers should be returned if no realms are found.

This method does not return an error when no realms are discovered. It simply returns an empty realm list.

To see diagnostic information about the discovery process, connect to the org.freedesktop.realmd.Service::Diagnostics signal.

This method requires authorization for the PolicyKit action called org.freedesktop.realmd.discover-realm.

In addition to common DBus error results, this method may return:

  • org.freedesktop.realmd.Error.Failed: may be returned if the discovery could not be run for some reason.

  • org.freedesktop.realmd.Error.Cancelled: returned if the operation was cancelled.

  • org.freedesktop.realmd.Error.NotAuthorized: returned if the calling client is not permitted to perform a discovery operation.

IN s string:

an input string to discover realms for

IN a{sv} options:

options for the discovery operation

OUT i relevance:

the relevance of the returned results

OUT ao realm:

a list of realms discovered

Property Details

The "Name" property

Name  readable   s

the name of the provider The name of the provider. This is not normally displayed to the user, but may be useful for diagnostics or debugging.


The "Version" property

Version  readable   s

the version of the provider The version of the provider. This is not normally used in logic, but may be useful for diagnostics or debugging.


The "Realms" property

Realms  readable   ao

a list of realms A list of known, enrolled or discovered realms. All realms that this provider knows about are listed here. As realms are discovered they are added to this list.

Each realm is represented by the DBus object path of the realm object.

realmd-0.17.1/manual/left.png0000644003225100322510000000071314315277004016275 0ustar00sbosesbose00000000000000‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ1&¹³[(XIDATxœµ•!OÃPEïÛ*ˆ‰ŠID%~ꊯ˜ÄÕ"pæ'öŘ`sÜ–¥rKf–´‚¤â h—mi—ÇIžz}÷ܯIû¤–.pÚö\“`xä‹ ˆl‡?l·[²,H¬‡¯×k<Ï#Žcþ%\’AUx[S³7–n6ù¾¯år¹ßèõzE‰‡’s’žŒ1³ºö“²æÅj@œ—NL$ݤiª0 ¿5/ð}¿²\E‡Ž¤KIo¥Í“$a0üjÞdF£bŠkIê„‹æAh>ŸW¶lC'?“tk;|/t*I»ÝN«ÕÊZø^`Œy•4ë÷ûšN§r]×® çJÒÌó<«’½À“Út»Ýú€à`±Xàºî1@p´ä€¸d½÷ŽZ')høÖÚK¬ ª$V?%Å]€­+³L’sgUKà"ÿw5â3O·•ÜòIEND®B`‚realmd-0.17.1/manual/index.html0000644003225100322510000001061314315277004016632 0ustar00sbosesbose00000000000000 realmd: realmd realmd-0.17.1/manual/guide-active-directory-permit.html0000644003225100322510000000543114315277004023373 0ustar00sbosesbose00000000000000 Logins using Domain Accounts: realmd

Logins using Domain Accounts

Once the computer is joined to an Active Directory domain, you can configure the machine so that you can log in with domain accounts.

To permit any domain account to log in, use the following command.

$ realm permit --realm domain.example.com --all

To permit only specific accounts from the domain to log in use the following command. The first time this command is run it will change the mode to only allow logins by specific accounts, and then add the specified accounts to the list of accounts to permit.

$ realm permit --realm domain.example.com DOMAIN\\User1 DOMAIN\\User2

To deny logins from any domain account, use the following command.

$ realm deny --realm domain.example.com --all
realmd-0.17.1/manual/development.html0000644003225100322510000000532214315277004020046 0ustar00sbosesbose00000000000000 Part II. Developer Reference: realmd

Part II. Developer Reference

realmd-0.17.1/manual/gdbus-org.freedesktop.realmd.Realm.html0000644003225100322510000004726214315277004024242 0ustar00sbosesbose00000000000000 org.freedesktop.realmd.Realm: realmd

org.freedesktop.realmd.Realm

org.freedesktop.realmd.Realm — a realm

Methods

Deconfigure       (IN  a{sv} options);
ChangeLoginPolicy (IN  s     login_policy,
                   IN  as    permitted_add,
                   IN  as    permitted_remove,
                   IN  a{sv} options);

Properties

Name                 readable   s
Configured           readable   s
SupportedInterfaces  readable   as
Details              readable   a(ss)
RequiredPackages     readable   as
LoginFormats         readable   as
LoginPolicy          readable   s
PermittedLogins      readable   as
PermittedGroups      readable   as

Description

Represents one realm.

Contains generic information about a realm, and useful properties for introspecting what kind of realm this is and how to work with the realm.

Use "Realms" or #Discover() to get access to some kerberos realm objects.

Realms will always implement additional interfaces, such as org.freedesktop.realmd.Kerberos. Do not assume that all realms implement that kerberos interface. Use the "SupportedInterfaces" property to see which interfaces are supported.

Different realms support various ways to configure them on the system. Use the "Configured" property to determine if a realm is configured. If it is configured, the property will be set to the interface of the mechanism that was used to configure it.

To configure a realm, look in the "SupportedInterfaces" property for a recognized purpose-specific interface that can be used for configuration, such as the org.freedesktop.realmd.KerberosMembership interface and its #Join() method.

To deconfigure a realm from the current system, you can use the #Deconfigure() method. In addition, some of the configuration specific interfaces provide methods to deconfigure a realm in a specific way, such as the #Leave() method.

The various properties are guaranteed to have been updated before the operation methods return, if they change state.

Method Details

The Deconfigure() method

Deconfigure (IN  a{sv} options);

deconfigure this realm Deconfigure this realm from the local machine with standard default behavior.

The behavior of this method depends on the which configuration interface is present in the org.freedesktop.realmd.Realm.Configured property. It does not always delete membership accounts in the realm, but just reconfigures the local machine so it no longer is configured for the given realm. In some cases the implementation may try to update membership accounts, but this is not guaranteed.

Various configuration interfaces may support more specific ways to deconfigure a realm in a specific way, such as the #Leave() method.

options can contain, but is not limited to, the following values:

  • operation: a string identifier chosen by the client, which can then later be passed to Cancel() in order to cancel the operation

This method requires authorization for the PolicyKit action called org.freedesktop.realmd.deconfigure-realm.

In addition to common DBus error results, this method may return:

  • org.freedesktop.realmd.Error.Failed: may be returned if the deconfigure failed for a generic reason.

  • org.freedesktop.realmd.Error.Cancelled: returned if the operation was cancelled.

  • org.freedesktop.realmd.Error.NotAuthorized: returned if the calling client is not permitted to deconfigure a realm.

  • org.freedesktop.realmd.Error.NotConfigured: returned if this realm is not configured on the machine.

  • org.freedesktop.realmd.Error.Busy: returned if the service is currently performing another operation like join or leave.

IN a{sv} options:


The ChangeLoginPolicy() method

ChangeLoginPolicy (IN  s     login_policy,
                   IN  as    permitted_add,
                   IN  as    permitted_remove,
                   IN  a{sv} options);

Change the login policy and/or permitted logins for this realm.

Not all realms support all the various login policies. An error will be returned if the new login policy is not supported. You may specify an empty string for the login_policy argument which will cause no change in the policy itself. If the policy is changed, it will be reflected in the "LoginPolicy" property.

The permitted_add and permitted_remove arguments represent lists of login names that should be added and removed from the org.freedesktop.realmd.Kerberos:PermittedLogins property.

options can contain, but is not limited to, the following values:

  • operation: a string identifier chosen by the client, which can then later be passed to Cancel() in order to cancel the operation

  • groups: boolean which if set to TRUE means that the names in permitted_add and permitted_remove are group names instead of login names.

This method requires authorization for the PolicyKit action called org.freedesktop.realmd.login-policy.

In addition to common DBus error results, this method may return:

  • org.freedesktop.realmd.Error.Failed: may be returned if the policy change failed for a generic reason.

  • org.freedesktop.realmd.Error.Cancelled: returned if the operation was cancelled.

  • org.freedesktop.realmd.Error.NotAuthorized: returned if the calling client is not permitted to change login policy operation.

  • org.freedesktop.realmd.Error.NotConfigured: returned if the realm is not configured.

  • org.freedesktop.realmd.Error.Busy: returned if the service is currently performing another operation like join or leave.

IN s login_policy:

the new login policy, or an empty string

IN as permitted_add:

a list of logins to permit

IN as permitted_remove:

a list of logins to not permit

IN a{sv} options:

options for this operation

Property Details

The "Name" property

Name  readable   s

the realm name This is the name of the realm, appropriate for display to end users where necessary.


The "Configured" property

Configured  readable   s

whether this domain is configured and how If this property is an empty string, then the realm is not configured. Otherwise the realm is configured, and contains a string which is the interface that represents how it was configured, for example org.freedesktop.realmd.KerberosMembership.


The "SupportedInterfaces" property

SupportedInterfaces  readable   as

Additional supported interfaces of this realm. This includes interfaces that contain more information about the realm, such as org.freedesktop.realmd.Kerberos and interfaces which contain methods for configuring a realm, such as org.freedesktop.realmd.KerberosMembership.


The "Details" property

Details  readable   a(ss)

informational details about the realm Informational details about the realm. The following values should be present:

  • server-software: identifier of the software running on the server (e.g. active-directory).

  • client-software: identifier of the software running on the client (e.g. sssd).


The "RequiredPackages" property

RequiredPackages  readable   as

prerequisite software Software packages that are required in order for a join to succeed. These are either simple strings like sssd, or strings with an operator and version number like sssd >= 1.9.0

These values are specific to the packaging system that is being run.


The "LoginFormats" property

LoginFormats  readable   as

supported formats for login names Supported formats for login to this realm. This is only relevant once the realm has been enrolled. The formats will contain a U in the string, which indicate where the user name should be placed. The formats may contain a D in the string which indicate where a domain name should be placed.

The first format in the list is the preferred format for login names.


The "LoginPolicy" property

LoginPolicy  readable   s

the policy for logins using this realm The policy for logging into this computer using this realm.

The policy can be changed using the #ChangeLoginPolicy() method.

The following policies are predefined. Not all providers support all these policies and there may be provider specific policies or multiple policies represented in the string:

  • allow-any-login: allow login by any authenticated user present in this realm.

  • allow-realm-logins: allow logins according to the realm or domain policy for logins on this machine. This usually defaults to allowing any realm user to log in.

  • allow-permitted-logins: only allow the logins permitted in the "PermittedLogins" property.

  • deny-any-login: don't allow any logins via authenticated users of this realm.


The "PermittedLogins" property

PermittedLogins  readable   as

the permitted login names The list of permitted authenticated users allowed to login into this computer. This is only relevant if the "LoginPolicy" property contains the allow-permitted-logins string.


The "PermittedGroups" property

PermittedGroups  readable   as

the permitted group names The list of groups which users need to be in to be allowed to log into this computer. This is only relevant if the "LoginPolicy" property contains the allow-permitted-logins string.

realmd-0.17.1/manual/realmd-docs.proc0000644003225100322510000000000014315277004017701 0ustar00sbosesbose00000000000000realmd-0.17.1/manual/gtk-doc.css0000644003225100322510000002122214315277004016675 0ustar00sbosesbose00000000000000body { font-family: cantarell, sans-serif; } .synopsis, .classsynopsis { /* tango:aluminium 1/2 */ background: #eeeeec; background: rgba(238, 238, 236, 0.5); border: solid 1px rgb(238, 238, 236); padding: 0.5em; } .programlisting { /* tango:sky blue 0/1 */ /* fallback for no rgba support */ background: #e6f3ff; border: solid 1px #729fcf; background: rgba(114, 159, 207, 0.1); border: solid 1px rgba(114, 159, 207, 0.2); padding: 0.5em; } .variablelist { padding: 4px; margin-left: 3em; } .variablelist td:first-child { vertical-align: top; } span.nowrap { white-space: nowrap; } div.gallery-float { float: left; padding: 10px; } div.gallery-float img { border-style: none; } div.gallery-spacer { clear: both; } a, a:visited { text-decoration: none; /* tango:sky blue 2 */ color: #3465a4; } a:hover { text-decoration: underline; /* tango:sky blue 1 */ color: #729fcf; } div.informaltable table { border-collapse: separate; border-spacing: 1em 0.3em; border: none; } div.informaltable table td, div.informaltable table th { vertical-align: top; } .function_type, .variable_type, .property_type, .signal_type, .parameter_name, .struct_member_name, .union_member_name, .define_keyword, .datatype_keyword, .typedef_keyword { text-align: right; } /* dim non-primary columns */ .c_punctuation, .function_type, .variable_type, .property_type, .signal_type, .define_keyword, .datatype_keyword, .typedef_keyword, .property_flags, .signal_flags, .parameter_annotations, .enum_member_annotations, .struct_member_annotations, .union_member_annotations { color: #888a85; } .function_type a, .function_type a:visited, .function_type a:hover, .property_type a, .property_type a:visited, .property_type a:hover, .signal_type a, .signal_type a:visited, .signal_type a:hover, .signal_flags a, .signal_flags a:visited, .signal_flags a:hover { color: #729fcf; } td p { margin: 0.25em; } div.table table { border-collapse: collapse; border-spacing: 0px; /* tango:aluminium 3 */ border: solid 1px #babdb6; } div.table table td, div.table table th { /* tango:aluminium 3 */ border: solid 1px #babdb6; padding: 3px; vertical-align: top; } div.table table th { /* tango:aluminium 2 */ background-color: #d3d7cf; } h4 { color: #555753; margin-top: 1em; margin-bottom: 1em; } hr { /* tango:aluminium 1 */ color: #d3d7cf; background: #d3d7cf; border: none 0px; height: 1px; clear: both; margin: 2.0em 0em 2.0em 0em; } dl.toc dt { padding-bottom: 0.25em; } dl.toc > dt { padding-top: 0.25em; padding-bottom: 0.25em; font-weight: bold; } dl.toc > dl { padding-bottom: 0.5em; } .parameter { font-style: normal; } .footer { padding-top: 3.5em; /* tango:aluminium 3 */ color: #babdb6; text-align: center; font-size: 80%; } .informalfigure, .figure { margin: 1em; } .informalexample, .example { margin-top: 1em; margin-bottom: 1em; } .warning { /* tango:orange 0/1 */ background: #ffeed9; background: rgba(252, 175, 62, 0.1); border-color: #ffb04f; border-color: rgba(252, 175, 62, 0.2); } .note { /* tango:chameleon 0/0.5 */ background: #d8ffb2; background: rgba(138, 226, 52, 0.1); border-color: #abf562; border-color: rgba(138, 226, 52, 0.2); } div.blockquote { border-color: #eeeeec; } .note, .warning, div.blockquote { padding: 0.5em; border-width: 1px; border-style: solid; margin: 2em; } .note p, .warning p { margin: 0; } div.warning h3.title, div.note h3.title { display: none; } p + div.section { margin-top: 1em; } div.refnamediv, div.refsynopsisdiv, div.refsect1, div.refsect2, div.toc, div.section { margin-bottom: 1em; } /* blob links */ h2 .extralinks, h3 .extralinks { float: right; /* tango:aluminium 3 */ color: #babdb6; font-size: 80%; font-weight: normal; } .lineart { color: #d3d7cf; font-weight: normal; } .annotation { /* tango:aluminium 5 */ color: #555753; font-weight: normal; } .structfield { font-style: normal; font-weight: normal; } acronym,abbr { border-bottom: 1px dotted gray; } /* code listings */ .listing_code .programlisting .normal, .listing_code .programlisting .normal a, .listing_code .programlisting .number, .listing_code .programlisting .cbracket, .listing_code .programlisting .symbol { color: #555753; } .listing_code .programlisting .comment, .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */ .listing_code .programlisting .function, .listing_code .programlisting .function a, .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */ .listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */ .listing_code .programlisting .keyword, .listing_code .programlisting .usertype, .listing_code .programlisting .type, .listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */ .listing_frame { /* tango:sky blue 1 */ border: solid 1px #729fcf; border: solid 1px rgba(114, 159, 207, 0.2); padding: 0px; } .listing_lines, .listing_code { margin-top: 0px; margin-bottom: 0px; padding: 0.5em; } .listing_lines { /* tango:sky blue 0.5 */ background: #a6c5e3; background: rgba(114, 159, 207, 0.2); /* tango:aluminium 6 */ color: #2e3436; } .listing_code { /* tango:sky blue 0 */ background: #e6f3ff; background: rgba(114, 159, 207, 0.1); } .listing_code .programlisting { /* override from previous */ border: none 0px; padding: 0px; background: none; } .listing_lines pre, .listing_code pre { margin: 0px; } @media screen { /* these have a as a first child, but since there are no parent selectors * we can't use that. */ a.footnote { position: relative; top: 0em ! important; } /* this is needed so that the local anchors are displayed below the naviagtion */ div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name] { display: inline-block; position: relative; top:-5em; } /* this seems to be a bug in the xsl style sheets when generating indexes */ div.index div.index { top: 0em; } /* make space for the fixed navigation bar and add space at the bottom so that * link targets appear somewhat close to top */ body { padding-top: 2.5em; padding-bottom: 500px; max-width: 60em; } p { max-width: 60em; } /* style and size the navigation bar */ table.navigation#top { position: fixed; background: #e2e2e2; border-bottom: solid 1px #babdb6; border-spacing: 5px; margin-top: 0; margin-bottom: 0; top: 0; left: 0; z-index: 10; } table.navigation#top td { padding-left: 6px; padding-right: 6px; } .navigation a, .navigation a:visited { /* tango:sky blue 3 */ color: #204a87; } .navigation a:hover { /* tango:sky blue 2 */ color: #3465a4; } td.shortcuts { /* tango:sky blue 2 */ color: #3465a4; font-size: 80%; white-space: nowrap; } td.shortcuts .dim { color: #babdb6; } .navigation .title { font-size: 80%; max-width: none; margin: 0px; font-weight: normal; } } @media screen and (min-width: 60em) { /* screen larger than 60em */ body { margin: auto; } } @media screen and (max-width: 60em) { /* screen less than 60em */ #nav_hierarchy { display: none; } #nav_interfaces { display: none; } #nav_prerequisites { display: none; } #nav_derived_interfaces { display: none; } #nav_implementations { display: none; } #nav_child_properties { display: none; } #nav_style_properties { display: none; } #nav_index { display: none; } #nav_glossary { display: none; } .gallery_image { display: none; } .property_flags { display: none; } .signal_flags { display: none; } .parameter_annotations { display: none; } .enum_member_annotations { display: none; } .struct_member_annotations { display: none; } .union_member_annotations { display: none; } /* now that a column is hidden, optimize space */ col.parameters_name { width: auto; } col.parameters_description { width: auto; } col.struct_members_name { width: auto; } col.struct_members_description { width: auto; } col.enum_members_name { width: auto; } col.enum_members_description { width: auto; } col.union_members_name { width: auto; } col.union_members_description { width: auto; } .listing_lines { display: none; } } @media print { table.navigation { visibility: collapse; display: none; } div.titlepage table.navigation { visibility: visible; display: table; background: #e2e2e2; border: solid 1px #babdb6; margin-top: 0; margin-bottom: 0; top: 0; left: 0; height: 3em; } } realmd-0.17.1/manual/style.css0000644003225100322510000000333414315277004016511 0ustar00sbosesbose00000000000000@import url("gtk-doc.css"); TABLE.navigation { background-color: #238b49 !important; border-width: 0 !important; color: white; font-family: Georgia, "Times New Roman", Times, serif; height: 4em !important; } TABLE.navigation TH { font-size: 30pt !important; font-weight: normal; text-align: left !important; padding-left: 10pt; } TABLE.navigation TH:first-child { padding-left: 40pt; } .shortcuts { color: white !important; } .shortcuts a { color: white !important; font-family: Verdana, Arial, 'Bitstream Vera Sans', Helvetica, sans-serif; } P.title { font-size: 30pt !important; } BODY { padding-top: 5.5em !important; margin: 0px; } /* Target all Firefox, since firefox has bug wrt TABLE + position: fixed */ @-moz-document url-prefix() { TABLE.navigation { position: static !important; } BODY { padding-top: 0 !important; } } DIV.book, DIV.refentry, DIV.chapter, DIV.index, DIV.footer, DIV.section, DIV.part { font-family: Verdana, Arial, 'Bitstream Vera Sans', Helvetica, sans-serif; font-size: 9.5pt; line-height: 150%; } BODY > DIV.book, BODY > DIV.footer, BODY > DIV.part { margin-left: 1em; margin-right: 1em; } BODY > DIV.refentry, BODY > DIV.chapter, BODY > DIV.index, BODY > DIV.section { margin-left: 3em; margin-right: 1em; } DIV.variablelist TABLE { font-size: 9.5pt; line-height: 150%; } DIV.refsect1, DIV.refsect2, DIV.refsynopsisdiv { margin-bottom: 3em !important; } H2 { position: relative; left: -1em; font-weight: normal !important; } H3 { position: relative; left: -1em; font-weight: normal !important; } DD > DL { margin-top: 0.3em; margin-bottom: 0.3em; } PRE.screen { border: solid 1px #729fcf; padding: 0.5em; background: #e6f3ff; } CODE.option { white-space: nowrap; } realmd-0.17.1/manual/guide-active-directory-join.html0000644003225100322510000001174114315277004023033 0ustar00sbosesbose00000000000000 Joining an Active Directory domain: realmd

Joining an Active Directory domain

To join an Active Directory domain with realmd you can use the realm command line tool:

$ realm join --verbose domain.example.com

By specifying the --verbose it's easier to see what went wrong if the join fails.

Other tools also use realmd which can be used to perform the join operation, for example: GNOME Control Center.

The join operation does the following:

  • Discovers information about the domain.

  • Installs the necessary software to join the domain, such as SSSD or Winbind.

  • If administrative credentials are required, a password will be prompted for.

  • A computer account in the domain will be created, and or updated.

  • A host keytab file at /etc/krb5.keytab is created.

  • Configures the SSSD or Winbind services, and restarts and enables them as appropriate.

  • Enables domain users in /etc/nsswitch.conf

In addition an Active Directory domain controller's host name or IP address may be specified to join via that domain controller directly.

After the join operation is complete, domain accounts should be usable locally, although logins using domain accounts are not necessarily enabled.

You verify that domain accounts are working with with a command like this:

$ getent passwd DOMAIN\Administrator

The join operation will create or update a computer account in the domain. If you wish to specify a specific organizational unit where this account is created, you can use the computer-ou setting. Additonally, you can override the default name for the computer account with the computer-name setting.

Specify the --user to choose a different user name than the default Administrator user.

You can use kerberos credentials to perform the join. Use the kinit command to acquire credentials prior to starting the join. Do not specify the --user argument, the user will be selected automatically from the credential cache. The realm respects the KRB5_CCACHE environment variable, but uses the default kerberos credential cache if it's not present.

realmd-0.17.1/manual/guide.html0000644003225100322510000000727414315277004016631 0ustar00sbosesbose00000000000000 Part I. Administrative Guide: realmd realmd-0.17.1/manual/gdbus-org.freedesktop.realmd.Kerberos.html0000644003225100322510000000742414315277004024752 0ustar00sbosesbose00000000000000 org.freedesktop.realmd.Kerberos: realmd

org.freedesktop.realmd.Kerberos

org.freedesktop.realmd.Kerberos — a kerberos realm

Properties

RealmName   readable   s
DomainName  readable   s

Description

An interface that describes a kerberos realm in more detail. This is always implemented on an DBus object path that also implements the org.freedesktop.realmd.Realm interface.

Property Details

The "RealmName" property

RealmName  readable   s

the kerberos realm name The kerberos name for this realm. This is usually in upper case.


The "DomainName" property

DomainName  readable   s

the DNS domain name The DNS domain name for this realm.

realmd-0.17.1/manual/realm-manual.html0000644003225100322510000000350614315277004020101 0ustar00sbosesbose00000000000000 Command manual pages: realmd

Command manual pages

realm — Manage enrollment in realms
realmd.conf — Tweak behavior of realmd
realmd-0.17.1/manual/dbus-interface-reference.html0000644003225100322510000000510514315277004022352 0ustar00sbosesbose00000000000000 DBus Interface Reference: realmd

DBus Interface Reference

realmd-0.17.1/manual/guide-integration.html0000644003225100322510000000307014315277004021140 0ustar00sbosesbose00000000000000 Integration: realmd

Integration

Not yet written

realmd-0.17.1/manual/home.png0000644003225100322510000000121614315277004016272 0ustar00sbosesbose00000000000000‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ1õÚKvIDATxœÕ•±kqÅ?ßrC‡ßàpà ~C„np¼¡CAAJ .B-\'G‡]:Ü “‚ƒCÇ -(ˆ8´à Ô€!…fD°€…çÒ“klbRÛÁoyüxïûîËïwpðIJº<°of_®-@ÒððçRH•´ÏfÖŸtèÂü¤^¯×ÓÚÚš’$Q«ÕÒ|“ôpâ’¶€gív;X^^&Ïs¢(bww—Z­F£ÑÀ9Çææ&Þû3à¶™ Æ’^IRµZUE.0Z]]Uš¦ ÃPY–Mü8óHÒGIÚÙÙÑìììæeŸkqqñÒ€™!ó  $ÛÛÛ¬¯¯3Œn eýþ{-/seeeìÔÃŒãXóóóåO‡Í·$ý8==UÇS™—é½×ÑÑQòRR€¤'ã–9-sÚÛÛ+B^ éC·Û•sîŸÍËÂ+%À°<7³ŸWô˜¿ õâ:™2IEND®B`‚realmd-0.17.1/manual/guide-active-directory-client.html0000644003225100322510000001051614315277004023351 0ustar00sbosesbose00000000000000 Active Directory client software: realmd

Active Directory client software

As part of configuring an Active Directory domain for use on the local computer, realmd will configure client software to enable domain accounts to be used on the local computer.

realmd supports two types of client software for Active Directory: SSSD and Winbind. By default SSSD is used.

Using SSSD with Active Directory

SSSD provides client software for various kerberos and/or LDAP directories. Since version 1.9.x it provides good support for Active Directory.

When joining a computer to an Active Directory domain, realmd will use SSSD as the client software by default. You can force use of SSSD by specifying the --client-software=sssd when joining the domain with the realm command like this:

$ realm join --client-software=sssd domain.example.com

Using Winbind with Active Directory

Samba Winbind provides client software for use with Active Directory.

To have realmd use Winbind as the client software, configure the default-client setting. You can force use of Winbind by specifying the --client-software=winbind when joining the domain with the realm command like this:

$ realm join --client-software=winbind domain.example.com
realmd-0.17.1/manual/guide-ipa-join.html0000644003225100322510000000713514315277004020331 0ustar00sbosesbose00000000000000 Joining a IPA domain: realmd

Joining a IPA domain

To join a IPA domain with realmd you can use the realm command line tool:

$ realm join --verbose ipa.example.com

By specifying the --verbose it's easier to see what went wrong if the join fails.

Other tools also use realmd which can be used to perform the join operation, for example: GNOME Control Center.

The join operation does the following:

  • Discovers information about the domain.

  • Installs the necessary software to join the domain, such as SSSD.

  • Prompts for administrative credentials.

  • A computer account in the domain will be created, and or updated.

  • A host keytab file at /etc/krb5.keytab is created.

  • Configures the SSSD service, and restarts and enables it as appropriate.

  • Enables domain users in /etc/nsswitch.conf

In addition an IPA domain server's host name or IP address may be specified to join via that domain controller directly.

After the join operation is complete, domain accounts should be usable locally, although logins using domain accounts are not necessarily enabled.

You verify that domain accounts are working with with a command like this:

$ getent passwd admin@ipa.example.com

The join operation will create or update a computer account in the domain.

realmd-0.17.1/README0000644003225100322510000000056614315276767014265 0ustar00sbosesbose00000000000000DBus service for configuring kerberos and other online identities. How Active Directory domains are discovered ============================================ AD servers are located using the standard DNS kerberos SRV records and the Microsoft standard subzone for the domain. For example: * A SRV record: _kerberos._udp.example.com * An MSDCS subzone: _msdcs.example.com realmd-0.17.1/tools/0000755003225100322510000000000014315277002014515 5ustar00sbosesbose00000000000000realmd-0.17.1/tools/realm.h0000644003225100322510000000613714046520517016000 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #ifndef __REALM_H__ #define __REALM_H__ #include #include #include "realm-dbus-generated.h" #include "realm-client.h" G_BEGIN_DECLS extern gchar * realm_operation_id; extern GOptionEntry realm_global_options[]; extern gboolean realm_verbose; extern gboolean realm_cancelled; extern gboolean realm_unattended; int realm_join (RealmClient *client, int argc, char *argv[]); int realm_leave (RealmClient *client, int argc, char *argv[]); int realm_discover (RealmClient *client, int argc, char *argv[]); int realm_list (RealmClient *client, int argc, char *argv[]); int realm_permit (RealmClient *client, int argc, char *argv[]); int realm_deny (RealmClient *client, int argc, char *argv[]); GVariant * realm_build_options (const gchar *first, ...) G_GNUC_NULL_TERMINATED; void realm_print_error (const gchar *format, ...) G_GNUC_PRINTF (1, 2); void realm_handle_error (GError *error, const gchar *format, ...) G_GNUC_PRINTF (2, 3); gboolean realm_parse_boolean (const gchar *option, const gchar *value, gboolean defalt, gboolean *result, GError **error); GVariant * realm_kinit_to_kerberos_cache (const gchar *name, const gchar *realm, const gchar *password, GError **error); gboolean realm_is_configured (RealmDbusRealm *realm); G_END_DECLS #endif /* __REALM_H__ */ realmd-0.17.1/tools/realm-logins.c0000644003225100322510000001672214046520517017265 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm.h" #include "realm-dbus-constants.h" #include "realm-dbus-generated.h" #include #include #include typedef struct { GAsyncResult *result; GMainLoop *loop; } SyncClosure; static void on_complete_get_result (GObject *source, GAsyncResult *result, gpointer user_data) { SyncClosure *sync = user_data; sync->result = g_object_ref (result); g_main_loop_quit (sync->loop); } static RealmDbusRealm * locate_configured_matching_realm (RealmClient *client, const gchar *realm_name) { RealmDbusProvider *provider; const gchar *const *paths; RealmDbusRealm *realm = NULL; gboolean matched; gint i; provider = realm_client_get_provider (client); paths = realm_dbus_provider_get_realms (provider); for (i = 0; paths && paths[i]; i++) { matched = FALSE; realm = realm_client_get_realm (client, paths[i]); if (realm != NULL) { matched = (realm_name == NULL || g_strcmp0 (realm_dbus_realm_get_name (realm), realm_name) == 0) && realm_is_configured (realm); } if (matched) break; g_object_unref (realm); realm = NULL; } if (realm == NULL) { if (!realm_name) realm_handle_error (NULL, "Couldn't find a configured realm"); else realm_handle_error (NULL, "Couldn't find a matching realm"); return NULL; } return realm; } static int perform_permit_specific (RealmClient *client, const gchar *realm_name, const gchar **logins, gint n_logins, gboolean withdraw, gboolean names_are_groups) { RealmDbusRealm *realm; SyncClosure sync; gchar **add_or_remove; GError *error = NULL; const gchar *empty[] = { NULL }; GVariant *options; realm = locate_configured_matching_realm (client, realm_name); if (realm == NULL) return 1; /* Make it null terminated */ add_or_remove = g_new0 (gchar *, n_logins + 1); memcpy (add_or_remove, logins, sizeof (gchar *) * n_logins); sync.result = NULL; sync.loop = g_main_loop_new (NULL, FALSE); options = realm_build_options ("groups", names_are_groups, NULL); g_variant_ref_sink (options); realm_dbus_realm_call_change_login_policy (realm, REALM_DBUS_LOGIN_POLICY_PERMITTED, withdraw ? empty : (const gchar * const*)add_or_remove, withdraw ? (const gchar * const*)add_or_remove : empty, options, NULL, on_complete_get_result, &sync); g_variant_unref (options); /* This mainloop is quit by on_complete_get_result */ g_main_loop_run (sync.loop); realm_dbus_realm_call_change_login_policy_finish (realm, sync.result, &error); g_object_unref (sync.result); g_main_loop_unref (sync.loop); g_object_unref (realm); if (error != NULL) { realm_handle_error (error, _("Couldn't change permitted logins")); return 1; } return 0; } static int perform_logins_all (RealmClient *client, const gchar *realm_name, gboolean permit) { RealmDbusRealm *realm; SyncClosure sync; const gchar *policy; const gchar *logins[] = { NULL }; GError *error = NULL; GVariant *options; realm = locate_configured_matching_realm (client, realm_name); if (realm == NULL) return 1; sync.result = NULL; sync.loop = g_main_loop_new (NULL, FALSE); options = realm_build_options (NULL, NULL); g_variant_ref_sink (options); policy = permit ? REALM_DBUS_LOGIN_POLICY_REALM : REALM_DBUS_LOGIN_POLICY_DENY; realm_dbus_realm_call_change_login_policy (realm, policy, (const gchar * const *)logins, (const gchar * const *)logins, options, NULL, on_complete_get_result, &sync); /* This mainloop is quit by on_complete_get_result */ g_main_loop_run (sync.loop); realm_dbus_realm_call_change_login_policy_finish (realm, sync.result, &error); g_variant_unref (options); g_object_unref (sync.result); g_main_loop_unref (sync.loop); g_object_unref (realm); if (error != NULL) { realm_handle_error (error, _("Couldn't change permitted logins")); return 1; } return 0; } static int realm_permit_or_deny (RealmClient *client, gboolean permit, int argc, char *argv[]) { GOptionContext *context; gboolean arg_all = FALSE; gboolean arg_groups = FALSE; gboolean arg_withdraw = FALSE; gchar *realm_name = NULL; GError *error = NULL; gint ret = 2; /* This implements the deprecated commands */ GOptionEntry option_entries[] = { { "all", 'a', 0, G_OPTION_ARG_NONE, &arg_all, permit ? N_("Permit any realm account login") : N_("Deny any realm account login"), NULL }, { "withdraw", 'x', 0, G_OPTION_ARG_NONE, &arg_withdraw, N_("Withdraw permit for a realm account to login"), NULL }, { "groups", 'g', 0, G_OPTION_ARG_NONE, &arg_groups, N_("Treat names as groups which to permit"), NULL }, { "realm", 'R', 0, G_OPTION_ARG_STRING, &realm_name, N_("Realm to permit/deny logins for"), NULL }, { NULL, } }; context = g_option_context_new ("realm"); g_option_context_set_translation_domain (context, GETTEXT_PACKAGE); g_option_context_add_main_entries (context, option_entries, NULL); g_option_context_add_main_entries (context, realm_global_options, NULL); if (!g_option_context_parse (context, &argc, &argv, &error)) { realm_print_error ("%s", error->message); g_error_free (error); } else if (arg_all && argc != 1) { realm_print_error (_("No logins should be specified with -a or --all")); } else if (!permit && arg_withdraw) { realm_print_error (_("The --withdraw or -x arguments cannot be used when denying logins")); } else if (arg_all && arg_withdraw) { realm_print_error (_("Specific logins must be specified with --withdraw")); } else if (arg_all && arg_groups) { realm_print_error (_("Groups may not be specified with -a or --all")); } else if (arg_all) { ret = perform_logins_all (client, realm_name, permit); } else if (argc < 2) { if (!permit) realm_print_error (_("Use --all to deny all logins")); else realm_print_error (_("Specify specific users to add or remove from the permitted list")); } else { if (!permit) { realm_print_error (_("Specifying deny without --all is deprecated. Use realm permit --withdraw")); arg_withdraw = TRUE; } ret = perform_permit_specific (client, realm_name, (const gchar **)(argv + 1), argc - 1, arg_withdraw, arg_groups); } g_free (realm_name); g_option_context_free (context); return ret; } int realm_permit (RealmClient *client, int argc, char *argv[]) { return realm_permit_or_deny (client, TRUE, argc, argv); } int realm_deny (RealmClient *client, int argc, char *argv[]) { return realm_permit_or_deny (client, FALSE, argc, argv); } realmd-0.17.1/tools/realm-client.h0000644003225100322510000001130114046520517017241 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #ifndef __REALM_CLIENT_H__ #define __REALM_CLIENT_H__ #include #include "realm-dbus-generated.h" G_BEGIN_DECLS #define REALM_TYPE_CLIENT (realm_client_get_type ()) #define REALM_CLIENT(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), REALM_TYPE_CLIENT, RealmClient)) #define REALM_IS_CLIENT(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), REALM_TYPE_CLIENT)) #define REALM_CLIENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), REALM_TYPE_CLIENT, RealmClientClass)) #define REALM_IS_CLIENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), REALM_TYPE_CLIENT)) #define REALM_CLIENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), REALM_TYPE_CLIENT, RealmClientClass)) typedef struct _RealmClient RealmClient; typedef struct _RealmClientClass RealmClientClass; GType realm_client_get_type (void) G_GNUC_CONST; RealmClient * realm_client_new (gboolean verbose, const gchar *prefix); RealmDbusProvider * realm_client_get_provider (RealmClient *self); GList * realm_client_discover (RealmClient *self, const gchar *string, gboolean use_ldaps, const gchar *client_software, const gchar *server_software, const gchar *membership_software, const gchar *dbus_interface, gboolean *had_mismatched, GError **error); RealmDbusRealm * realm_client_get_realm (RealmClient *self, const gchar *object_path); RealmDbusRealm * realm_client_to_realm (RealmClient *self, gpointer proxy); RealmDbusKerberosMembership * realm_client_get_kerberos_membership (RealmClient *self, const gchar *object_path); RealmDbusKerberosMembership * realm_client_to_kerberos_membership (RealmClient *self, gpointer proxy); RealmDbusKerberos * realm_client_get_kerberos (RealmClient *self, const gchar *object_path); RealmDbusKerberos * realm_client_to_kerberos (RealmClient *self, gpointer proxy); GVariant * realm_client_build_principal_creds (RealmClient *self, RealmDbusKerberosMembership *membership, GVariant *supported, const gchar *user_name, GError **error); GVariant * realm_client_build_otp_creds (RealmClient *self, GVariant *supported, const gchar *one_time_password, GError **error); GVariant * realm_client_build_automatic_creds (RealmClient *self, RealmDbusKerberos *realm, GVariant *supported, GError **error); G_END_DECLS #endif /* __REALM_H__ */ realmd-0.17.1/tools/realm.c0000644003225100322510000001715414046520517015774 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm.h" #include "realm-dbus-constants.h" #include #include #include #include #include static gchar *arg_install = NULL; gboolean realm_verbose = FALSE; gboolean realm_cancelled = FALSE; gboolean realm_unattended = FALSE; gchar *realm_operation_id = NULL; struct { const char *name; int (* function) (RealmClient *client, int argc, char *argv[]); const char *usage; const char *description; } realm_commands[] = { { "discover", realm_discover, "realm discover -v [realm-name]", N_("Discover available realm") }, { "join", realm_join, "realm join -v [-U user] realm-name", N_("Enroll this machine in a realm") }, { "leave", realm_leave, "realm leave -v [-U user] [realm-name]", N_("Unenroll this machine from a realm") }, { "list", realm_list, "realm list", N_("List known realms") }, { "permit", realm_permit, "realm permit [-ax] [-R realm] user ...", N_("Permit user logins") }, { "deny", realm_deny, "realm deny --all [-R realm]", N_("Deny user logins") }, }; void realm_print_error (const gchar *format, ...) { GString *message; va_list va; message = g_string_new (""); g_string_append_printf (message, "%s: ", g_get_prgname ()); va_start (va, format); g_string_append_vprintf (message, format, va); va_end (va); g_printerr ("%s\n", message->str); g_string_free (message, TRUE); } void realm_handle_error (GError *error, const gchar *format, ...) { static gboolean diag_hint = TRUE; GString *message; gchar *remote; va_list va; if (realm_cancelled && g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) { g_error_free (error); return; } #ifdef WITH_JOURNAL remote = error ? g_dbus_error_get_remote_error (error) : NULL; if (error && diag_hint && realm_operation_id && !realm_verbose && g_strcmp0 (remote, REALM_DBUS_ERROR_NOT_AUTHORIZED) != 0) { g_printerr ("See: journalctl REALMD_OPERATION=%s\n", realm_operation_id); diag_hint = FALSE; } g_free (remote); #endif message = g_string_new (""); g_string_append_printf (message, "%s: ", g_get_prgname ()); if (format) { va_start (va, format); g_string_append_vprintf (message, format, va); va_end (va); } if (error) { g_dbus_error_strip_remote_error (error); if (format) g_string_append (message, ": "); g_string_append (message, error->message); g_error_free (error); } g_printerr ("%s\n", message->str); g_string_free (message, TRUE); } GVariant * realm_build_options (const gchar *first, ...) { const gchar *value; gboolean bvalue; GPtrArray *opts; GVariant *options; GVariant *option; va_list va; va_start (va, first); opts = g_ptr_array_new (); while (first != NULL) { option = NULL; if (g_str_equal (first, "groups") || g_str_equal (first, REALM_DBUS_OPTION_AUTOMATIC_ID_MAPPING)) { bvalue = va_arg (va, gboolean); option = g_variant_new ("{sv}", first, g_variant_new_boolean (bvalue)); } else { value = va_arg (va, const gchar *); if (value != NULL) option = g_variant_new ("{sv}", first, g_variant_new_string (value)); } if (option) g_ptr_array_add (opts, option); first = va_arg (va, const gchar *); } va_end (va); if (!realm_operation_id) { realm_operation_id = g_strdup_printf ("r%lld.%d", (long long int)g_get_monotonic_time () / G_TIME_SPAN_SECOND, (gint)getpid ()); } option = g_variant_new ("{sv}", "operation", g_variant_new_string (realm_operation_id)); g_ptr_array_add (opts, option); options = g_variant_new_array (G_VARIANT_TYPE ("{sv}"), (GVariant * const*)opts->pdata, opts->len); g_ptr_array_free (opts, TRUE); return options; } gboolean realm_parse_boolean (const gchar *option, const gchar *value, gboolean defalt, gboolean *result, GError **error) { if (!value || g_str_equal (value, "")) { *result = defalt; return TRUE; } else if (g_ascii_strcasecmp (value, "yes") == 0 || g_ascii_strcasecmp (value, "true") == 0) { *result = TRUE; return TRUE; } else if (g_ascii_strcasecmp (value, "no") == 0 || g_ascii_strcasecmp (value, "false") == 0) { *result = FALSE; return TRUE; } else { g_set_error (error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, _("Invalid value for %s option: %s"), option, value); return FALSE; } } gboolean realm_is_configured (RealmDbusRealm *realm) { const gchar *configured; g_return_val_if_fail (REALM_DBUS_IS_REALM (realm), FALSE); configured = realm_dbus_realm_get_configured (realm); return (configured && !g_str_equal (configured, "")); } static int usage (int code) { gint i; for (i = 0; i < G_N_ELEMENTS (realm_commands); i++) { if (i > 0) g_printerr ("\n"); g_printerr (" %s\n", realm_commands[i].usage); g_printerr (" %s\n", realm_commands[i].description); } return code; } GOptionEntry realm_global_options[] = { { "install", 'i', 0, G_OPTION_ARG_STRING, &arg_install, N_("Install mode to a specific prefix"), NULL }, { "verbose", 'v', 0, G_OPTION_ARG_NONE, &realm_verbose, N_("Verbose output"), NULL }, { "unattended", 0, 0, G_OPTION_ARG_NONE, &realm_unattended, N_("Do not prompt for input"), NULL }, { NULL, } }; int main (int argc, char *argv[]) { const gchar *command = NULL; GOptionContext *context; RealmClient *client; GError *error = NULL; gint ret; gint i; setlocale (LC_ALL, ""); #ifdef ENABLE_NLS bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); #endif #if !GLIB_CHECK_VERSION(2, 36, 0) g_type_init (); #endif /* Parse the global options, don't display help or failure here */ context = g_option_context_new ("realm"); g_option_context_set_translation_domain (context, GETTEXT_PACKAGE); g_option_context_add_main_entries (context, realm_global_options, NULL); g_option_context_set_help_enabled (context, FALSE); g_option_context_set_ignore_unknown_options (context, TRUE); if (!g_option_context_parse (context, &argc, &argv, &error)) { g_warning ("Unexpected error: %s", error->message); g_error_free (error); } g_option_context_free (context); /* Find/remove the first non-flag argument: the command */ for (i = 1; i < argc; i++) { if (command == NULL) { if (argv[i][0] != '-') { command = argv[i]; argc--; } } if (command != NULL) argv[i] = argv[i + 1]; } if (command == NULL) return usage (2); if (arg_install != NULL && arg_install[0] != '/') { g_printerr ("Install prefix [%s] must be an absolute path.\n", arg_install); return 2; } ret = 2; for (i = 0; i < G_N_ELEMENTS (realm_commands); i++) { if (g_str_equal (realm_commands[i].name, command)) { client = realm_client_new (realm_verbose, arg_install); if (!client) { ret = 1; break; } ret = (realm_commands[i].function) (client, argc, argv); g_object_unref (client); #ifdef VENDOR_MSG if (ret != 0) { g_printerr (VENDOR_MSG"\n"); } #endif break; } } if (ret == 2 && i == G_N_ELEMENTS (realm_commands)) usage(2); g_free (realm_operation_id); g_free (arg_install); return ret; } realmd-0.17.1/tools/realm-join.c0000644003225100322510000002622314311053251016715 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm.h" #include "realm-client.h" #include "realm-dbus-constants.h" #include "realm-dbus-generated.h" #include #include #include #include #include typedef struct { GAsyncResult *result; GMainLoop *loop; } SyncClosure; static void on_complete_get_result (GObject *source, GAsyncResult *result, gpointer user_data) { SyncClosure *sync = user_data; sync->result = g_object_ref (result); g_main_loop_quit (sync->loop); } static int call_join (RealmDbusKerberosMembership *membership, GVariant *credentials, GVariant *options, GError **error) { SyncClosure sync; gboolean ret; sync.result = NULL; sync.loop = g_main_loop_new (NULL, FALSE); /* Start actual operation */ realm_dbus_kerberos_membership_call_join (membership, credentials, options, NULL, on_complete_get_result, &sync); /* This mainloop is quit by on_complete_get_result */ g_main_loop_run (sync.loop); ret = realm_dbus_kerberos_membership_call_join_finish (membership, sync.result, error); g_object_unref (sync.result); g_main_loop_unref (sync.loop); return ret ? 0 : 1; } static int perform_otp_join (RealmClient *client, RealmDbusKerberosMembership *membership, const gchar *one_time_password, GVariant *options) { GVariant *supported; GVariant *credentials; GError *error = NULL; int ret; supported = realm_dbus_kerberos_membership_get_supported_join_credentials (membership); credentials = realm_client_build_otp_creds (client, supported, one_time_password, &error); if (credentials == NULL) { realm_handle_error (error, NULL); return 1; } ret = call_join (membership, credentials, options, &error); if (error != NULL) realm_handle_error (error, _("Couldn't join realm")); return ret; } static int perform_automatic_join (RealmClient *client, RealmDbusKerberosMembership *membership, GVariant *options, gboolean *try_other) { RealmDbusKerberos *kerberos; GVariant *supported; GVariant *credentials; GError *error = NULL; gchar *remote; int ret; supported = realm_dbus_kerberos_membership_get_supported_join_credentials (membership); kerberos = realm_client_to_kerberos (client, membership); credentials = realm_client_build_automatic_creds (client, kerberos, supported, &error); if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED)) { *try_other = TRUE; return 1; } else if (credentials == NULL) { realm_handle_error (error, NULL); return 1; } ret = call_join (membership, credentials, options, &error); if (error != NULL) { remote = g_dbus_error_get_remote_error (error); if (g_strcmp0 (remote, REALM_DBUS_ERROR_AUTH_FAILED) == 0 || g_error_matches (error, G_DBUS_ERROR, G_DBUS_ERROR_NOT_SUPPORTED)) { *try_other = TRUE; g_error_free (error); } else { *try_other = FALSE; realm_handle_error (error, _("Couldn't join realm")); } g_free (remote); } return ret; } static int perform_user_join (RealmClient *client, RealmDbusKerberosMembership *membership, const gchar *user_name, GVariant *options) { GVariant *supported; GVariant *credentials; GError *error = NULL; int ret; supported = realm_dbus_kerberos_membership_get_supported_join_credentials (membership); credentials = realm_client_build_principal_creds (client, membership, supported, user_name, &error); if (credentials == NULL) { realm_handle_error (error, NULL); return 1; } ret = call_join (membership, credentials, options, &error); if (error != NULL) realm_handle_error (error, _("Couldn't join realm")); return ret; } typedef struct { gchar *user; gchar *computer_ou; gchar *computer_name; gchar *os_name; gchar *os_version; gchar *client_software; gchar *server_software; gchar *membership_software; gboolean no_password; gchar *one_time_password; gchar *user_principal; gboolean automatic_id_mapping_set; gboolean automatic_id_mapping; gboolean use_ldaps; gboolean do_not_touch_config; } RealmJoinArgs; static void realm_join_args_clear (gpointer data) { RealmJoinArgs *args = data; g_free (args->user); g_free (args->computer_ou); g_free (args->computer_name); g_free (args->client_software); g_free (args->server_software); g_free (args->user_principal); } static gboolean realm_join_arg_id_mapping (const gchar *option_name, const gchar *value, gpointer data, GError **error) { RealmJoinArgs *args = data; args->automatic_id_mapping_set = TRUE; return realm_parse_boolean (option_name, value, TRUE, &args->automatic_id_mapping, error); } static int perform_join (RealmClient *client, const gchar *string, RealmJoinArgs *args) { RealmDbusKerberosMembership *membership; gboolean had_mismatched = FALSE; gboolean try_other = FALSE; RealmDbusRealm *realm; GError *error = NULL; GVariant *options; GList *realms; gint ret; realms = realm_client_discover (client, string, args->use_ldaps, args->client_software, args->server_software, args->membership_software, REALM_DBUS_KERBEROS_MEMBERSHIP_INTERFACE, &had_mismatched, &error); if (error != NULL) { realm_handle_error(error, NULL); return 1; } else if (realms == NULL) { if (had_mismatched) realm_handle_error (NULL, _("Cannot join this realm")); else realm_handle_error(NULL, _("No such realm found")); return 1; } membership = realms->data; realm = realm_client_to_realm (client, membership); if (!args->do_not_touch_config && realm_is_configured (realm)) { realm_handle_error (NULL, _("Already joined to this domain")); return 1; } options = realm_build_options (REALM_DBUS_OPTION_COMPUTER_OU, args->computer_ou, REALM_DBUS_OPTION_COMPUTER_NAME, args->computer_name, REALM_DBUS_OPTION_OS_NAME, args->os_name, REALM_DBUS_OPTION_OS_VERSION, args->os_version, REALM_DBUS_OPTION_MEMBERSHIP_SOFTWARE, args->membership_software, REALM_DBUS_OPTION_USER_PRINCIPAL, args->user_principal, REALM_DBUS_OPTION_USE_LDAPS, args->use_ldaps ? "True" : "False", REALM_DBUS_OPTION_DO_NOT_TOUCH_CONFIG, args->do_not_touch_config ? "True" : "False", args->automatic_id_mapping_set ? REALM_DBUS_OPTION_AUTOMATIC_ID_MAPPING : NULL, args->automatic_id_mapping, NULL); g_variant_ref_sink (options); if (args->no_password) { ret = perform_automatic_join (client, membership, options, &try_other); } else if (args->one_time_password) { ret = perform_otp_join (client, membership, args->one_time_password, options); } else if (args->user) { ret = perform_user_join (client, membership, args->user, options); } else { ret = perform_automatic_join (client, membership, options, &try_other); if (try_other) ret = perform_user_join (client, membership, args->user, options); } g_variant_unref (options); g_list_free_full (realms, g_object_unref); return ret; } int realm_join (RealmClient *client, int argc, char *argv[]) { GOptionContext *context; GError *error = NULL; const gchar *realm_name; RealmJoinArgs args; GOptionGroup *group; gint ret = 0; GOptionEntry option_entries[] = { { "automatic-id-mapping", 0, G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, realm_join_arg_id_mapping, N_("Turn off automatic id mapping"), "no" }, { "client-software", 0, 0, G_OPTION_ARG_STRING, &args.client_software, N_("Use specific client software"), NULL }, { "computer-name", 0, 0, G_OPTION_ARG_STRING, &args.computer_name, N_("Use specific computer name instead of hostname"), NULL }, { "computer-ou", 0, 0, G_OPTION_ARG_STRING, &args.computer_ou, N_("Computer OU DN to join"), NULL }, { "membership-software", 0, 0, G_OPTION_ARG_STRING, &args.membership_software, N_("Use specific membership software"), NULL }, { "no-password", 0, 0, G_OPTION_ARG_NONE, &args.no_password, N_("Join automatically without a password"), NULL }, { "one-time-password", 0, 0, G_OPTION_ARG_STRING, &args.one_time_password, N_("Join using a preset one time password"), NULL }, { "os-name", 0, 0, G_OPTION_ARG_STRING, &args.os_name, N_("Use specific operation system name"), NULL }, { "os-version", 0, 0, G_OPTION_ARG_STRING, &args.os_version, N_("Use specific operation system version"), NULL }, { "server-software", 0, 0, G_OPTION_ARG_STRING, &args.server_software, N_("Use specific server software"), NULL }, { "user", 'U', 0, G_OPTION_ARG_STRING, &args.user, N_("User name to use for enrollment"), NULL }, { "user-principal", 0, 0, G_OPTION_ARG_STRING, &args.user_principal, N_("Set the user principal for the computer account"), NULL }, { "use-ldaps", 0, 0, G_OPTION_ARG_NONE, &args.use_ldaps, N_("Use ldaps to connect to LDAP"), NULL }, { "do-not-touch-config", 0, 0, G_OPTION_ARG_NONE, &args.do_not_touch_config, N_("Do not change client configuration"), NULL }, { NULL, } }; memset (&args, 0, sizeof (args)); context = g_option_context_new ("join REALM"); g_option_context_set_translation_domain (context, GETTEXT_PACKAGE); group = g_option_group_new (NULL, NULL, NULL, &args, realm_join_args_clear); g_option_group_add_entries (group, option_entries); g_option_group_add_entries (group, realm_global_options); g_option_context_set_main_group (context, group); if (!g_option_context_parse (context, &argc, &argv, &error)) { g_printerr ("%s: %s\n", g_get_prgname (), error->message); g_error_free (error); ret = 2; } else if (argc > 2) { g_printerr ("%s: %s\n", g_get_prgname (), _("Specify one realm to join")); ret = 2; } else if (args.no_password && (args.one_time_password || args.user)) { g_printerr ("%s: %s\n", g_get_prgname (), _("The --no-password argument cannot be used with --one-time-password or --user")); ret = 2; } else if (args.one_time_password && args.user) { g_printerr ("%s: %s\n", g_get_prgname (), _("The --one-time-password argument cannot be used with --user")); ret = 2; } else { realm_name = argc < 2 ? "" : argv[1]; ret = perform_join (client, realm_name, &args); } g_option_context_free (context); return ret; } realmd-0.17.1/tools/realm-leave.c0000644003225100322510000002017414046520517017062 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm.h" #include "realm-dbus-constants.h" #include "realm-dbus-generated.h" #include #include #include #include #include typedef struct { GAsyncResult *result; GMainLoop *loop; } SyncClosure; static void on_complete_get_result (GObject *source, GAsyncResult *result, gpointer user_data) { SyncClosure *sync = user_data; sync->result = g_object_ref (result); g_main_loop_quit (sync->loop); } static int call_leave (RealmDbusKerberosMembership *membership, GVariant *credentials, GVariant *options, GError **error) { SyncClosure sync; gboolean ret; sync.result = NULL; sync.loop = g_main_loop_new (NULL, FALSE); /* Start actual operation */ realm_dbus_kerberos_membership_call_leave (membership, credentials, options, NULL, on_complete_get_result, &sync); /* This mainloop is quit by on_complete_get_result */ g_main_loop_run (sync.loop); ret = realm_dbus_kerberos_membership_call_leave_finish (membership, sync.result, error); g_object_unref (sync.result); g_main_loop_unref (sync.loop); return ret ? 0 : 1; } static int call_deconfigure (RealmDbusRealm *realm, GVariant *options, GError **error) { SyncClosure sync; gboolean ret; sync.result = NULL; sync.loop = g_main_loop_new (NULL, FALSE); /* Start actual operation */ realm_dbus_realm_call_deconfigure (realm, options, NULL, on_complete_get_result, &sync); /* This mainloop is quit by on_complete_get_result */ g_main_loop_run (sync.loop); ret = realm_dbus_realm_call_deconfigure_finish (realm, sync.result, error); g_object_unref (sync.result); g_main_loop_unref (sync.loop); return ret ? 0 : 1; } static gboolean match_kerberos_realm_to_detail (RealmDbusRealm *realm, const gchar *field, const gchar *value) { GVariantIter iter; const gchar *vfield; const gchar *vvalue; gboolean matching = FALSE; /* If not set then anything matches */ if (value == NULL) return TRUE; g_variant_iter_init (&iter, realm_dbus_realm_get_details (realm)); while (g_variant_iter_loop (&iter, "(&s&s)", &vfield, &vvalue)) { if (g_str_equal (field, vfield) && g_str_equal (value, vvalue)) { matching = TRUE; break; } } return matching; } static RealmDbusRealm * locate_configured_matching_kerberos_realm (RealmClient *client, const gchar *realm_name, const gchar *client_software, const gchar *server_software, RealmDbusKerberosMembership **membership) { RealmDbusProvider *provider; const gchar *const *paths; RealmDbusRealm *realm; const gchar *name; gboolean matched; gint i; *membership = NULL; provider = realm_client_get_provider (client); paths = realm_dbus_provider_get_realms (provider); for (i = 0; paths && paths[i]; i++) { matched = FALSE; realm = realm_client_get_realm (client, paths[i]); *membership = realm_client_to_kerberos_membership (client, realm); if (*membership != NULL && realm_is_configured (realm)) { if (realm_name == NULL) { matched = TRUE; } else { name = realm_dbus_realm_get_name (realm); matched = (g_ascii_strcasecmp (name, realm_name) == 0); } } if (matched) matched = match_kerberos_realm_to_detail (realm, "client-software", client_software); if (matched) matched = match_kerberos_realm_to_detail (realm, "server-software", server_software); if (matched) return realm; g_clear_object (membership); g_object_unref (realm); } return NULL; } static int perform_deconfigure (RealmClient *client, RealmDbusRealm *realm) { GError *error = NULL; GVariant *options; gint ret; options = realm_build_options(NULL, NULL); ret = call_deconfigure (realm, options, &error); if (error != NULL) realm_handle_error (error, _("Couldn't leave realm")); return ret; } static int perform_user_leave (RealmClient *client, gboolean use_ldaps, RealmDbusKerberosMembership *membership, const gchar *user_name) { GError *error = NULL; GVariant *supported; GVariant *credentials; GVariant *options; gint ret; supported = realm_dbus_kerberos_membership_get_supported_leave_credentials (membership); credentials = realm_client_build_principal_creds (client, membership, supported, user_name, &error); if (!credentials) { realm_handle_error (error, NULL); return 1; } options = realm_build_options (REALM_DBUS_OPTION_USE_LDAPS, use_ldaps ? "True" : "False", NULL); ret = call_leave (membership, credentials, options, &error); if (error != NULL) realm_handle_error (error, _("Couldn't leave realm")); return ret; } static int perform_leave (RealmClient *client, const gchar *realm_name, gboolean use_ldaps, gboolean remove, const gchar *user_name, const gchar *client_software, const gchar *server_software) { RealmDbusKerberosMembership *membership; RealmDbusRealm *realm; gint ret; realm = locate_configured_matching_kerberos_realm (client, realm_name, client_software, server_software, &membership); if (realm == NULL) { if (!realm_name && !client_software && !server_software) realm_handle_error (NULL, "Couldn't find a configured realm"); else realm_handle_error (NULL, "Couldn't find a matching realm"); return 1; } /* Specifying a user name implies remov */ if (user_name && !remove) remove = TRUE; if (!remove) ret = perform_deconfigure (client, realm); else ret = perform_user_leave (client, use_ldaps, membership, user_name); g_object_unref (membership); g_object_unref (realm); return ret; } int realm_leave (RealmClient *client, int argc, char *argv[]) { GOptionContext *context; gchar *arg_user = NULL; gboolean arg_remove = FALSE; gchar *arg_client_software = NULL; gchar *arg_server_software = NULL; GError *error = NULL; const gchar *realm_name; gboolean arg_use_ldaps = FALSE; gint ret = 0; GOptionEntry option_entries[] = { { "client-software", 0, 0, G_OPTION_ARG_STRING, &arg_client_software, N_("Use specific client software"), NULL }, { "remove", 'r', 0, G_OPTION_ARG_NONE, &arg_remove, N_("Remove computer from realm"), NULL, }, { "server-software", 0, 0, G_OPTION_ARG_STRING, &arg_server_software, N_("Use specific server software"), NULL }, { "user", 'U', 0, G_OPTION_ARG_STRING, &arg_user, N_("User name to use for removal"), NULL }, { "use-ldaps", 0, 0, G_OPTION_ARG_NONE, &arg_use_ldaps, N_("Use ldaps to connect to LDAP"), NULL }, { NULL, } }; context = g_option_context_new ("realm"); g_option_context_set_translation_domain (context, GETTEXT_PACKAGE); g_option_context_add_main_entries (context, option_entries, NULL); g_option_context_add_main_entries (context, realm_global_options, NULL); if (!g_option_context_parse (context, &argc, &argv, &error)) { g_printerr ("%s: %s\n", g_get_prgname (), error->message); g_error_free (error); ret = 2; } else { realm_name = argc < 2 ? NULL : argv[1]; ret = perform_leave (client, realm_name, arg_use_ldaps, arg_remove, arg_user, arg_client_software, arg_server_software); } g_free (arg_user); g_free (arg_client_software); g_free (arg_server_software); g_option_context_free (context); return ret; } realmd-0.17.1/tools/realm-client.c0000644003225100322510000007262614046520517017255 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm.h" #include "realm-client.h" #include "realm-dbus-constants.h" #include #include #include #include #include #include #include #include struct _RealmClient { GDBusObjectManagerClient parent; RealmDbusProvider *provider; GPid peer_pid; }; struct _RealmClientClass { GDBusObjectManagerClientClass parent; }; G_DEFINE_TYPE (RealmClient, realm_client, G_TYPE_DBUS_OBJECT_MANAGER_CLIENT); typedef struct { GAsyncResult *result; GMainLoop *loop; } SyncClosure; static void on_complete_get_result (GObject *source, GAsyncResult *result, gpointer user_data) { SyncClosure *sync = user_data; sync->result = g_object_ref (result); g_main_loop_quit (sync->loop); } static void realm_client_init (RealmClient *self) { } static void realm_client_finalize (GObject *obj) { RealmClient *self = REALM_CLIENT (obj); if (self->peer_pid) { kill (self->peer_pid, SIGTERM); g_spawn_close_pid (self->peer_pid); } if (self->provider) g_object_unref (self->provider); G_OBJECT_CLASS (realm_client_parent_class)->finalize (obj); } static void realm_client_class_init (RealmClientClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->finalize = realm_client_finalize; } static GType realm_object_client_get_proxy_type (GDBusObjectManagerClient *manager, const gchar *object_path, const gchar *interface_name, gpointer user_data) { static gsize once_init_value = 0; static GHashTable *lookup_hash; GType ret; if (interface_name == NULL) return G_TYPE_DBUS_OBJECT_PROXY; if (g_once_init_enter (&once_init_value)) { lookup_hash = g_hash_table_new (g_str_hash, g_str_equal); g_hash_table_insert (lookup_hash, (gpointer) "org.freedesktop.realmd.Provider", GSIZE_TO_POINTER (REALM_DBUS_TYPE_PROVIDER_PROXY)); g_hash_table_insert (lookup_hash, (gpointer) "org.freedesktop.realmd.Service", GSIZE_TO_POINTER (REALM_DBUS_TYPE_SERVICE_PROXY)); g_hash_table_insert (lookup_hash, (gpointer) "org.freedesktop.realmd.Realm", GSIZE_TO_POINTER (REALM_DBUS_TYPE_REALM_PROXY)); g_hash_table_insert (lookup_hash, (gpointer) "org.freedesktop.realmd.Kerberos", GSIZE_TO_POINTER (REALM_DBUS_TYPE_KERBEROS_PROXY)); g_hash_table_insert (lookup_hash, (gpointer) "org.freedesktop.realmd.KerberosMembership", GSIZE_TO_POINTER (REALM_DBUS_TYPE_KERBEROS_MEMBERSHIP_PROXY)); g_once_init_leave (&once_init_value, 1); } ret = GPOINTER_TO_SIZE (g_hash_table_lookup (lookup_hash, interface_name)); if (ret == 0) ret = G_TYPE_DBUS_OBJECT_PROXY; return ret; } static void on_diagnostics_signal (GDBusConnection *connection, const gchar *sender_name, const gchar *object_path, const gchar *interface_name, const gchar *signal_name, GVariant *parameters, gpointer user_data) { gboolean verbose = GPOINTER_TO_INT (user_data); const gchar *operation_id; const gchar *data; g_variant_get (parameters, "(&s&s)", &data, &operation_id); /* * Various people have been worried by installing packages * quietly, so notify about what's going on. * * In reality *configuring* and *starting* a daemon is far * more worrisome than the installation. It's realmd's job * to configure, enable and start stuff. So if you're properly * worried, remove realmd and do stuff manually. */ if (verbose || strstr (data, _("Installing necessary packages"))) g_printerr ("%s", data); } static gboolean on_ctrl_c_cancel_operation (gpointer data) { RealmDbusService *service = REALM_DBUS_SERVICE (data); if (!realm_cancelled && realm_operation_id) { realm_dbus_service_call_cancel (service, realm_operation_id, NULL, NULL, NULL); g_printerr ("Cancelling...\n"); realm_cancelled = TRUE; _exit (1); } return TRUE; } static RealmClient * realm_client_new_on_connection (GDBusConnection *connection, gboolean verbose, const gchar *bus_name) { RealmDbusProvider *provider; RealmDbusService *service; GError *error = NULL; GInitable *ret; RealmClient *client = NULL; GDBusSignalFlags flags; flags = G_DBUS_SIGNAL_FLAGS_NONE; if (bus_name == NULL) flags |= G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE; g_dbus_connection_signal_subscribe (connection, bus_name, REALM_DBUS_SERVICE_INTERFACE, REALM_DBUS_DIAGNOSTICS_SIGNAL, REALM_DBUS_SERVICE_PATH, NULL, flags, on_diagnostics_signal, GINT_TO_POINTER (verbose), NULL); provider = realm_dbus_provider_proxy_new_sync (connection, G_DBUS_PROXY_FLAGS_NONE, bus_name, REALM_DBUS_SERVICE_PATH, NULL, &error); if (error != NULL) { realm_handle_error (error, _("Couldn't connect to realm service")); return NULL; } service = realm_dbus_service_proxy_new_sync (connection, G_DBUS_PROXY_FLAGS_NONE, bus_name, REALM_DBUS_SERVICE_PATH, NULL, &error); if (error != NULL) { realm_handle_error (error, _("Couldn't connect to realm service")); g_object_unref (provider); return NULL; } ret = g_initable_new (REALM_TYPE_CLIENT, NULL, &error, "flags", G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE, "name", bus_name, "connection", connection, "object-path", REALM_DBUS_SERVICE_PATH, "get-proxy-type-func", realm_object_client_get_proxy_type, NULL); if (ret != NULL) { client = REALM_CLIENT (ret); client->provider = g_object_ref (provider); g_dbus_proxy_set_default_timeout (G_DBUS_PROXY (provider), G_MAXINT); /* On Ctrl-C send a cancel to the server */ g_unix_signal_add_full (G_PRIORITY_HIGH, SIGINT, on_ctrl_c_cancel_operation, g_object_ref (service), g_object_unref); } g_object_unref (service); g_object_unref (provider); if (error != NULL) { realm_handle_error (error, _("Couldn't load the realm service")); return NULL; } return client; } static RealmClient * realm_client_new_system (gboolean verbose) { GDBusConnection *connection; GError *error = NULL; RealmClient *client = NULL; connection = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error); if (error != NULL) { if (verbose) g_printerr (" ! To run without a DBus bus use the install mode: --install=/\n"); realm_handle_error (error, _("Couldn't connect to system bus")); return NULL; } client = realm_client_new_on_connection (connection, verbose, REALM_DBUS_BUS_NAME); g_object_unref (connection); return client; } static RealmClient * realm_client_new_installer (gboolean verbose, const gchar *prefix) { GDBusConnection *connection; GSocketConnection *stream; RealmClient *client; GSocket *socket; GError *error = NULL; gchar buffer[16]; GPid pid = 0; int pair[2]; const gchar *args[] = { REALMD_EXECUTABLE, "--install", prefix, "--dbus-peer", buffer, NULL }; if (socketpair (AF_UNIX, SOCK_STREAM, 0, pair) < 0) { realm_handle_error (NULL, _("Couldn't create socket pair: %s"), g_strerror (errno)); return NULL; } g_snprintf (buffer, sizeof (buffer), "%d", pair[1]); socket = g_socket_new_from_fd (pair[0], &error); if (error != NULL) { realm_handle_error (error, _("Couldn't create socket")); close(pair[0]); close(pair[1]); return NULL; } g_spawn_async (prefix ? prefix : "/", (gchar **)args, NULL, G_SPAWN_LEAVE_DESCRIPTORS_OPEN | G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, &pid, &error); close(pair[1]); if (error != NULL) { realm_handle_error (error, _("Couldn't run realmd")); close(pair[0]); return NULL; } stream = g_socket_connection_factory_create_connection (socket); g_return_val_if_fail (stream != NULL, NULL); g_object_unref (socket); connection = g_dbus_connection_new_sync (G_IO_STREAM (stream), NULL, G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT | G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS, NULL, NULL, &error); g_object_unref (stream); if (error == NULL) { client = realm_client_new_on_connection (connection, verbose, NULL); g_object_unref (connection); } else { realm_handle_error (error, _("Couldn't create socket")); client = NULL; } /* Make sure the process is owned */ if (client) { client->peer_pid = pid; } else { kill (pid, SIGTERM); g_spawn_close_pid (pid); } return client; } RealmClient * realm_client_new (gboolean verbose, const gchar *prefix) { if (prefix) return realm_client_new_installer (verbose, prefix); else return realm_client_new_system (verbose); } RealmDbusProvider * realm_client_get_provider (RealmClient *self) { g_return_val_if_fail (REALM_IS_CLIENT (self), NULL); return self->provider; } GList * realm_client_discover (RealmClient *self, const gchar *string, gboolean use_ldaps, const gchar *client_software, const gchar *server_software, const gchar *membership_software, const gchar *dbus_interface, gboolean *had_mismatched, GError **error) { GDBusObjectManager *manager; GDBusInterface *iface; GVariant *options; SyncClosure sync; gchar **realm_paths; gint relevance; GList *realms; gboolean ret; gint i; g_return_val_if_fail (REALM_IS_CLIENT (self), NULL); if (string == NULL) string = ""; sync.result = NULL; sync.loop = g_main_loop_new (NULL, FALSE); options = realm_build_options (REALM_DBUS_OPTION_CLIENT_SOFTWARE, client_software, REALM_DBUS_OPTION_SERVER_SOFTWARE, server_software, REALM_DBUS_OPTION_MEMBERSHIP_SOFTWARE, membership_software, REALM_DBUS_OPTION_USE_LDAPS, use_ldaps ? "True" : "False", NULL); /* Start actual operation */ realm_dbus_provider_call_discover (self->provider, string, options, NULL, on_complete_get_result, &sync); /* This mainloop is quit by on_complete_get_result */ g_main_loop_run (sync.loop); ret = realm_dbus_provider_call_discover_finish (self->provider, &relevance, &realm_paths, sync.result, error); g_object_unref (sync.result); g_main_loop_unref (sync.loop); if (!ret) return FALSE; realms = NULL; manager = G_DBUS_OBJECT_MANAGER (self); for (i = 0; realm_paths[i] != NULL; i++) { iface = g_dbus_object_manager_get_interface (manager, realm_paths[i], dbus_interface); if (iface == NULL) { if (had_mismatched) *had_mismatched = TRUE; } else { g_dbus_proxy_set_default_timeout (G_DBUS_PROXY (iface), G_MAXINT); realms = g_list_prepend (realms, iface); } } g_strfreev (realm_paths); return g_list_reverse (realms); } RealmDbusRealm * realm_client_get_realm (RealmClient *self, const gchar *object_path) { GDBusInterface *iface; g_return_val_if_fail (REALM_IS_CLIENT (self), NULL); iface = g_dbus_object_manager_get_interface (G_DBUS_OBJECT_MANAGER (self), object_path, REALM_DBUS_REALM_INTERFACE); if (iface) g_dbus_proxy_set_default_timeout (G_DBUS_PROXY (iface), G_MAXINT); return REALM_DBUS_REALM (iface); } RealmDbusRealm * realm_client_to_realm (RealmClient *self, gpointer proxy) { g_return_val_if_fail (REALM_IS_CLIENT (self), NULL); return realm_client_get_realm (self, g_dbus_proxy_get_object_path (proxy)); } RealmDbusKerberosMembership * realm_client_get_kerberos_membership (RealmClient *self, const gchar *object_path) { GDBusInterface *iface; g_return_val_if_fail (REALM_IS_CLIENT (self), NULL); iface = g_dbus_object_manager_get_interface (G_DBUS_OBJECT_MANAGER (self), object_path, REALM_DBUS_KERBEROS_MEMBERSHIP_INTERFACE); if (iface) g_dbus_proxy_set_default_timeout (G_DBUS_PROXY (iface), G_MAXINT); return REALM_DBUS_KERBEROS_MEMBERSHIP (iface); } RealmDbusKerberosMembership * realm_client_to_kerberos_membership (RealmClient *self, gpointer proxy) { g_return_val_if_fail (REALM_IS_CLIENT (self), NULL); return realm_client_get_kerberos_membership (self, g_dbus_proxy_get_object_path (proxy)); } RealmDbusKerberos * realm_client_get_kerberos (RealmClient *self, const gchar *object_path) { GDBusInterface *iface; g_return_val_if_fail (REALM_IS_CLIENT (self), NULL); iface = g_dbus_object_manager_get_interface (G_DBUS_OBJECT_MANAGER (self), object_path, REALM_DBUS_KERBEROS_INTERFACE); if (iface) g_dbus_proxy_set_default_timeout (G_DBUS_PROXY (iface), G_MAXINT); return REALM_DBUS_KERBEROS (iface); } RealmDbusKerberos * realm_client_to_kerberos (RealmClient *self, gpointer proxy) { g_return_val_if_fail (REALM_IS_CLIENT (self), NULL); return realm_client_get_kerberos (self, g_dbus_proxy_get_object_path (proxy)); } static const gchar * are_credentials_supported (GVariant *supported, const gchar *credential_type_1, const gchar *credential_type_2, const gchar **ret_owner) { GVariantIter iter; const gchar *type; const gchar *owner; g_variant_iter_init (&iter, supported); while (g_variant_iter_loop (&iter, "(&s&s)", &type, &owner)) { if (g_strcmp0 (credential_type_1, type) == 0 || g_strcmp0 (credential_type_2, type) == 0) { *ret_owner = owner; return type; } } return NULL; } static void propagate_krb5_error (GError **dest, krb5_context context, krb5_error_code code, const gchar *format, ...) G_GNUC_PRINTF (4, 5); static void propagate_krb5_error (GError **dest, krb5_context context, krb5_error_code code, const gchar *format, ...) { GString *message; va_list va; message = g_string_new (""); if (format) { va_start (va, format); g_string_append_vprintf (message, format, va); va_end (va); } if (code != 0) { if (format) g_string_append (message, ": "); g_string_append (message, krb5_get_error_message (context, code)); } g_set_error_literal (dest, g_quark_from_static_string ("krb5"), code, message->str); g_string_free (message, TRUE); } static krb5_ccache prepare_temporary_ccache (krb5_context krb5, gchar **filename, GError **error) { const gchar *directory; krb5_error_code code; krb5_ccache ccache; gchar *temp_name; gint temp_fd; int errn; directory = g_get_user_runtime_dir (); if (!g_file_test (directory, G_FILE_TEST_IS_DIR)) directory = g_get_tmp_dir (); if (g_mkdir_with_parents (directory, S_IRWXU) < 0) { errn = errno; g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errn), _("Couldn't create runtime directory: %s: %s"), directory, g_strerror (errn)); return NULL; } temp_name = g_build_filename (directory, "realmd-krb5-cache.XXXXXX", NULL); temp_fd = g_mkstemp_full (temp_name, O_RDWR, S_IRUSR | S_IWUSR); if (temp_fd == -1) { errn = errno; g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errn), _("Couldn't create credential cache file: %s: %s"), temp_name, g_strerror (errn)); g_free (temp_name); return NULL; } close (temp_fd); code = krb5_cc_resolve (krb5, temp_name, &ccache); if (code != 0) { propagate_krb5_error (error, krb5, code, _("Couldn't resolve credential cache")); g_free (temp_name); return NULL; } g_debug ("Temporary credential cache: %s", temp_name); *filename = temp_name; return ccache; } static gboolean copy_to_ccache (krb5_context krb5, const gchar *realm_name, krb5_principal principal, krb5_ccache ccache) { krb5_principal server; krb5_ccache def_ccache; krb5_error_code code; krb5_creds mcred; krb5_creds creds; code = krb5_cc_default (krb5, &def_ccache); if (code != 0) { g_debug ("krb5_cc_default failed: %s", krb5_get_error_message (krb5, code)); return FALSE; } code = krb5_build_principal (krb5, &server, strlen (realm_name), realm_name, KRB5_TGS_NAME, realm_name, NULL); g_return_val_if_fail (code == 0, FALSE); memset (&mcred, 0, sizeof (mcred)); mcred.client = principal; mcred.server = server; mcred.times.starttime = g_get_real_time () / G_TIME_SPAN_MILLISECOND; mcred.times.endtime = mcred.times.starttime; code = krb5_cc_retrieve_cred (krb5, def_ccache, KRB5_TC_MATCH_TIMES, &mcred, &creds); krb5_free_principal (krb5, server); krb5_cc_close (krb5, def_ccache); if (code == KRB5_CC_NOTFOUND) { g_debug ("no matching principal found in %s", krb5_cc_default_name (krb5)); return FALSE; } else if (code != 0) { g_debug ("krb5_cc_retrieve_cred failed: %s", krb5_get_error_message (krb5, code)); return FALSE; } code = krb5_cc_store_cred (krb5, ccache, &creds); krb5_free_cred_contents (krb5, &creds); if (code != 0) { g_debug ("krb5_cc_store_cred failed: %s", krb5_get_error_message (krb5, code)); return FALSE; } g_debug ("retrieved credentials from: %s", krb5_cc_default_name (krb5)); return TRUE; } static gboolean kinit_to_ccache (krb5_context krb5, krb5_principal principal, const gchar *name, krb5_ccache ccache, GError **error) { krb5_get_init_creds_opt *options = NULL; krb5_error_code code; krb5_creds my_creds; code = krb5_get_init_creds_opt_alloc (krb5, &options); g_return_val_if_fail (code == 0, FALSE); code = krb5_get_init_creds_opt_set_out_ccache (krb5, options, ccache); g_return_val_if_fail (code == 0, FALSE); code = krb5_get_init_creds_password (krb5, &my_creds, principal, NULL, krb5_prompter_posix, 0, 0, NULL, options); krb5_get_init_creds_opt_free (krb5, options); if (code == KRB5KDC_ERR_PREAUTH_FAILED || code == KRB5KRB_AP_ERR_BAD_INTEGRITY || code == KRB5_PREAUTH_FAILED) { propagate_krb5_error (error, krb5, code, _("Invalid password for %s"), name); return FALSE; } else if (code != 0) { propagate_krb5_error (error, krb5, code, _("Couldn't authenticate as %s"), name); return FALSE; } krb5_free_cred_contents (krb5, &my_creds); return TRUE; } static gboolean copy_or_kinit_to_ccache (krb5_context krb5, krb5_ccache ccache, const gchar *user_name, const gchar *realm_name, GError **error) { krb5_principal principal; krb5_error_code code; gchar *full_name = NULL; gboolean ret; if (strchr (user_name, '@') == NULL) user_name = full_name = g_strdup_printf ("%s@%s", user_name, realm_name); code = krb5_parse_name (krb5, user_name, &principal); if (code != 0) { propagate_krb5_error (error, krb5, code, _("Couldn't parse user name: %s"), user_name); g_free (full_name); return FALSE; } ret = copy_to_ccache (krb5, realm_name, principal, ccache) || kinit_to_ccache (krb5, principal, user_name, ccache, error); g_free (full_name); krb5_free_principal (krb5, principal); return ret; } static GVariant * read_file_into_variant (const gchar *filename) { GVariant *variant; GError *error = NULL; gchar *contents; gsize length; g_file_get_contents (filename, &contents, &length, &error); if (error != NULL) { realm_handle_error (error, _("Couldn't read credential cache")); return NULL; } variant = g_variant_new_from_data (G_VARIANT_TYPE ("ay"), contents, length, TRUE, g_free, contents); return g_variant_ref_sink (variant); } static GVariant * build_ccache_credential (const gchar *user_name, const gchar *realm_name, const gchar *credential_owner, GError **error) { krb5_error_code code; krb5_context krb5; gboolean ret = FALSE; krb5_ccache ccache; gchar *filename; GVariant *result; code = krb5_init_context (&krb5); if (code != 0) { propagate_krb5_error (error, NULL, code, _("Couldn't initialize kerberos")); return NULL; } ccache = prepare_temporary_ccache (krb5, &filename, error); if (ccache) { ret = copy_or_kinit_to_ccache (krb5, ccache, user_name, realm_name, error); krb5_cc_close (krb5, ccache); krb5_free_context (krb5); } if (!ret) return NULL; result = read_file_into_variant (filename); g_unlink (filename); g_free (filename); if (result) result = g_variant_new ("(ssv)", "ccache", credential_owner, result); return result; } static gchar * prompt_stdin (const gchar *prompt) { static const gsize pass_max = 8192; gchar *password; gsize len; g_printf ("%s", prompt); fflush (stdout); password = malloc (pass_max); if (!fgets (password, pass_max, stdin)) password[0] = '\0'; g_printf ("\n"); len = strlen (password); if (len > 0 && password[len - 1] == '\n') password[len - 1] = '\0'; return password; } static GVariant * build_password_credential (const gchar *user_name, const gchar *credential_owner, GError **error) { const gchar *password; GVariant *result; gchar *alloced; gchar *prompt; int istty; istty = isatty (0); if (istty && realm_unattended) { g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, _("Cannot prompt for a password when running in unattended mode")); return NULL; } prompt = g_strdup_printf (_("Password for %s: "), user_name); /* * Yeah, getpass is obselete. Have fun trying to recreate it even * semi-portably. */ if (istty) { password = getpass (prompt); alloced = NULL; } else { alloced = prompt_stdin (prompt); password = alloced; } g_free (prompt); if (password == NULL) { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, _("Couldn't prompt for password: %s"), g_strerror (errno)); return NULL; } result = g_variant_new ("(ssv)", "password", credential_owner, g_variant_new ("(ss)", user_name, password)); if (password) memset ((char *)password, 0, strlen (password)); free (alloced); return result; } GVariant * realm_client_build_principal_creds (RealmClient *self, RealmDbusKerberosMembership *membership, GVariant *supported, const gchar *user_name, GError **error) { RealmDbusKerberos *kerberos; const gchar *realm_name; GVariant *creds; const gchar *credential_type; const gchar *credential_owner; g_return_val_if_fail (REALM_IS_CLIENT (self), NULL); credential_type = are_credentials_supported (supported, "ccache", "password", &credential_owner); if (credential_type == NULL) { g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, _("Realm does not support membership using a password")); return NULL; } g_debug ("Using credential type: %s/%s", credential_type, credential_owner); if (user_name == NULL) user_name = realm_dbus_kerberos_membership_get_suggested_administrator (membership); if (user_name == NULL || g_str_equal (user_name, "")) user_name = g_get_user_name (); g_debug ("Using user: %s", user_name); /* A credential cache? */ if (g_str_equal (credential_type, "ccache")) { kerberos = realm_client_to_kerberos (self, membership); realm_name = realm_dbus_kerberos_get_realm_name (kerberos); creds = build_ccache_credential (user_name, realm_name, credential_owner, error); /* A plain ol password */ } else { creds = build_password_credential (user_name, credential_owner, error); } return creds; } GVariant * realm_client_build_otp_creds (RealmClient *self, GVariant *supported, const gchar *one_time_password, GError **error) { const gchar *owner; g_return_val_if_fail (REALM_IS_CLIENT (self), NULL); if (!are_credentials_supported (supported, "secret", NULL, &owner)) { g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, _("Realm does not support membership using a one time password")); return NULL; } return g_variant_new ("(ssv)", "secret", owner, g_variant_new_fixed_array (G_VARIANT_TYPE_BYTE, one_time_password, strlen (one_time_password), sizeof (unsigned char))); } static krb5_error_code copy_credential_cache (krb5_context krb5, krb5_ccache src, krb5_ccache dst) { krb5_error_code code = 0; krb5_principal princ = NULL; code = krb5_cc_get_principal (krb5, src, &princ); if (!code) code = krb5_cc_initialize (krb5, dst, princ); if (code) return code; code = krb5_cc_copy_creds (krb5, src, dst); if (princ) krb5_free_principal (krb5, princ); return code; } static GVariant * lookup_ccache_credential (const gchar *realm_name, const gchar *credential_owner, GError **error) { GVariant *result = NULL; krb5_error_code code; krb5_context krb5; krb5_ccache origin = NULL; krb5_ccache ccache = NULL; krb5_principal principal; krb5_principal server; gchar *filename; code = krb5_init_context (&krb5); if (code != 0) { propagate_krb5_error (error, NULL, code, _("Couldn't initialize kerberos")); return NULL; } code = krb5_build_principal (krb5, &server, strlen (realm_name), realm_name, KRB5_TGS_NAME, realm_name, NULL); g_return_val_if_fail (code == 0, FALSE); code = krb5_cc_select (krb5, server, &origin, &principal); krb5_free_principal (krb5, server); if (principal) krb5_free_principal (krb5, principal); if (code == KRB5_CC_NOTFOUND) { g_debug ("No ccache credentials found for: %s", realm_name); origin = NULL; } else if (code != 0) { propagate_krb5_error (error, krb5, code, _("Couldn't select kerberos credentials")); origin = NULL; } if (origin) { ccache = prepare_temporary_ccache (krb5, &filename, error); if (ccache) { g_debug ("Copying credential cache"); code = copy_credential_cache (krb5, origin, ccache); krb5_cc_close (krb5, ccache); if (code == 0) result = read_file_into_variant (filename); else propagate_krb5_error (error, krb5, code, _("Couldn't read kerberos credentials")); if (result) result = g_variant_new ("(ssv)", "ccache", credential_owner, result); g_unlink (filename); g_free (filename); } krb5_cc_close (krb5, origin); } krb5_free_context (krb5); return result; } GVariant * realm_client_build_automatic_creds (RealmClient *self, RealmDbusKerberos *realm, GVariant *supported, GError **error) { const gchar *credential_owner; const gchar *realm_name; GVariant *result; GError *erra = NULL; g_return_val_if_fail (REALM_IS_CLIENT (self), NULL); /* So first check if we have a kerberos ccache that matches */ if (are_credentials_supported (supported, "ccache", NULL, &credential_owner)) { realm_name = realm_dbus_kerberos_get_realm_name (realm); result = lookup_ccache_credential (realm_name, credential_owner, &erra); /* If no credentials, then fall through to below */ if (erra != NULL) { g_propagate_error (error, erra); return NULL; } else if (result != NULL) { return result; } } if (are_credentials_supported (supported, "automatic", NULL, &credential_owner)) { return g_variant_new ("(ssv)", "automatic", credential_owner, g_variant_new_string ("")); } g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, _("Realm does not support automatic membership")); return NULL; } realmd-0.17.1/tools/Makefile.am0000644003225100322510000000077514046520517016565 0ustar00sbosesbose00000000000000sbin_PROGRAMS += \ realm realm_SOURCES = \ tools/realm.c \ tools/realm.h \ tools/realm-client.h \ tools/realm-client.c \ tools/realm-discover.c \ tools/realm-join.c \ tools/realm-leave.c \ tools/realm-logins.c \ $(NULL) realm_CFLAGS = \ -I$(top_srcdir)/dbus \ -I$(top_srcdir)/build \ -DLOCALEDIR=\""$(datadir)/locale"\" \ -DREALMD_EXECUTABLE=\""$(libexecdir)/realmd"\" \ $(GLIB_CFLAGS) \ $(KRB5_CFLAGS) \ $(NULL) realm_LDADD = \ librealm-dbus.a \ $(GLIB_LIBS) \ $(KRB5_LIBS) \ $(NULL) realmd-0.17.1/tools/realm-discover.c0000644003225100322510000002104314046520517017600 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "realm.h" #include "realm-dbus-constants.h" #include "realm-dbus-generated.h" #include #include #include #include #include #include #include #include #include static void print_kerberos_info (RealmClient *client, RealmDbusKerberos *kerberos) { g_print (" type: kerberos\n"); g_print (" realm-name: %s\n", realm_dbus_kerberos_get_realm_name (kerberos)); g_print (" domain-name: %s\n", realm_dbus_kerberos_get_domain_name (kerberos)); } static void print_realm_info (RealmClient *client, gboolean name_only, RealmDbusRealm *realm) { RealmDbusKerberos *kerberos; const gchar *configured; GVariant *details; const gchar *name; const gchar *value; gboolean is_configured; gchar *string; const gchar *policy; GVariantIter iter; const gchar *const *packages; gint i; g_return_if_fail (REALM_DBUS_IS_REALM (realm)); g_print ("%s\n", realm_dbus_realm_get_name (realm)); if (name_only) return; kerberos = realm_client_to_kerberos (client, realm); if (kerberos) { print_kerberos_info (client, kerberos); g_object_unref (kerberos); } else { g_print (" type: unknown\n"); } is_configured = TRUE; configured = realm_dbus_realm_get_configured (realm); if (configured == NULL || g_str_equal (configured, "")) { configured = "no"; is_configured = FALSE; } else if (g_str_equal (configured, REALM_DBUS_KERBEROS_MEMBERSHIP_INTERFACE)) { configured = "kerberos-member"; } g_print (" configured: %s\n", configured); details = realm_dbus_realm_get_details (realm); if (details) { g_variant_iter_init (&iter, details); while (g_variant_iter_loop (&iter, "(&s&s)", &name, &value)) g_print (" %s: %s\n", name, value); } packages = realm_dbus_realm_get_required_packages (realm); for (i = 0; packages != NULL && packages[i] != NULL; i++) g_print (" required-package: %s\n", packages[i]); if (is_configured) { string = g_strjoinv (", ", (gchar **)realm_dbus_realm_get_login_formats (realm)); g_print (" login-formats: %s\n", string); g_free (string); policy = realm_dbus_realm_get_login_policy (realm); g_print (" login-policy: %s\n", policy); if (strstr (policy, REALM_DBUS_LOGIN_POLICY_PERMITTED)) { string = g_strjoinv (", ", (gchar **)realm_dbus_realm_get_permitted_logins (realm)); g_print (" permitted-logins: %s\n", string); g_free (string); string = g_strjoinv (", ", (gchar **)realm_dbus_realm_get_permitted_groups (realm)); g_print (" permitted-groups: %s\n", string); g_free (string); } } } static int perform_discover (RealmClient *client, const gchar *string, gboolean all, gboolean name_only, gboolean use_ldaps, const gchar *server_software, const gchar *client_software, const gchar *membership_software) { GHashTable *seen; gboolean found = FALSE; GError *error = NULL; const gchar *name; GList *realms; GList *l; realms = realm_client_discover (client, string, use_ldaps, client_software, server_software, membership_software, REALM_DBUS_REALM_INTERFACE, NULL, &error); if (error != NULL) { realm_handle_error (error, _("Couldn't discover realms")); return 1; } seen = g_hash_table_new (g_str_hash, g_str_equal); for (l = realms; l != NULL; l = g_list_next (l)) { name = realm_dbus_realm_get_name (l->data); if (all || !g_hash_table_lookup (seen, name)) { print_realm_info (client, name_only, l->data); g_hash_table_add (seen, (gchar *)name); found = TRUE; } } g_hash_table_destroy (seen); g_list_free_full (realms, g_object_unref); if (!found) { if (string == NULL) realm_handle_error (NULL, _("No default realm discovered")); else realm_handle_error (NULL, _("No such realm found: %s"), string); return 1; } return 0; } int realm_discover (RealmClient *client, int argc, char *argv[]) { GOptionContext *context; gchar *arg_client_software = NULL; gchar *arg_server_software = NULL; gchar *arg_membership_software = NULL; GError *error = NULL; gboolean arg_all = FALSE; gboolean arg_name_only = FALSE; gboolean arg_use_ldaps = FALSE; gint result = 0; gint ret; gint i; GOptionEntry option_entries[] = { { "all", 'a', 0, G_OPTION_ARG_NONE, &arg_all, N_("Show all discovered realms"), NULL }, { "name-only", 'n', 0, G_OPTION_ARG_NONE, &arg_name_only, N_("Show only the names"), NULL }, { "client-software", 0, 0, G_OPTION_ARG_STRING, &arg_client_software, N_("Use specific client software"), NULL }, { "membership-software", 0, 0, G_OPTION_ARG_STRING, &arg_membership_software, N_("Use specific membership software"), NULL }, { "server-software", 0, 0, G_OPTION_ARG_STRING, &arg_server_software, N_("Use specific server software"), NULL }, { "use-ldaps", 0, 0, G_OPTION_ARG_NONE, &arg_use_ldaps, N_("Use ldaps to connect to LDAP"), NULL }, { NULL, } }; context = g_option_context_new ("discover REALM-OR-DOMAIN"); g_option_context_set_translation_domain (context, GETTEXT_PACKAGE); g_option_context_add_main_entries (context, option_entries, NULL); g_option_context_add_main_entries (context, realm_global_options, NULL); if (!g_option_context_parse (context, &argc, &argv, &error)) { g_printerr ("%s: %s\n", g_get_prgname (), error->message); g_error_free (error); result = 2; /* The default realm? */ } else if (argc == 1) { result = perform_discover (client, NULL, arg_all, arg_name_only, arg_use_ldaps, arg_server_software, arg_client_software, arg_membership_software); /* Specific realms */ } else { for (i = 1; i < argc; i++) { ret = perform_discover (client, argv[i], arg_all, arg_name_only, arg_use_ldaps, arg_server_software, arg_client_software, arg_membership_software); if (ret != 0) result = ret; } } g_free (arg_server_software); g_free (arg_client_software); g_free (arg_membership_software); g_option_context_free (context); return result; } static int perform_list (RealmClient *client, gboolean all, gboolean name_only) { RealmDbusProvider *provider; const gchar *const *realms; gboolean printed = FALSE; RealmDbusRealm *realm; gint i; provider = realm_client_get_provider (client); realms = realm_dbus_provider_get_realms (provider); for (i = 0; realms && realms[i] != NULL; i++) { realm = realm_client_get_realm (client, realms[i]); if (all || realm_is_configured (realm)) { print_realm_info (client, name_only, realm); printed = TRUE; } g_object_unref (realm); } if (realm_verbose && !printed) { if (all) g_printerr ("No known realms\n"); else g_printerr ("No configured realms\n"); } return 0; } int realm_list (RealmClient *client, int argc, char *argv[]) { GOptionContext *context; gboolean arg_all = FALSE; gboolean arg_name_only = FALSE; GError *error = NULL; gint ret = 0; GOptionEntry option_entries[] = { { "all", 'a', 0, G_OPTION_ARG_NONE, &arg_all, N_("Show all realms"), NULL }, { "name-only", 'n', 0, G_OPTION_ARG_NONE, &arg_name_only, N_("Show only the names"), NULL }, { NULL, } }; context = g_option_context_new ("list"); g_option_context_set_translation_domain (context, GETTEXT_PACKAGE); g_option_context_add_main_entries (context, option_entries, NULL); g_option_context_add_main_entries (context, realm_global_options, NULL); if (!g_option_context_parse (context, &argc, &argv, &error)) { g_printerr ("%s: %s\n", g_get_prgname (), error->message); g_error_free (error); ret = 2; } else if (argc == 0) { g_printerr ("%s: no arguments necessary\n", g_get_prgname ()); ret = 2; } else { ret = perform_list (client, arg_all, arg_name_only); } g_option_context_free (context); return ret; } realmd-0.17.1/COPYING0000644003225100322510000006364114046520517014425 0ustar00sbosesbose00000000000000 GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. , 1 April 1990 Ty Coon, President of Vice That's all there is to it!realmd-0.17.1/NEWS0000644003225100322510000002703714315276717014101 0ustar00sbosesbose000000000000000.17.1 * Kerberos: use fewer attributes for g_file_query_info() [gfo#36] * service: use name instead of IP address with ad_server [rhbz#2129050] * tools: add --do-not-touch-config option for AD [gfo#30] * Use autoreconf and gettext * samba: use new Samba-4.15 command line options [rhbz#2028530] * syslog: avoid duplicate log messages [rhbz#2024248] * ldap: add socket timeout [rhbz#1817869] * Use target arch pkg-config to fix cross compilation [gfo#35] * doc: add computer-name to realm man page * configure: update some macros for autoconf-2.71 * build: add --with-vendor-error-message configure option [rhbz#1889386] * distro: use authselect on Red Hat platforms 0.17.0 * Use current idmap options for smb.conf [rhbz#1484072] * Find NetBIOS name in keytab while leaving [rhbz#1370457] * Work properly with Python 3 * discover: try to get domain name from hostname [rhbz#1619162] * Set 'NEWEST' flag when resolving packages with PackageKit * service: use "kerberos method" "secrets and keytab" [rhbz#1801195] * Use startTLS with FreeIPA [gfo#23] * service: use 'additional dns hostnames' with net ads join [rhbz#1867912] * Fix pam misconfiguration for SUSE systems * Also install libnss-winbind on Debian systems * Kerberos: add default_domain and udp_preference_limit [rhbz#1791016] * tools: add --use-ldaps option for discover, join and leave [rhbz#1826964] * Fix nsswitch handling when joining and leaving domain for suse distro * paths: install realmd in libexecdir [gfo#26] * tools: enforce absolute path for install option [gfo#27] 0.16.3 * Add os-name and os-version command line options * Add computer-name support to realmd join CLI and config * Don't fall over if a [domain] section in sssd.conf exists * Fully qualify --computer-ou DN before passing to adcli * Fix issue where diagnostics about package install hidden * Updated translations 0.16.2 * Be more liberal with domain name chars * Increase timeout when calling PackageKit * List package names with spaces between them [#89464] * Install to $prefix/lib instead of $libdir 0.16.1 * libsystemd build fix [#90519] * Change default home directory to /home/%U@%D * Add --automatic-id-mapping=no command line argument 0.16.0 * Disable automatic AD joins by default [#89205] * Validate text we receive from LDAP * Prefer adcli for AD joins * Remove hard dependency on PackageKit * Fix crash when empty password is used with realm client 0.15.2 * Fix PackageKit installation issue * Remove our copy of valgrind.h * Build fixes and tweaks 0.15.1 * Build fixes for PackageKit changes [#76800 * Correct the polkit policy for non-desktop users [#78273] * Don't crash if missing full_name_format in sssd.conf 0.15.0 * Depend on Glib 2.36 or later * Use safe printf when formatting sssd.conf full_name_format * Fix logic issue when testing for EAGAIN [#71774] * Build fixes 0.14.6 * Set 'kerberos method = system keytab' in smb.conf properly [#69037] * Limit Netbios name to 15 chars when joining AD domain [#69016] 0.14.5 * Fix regression where --unattended conflicted with -U as in --user [#68112] * Pass discovered server address to adcli [#68111] * Fix failure message output 0.14.4 * Fix up the [sssd] section in sssd.conf if it's screwed up * Add an --unattended argument to realm command line client * Clearer 'realm permit' manual page example * Other documentation fixes 0.14.3 * Populate LoginFormats properly when use_fully_qualified_names = False * Several documentation fixes * Set sssd.conf default_shell per domain * Notify in terminal output when installing packages * If joined via adcli, delete computer account with adcli as well * If input is not tty, then just read from stdin without getpass() * Force IPA joins so that computer can rejoin a domain * Configure pam_winbind.conf appropriately when using winbind [#66831] * Refer to FreeIPA as IPA [#66734] * Support use of kerberos ccache to join when using winbind * Don't create a top level directory in /var [#65435] * Other build fixes 0.14.2 * Rework discovery for changes in FreeIPA 3.0 [#64895] * Remove simple_allow_users/groups when permit/deny access provider [#64903] * When FreeIPA domain with manage-system, we want NTP, so --force-ntpd * Only allow joining one manage-system=true domain [#64928] * Return a specific error code when host name is invalid * Enable oddjobd service on Fedora and RHEL 0.14.1 * Don't use the slice allocator for small memory allocations [#56157] * Don't do critical warning when service.Release() is called * Just quit when Ctrl-C is pressed twice [#64538] * Don't remove sssd domain if already removed * Document the 'realm discover --all' option * sssd-tools is no longer needed on Fedora * Don't print journalctl command when cancelled [#64539] * Enable sssd service even when in install mode [#64542] * Use the full AD domain name as sssd.conf domain [#64544] * When failing to write out data to subprocess, print errno * Work around authconfig bug [#953851] * Build fixes 0.14.0 * Work around krb5 bugs in krb5_get_init_creds_password() * Fine tune the regular expressions and formats for AD and IPA * Put documentation about realmd.conf in a manual page [#64182] 0.13.91 * Add support for permitting logins by group [#58397] * Fix regression of service --debug argument * Fix regression of discovery of FreeIPA * Fix regression in 'realm join --one-time-password' * Fix lots of possible uninitialized memory usage 0.13.90 * Rework the discovery mechanisms for AD and IPA [#62863 #63907 #63907] * Allow specifying of servers for discovery and join [#63907] * Option to disable use of fully qualified names [#60637] * Option to disable automatic package installs [#61215] * Option for turning on realmd debugging [#61219] * Option for 'manage-system' [#61858] * Option to turn off automatic id mapping [#60679] * Option for creating user principal on computer account [#62755] * Options for setting OS name and version [#54489] * On failure print out journal command [#63739] * When realm is not joinable say so [#63631] * Handle IPA bad password error code [#63738] * Work around samba bug which requires LOGNAME envvar [#63956] * Use allow-realm-logins by default if manage-system [#61858] * Temp file handling fixes [#63910] * Don't set sssd.conf parameters to defaults [#62519] * Remove empty keytab if all entries have been flushed [#56029] * Support for using kerberos credential cache to join [#56022] * Refactor internals [#63434 #63906] 0.13.3 * Fix permit/deny commands and implementation [#62517 #62518] * Don't exit realmd when clients are still active [#61220] * Send internal warnings/criticals/messages to syslog [#58084] * Example domain fixes [#62215 #62372 #62214 #62162] * Cleanup our 'net ads join' usage [#56023] * Support realm login policy [#60628] * Other tweaks and bug fixes [#62763 #62210 #60656 ...] * Include a systemd unit file [#56012] * Adding build support for SuSE [#55097] * Check that package-kit finds all the packages we ask it to resolve [#60657] * If PackageKit is not available, assume manual package installation [#60654] * License clarification, we are LGPL v2.1 [#57943] * Optionally use systemd's journal for logging [#62225] * Documentation fixes and clarifications * Build and testing fixes 0.13 * Pull in translations from transifex * Detect incorrect passwords when using 'net ads join' login via RPC * Use ipa-client-install to provide join functionality for IPA domains * Don't assume that we can use kerberos to validate admin password * Allow specifying --membership-software when discovering a realm * Only use the XDG user data directory if it exists * Quit the daemon when SIGTERM or SIGINT received * Implement cancellation of operations * Documentation fixes * Add documentation about realmd internals * Update commands and packages for Debian * Use /var/cache/realmd instead of /tmp * Build fixes and lots of other bugs fixed 0.12 * Add a --no-password option to realm join * Check if domain is configured before trying to join * Updated translations * Build fixes 0.11 * Support install mode, where we try not to use the DBus system bus * Support caller based package installation * Fix various bugs 0.10 * Send diagnostics from subcommand to client as they come in * Return configured realms back to callers * Refuse to join a domain if hostname is localhost * In realm permit or deny commands, fail when options are invalid * Fix samba package names for Fedora changes * Fix typo in realm manual * Fix case where base dn in computer-ou doesn't match domain * Don't crash when computer-ou is empty * Fix problem where daemon goes away unexpectedly 0.9 * Add support for deconfiguring a realm without removing computer account * Cleanup the krb5.keytab from realmd itself, rather than relying on samba * Fix problems running authconfig from a system service * Automatically create home directories for logged in accounts on Fedora and RHEL * Setup a default shell and home directory for AD users coming via sssd * Restart the accouts-daemon after joining a domain * Use lower case realm names * Enable offline logins with sssd * Make sure the allow-permitted-logins policy works with sssd even when no permitted logins specified * Use systemctl and service commands to manage services rather than DBus * Move the realm command to /usr/sbin * Make --verbose work with 'realm permit -all' and 'realm deny --all' * Make sure realm permit/deny only work with configured realms * Work around sssd simple access provider issues * Use sss_cache to clear caches when removing a domain * Make 'realm discover' only print out realm line per domain by default * Only list configured realms in 'realm list' by default * Bug fixes * Documentation 0.8.1 * Distribute debian settings file correctly 0.8 * Cleaner, faster and robuster IPA discovery * Don't refret the PackageKit cache when installing * Add first translation, although gettext not hooked up yet * Pass passwords directly to the samba 'net' command * Better prompting for realm administrator/user password in realm tool * Remove custom debug code, just use glib * Support basic one-time-password and automatic joining * Ignore temporarily DNS failures when discovering * Add a generic kerberos provider, for discovering non AD/IPA realms * Add support for specifying a computer OU LDAP DN when joining * Don't require unstable glib * Fix timeout in the realm tool * Some build and testing fixes * Other bug fixes 0.7 * Refactor the DBus interface so we can add other realm types later * Implement o.f.DBus.ObjectManager * Some compat fixes for samba4 * Use better LoginFormats format * Add DBus interface documentation * Build fixes 0.6 * Switch default AD client to sssd * Support building with automake 1.12.x * Cleaner DBus API which handles password based authentication required for samba3's net command. * Remove support for out of process providers * Lots of bug fixes 0.5 * Implement login policy concept * Make the daemon exit-after-timeout work better * Implement an AD provider based on sssd * Fix accidental corruption of config files * New 'realm' command with various sub-commands * Display errors correctly in command line tools * Add discovery of IPA servers * Various bug fixes 0.4 * Fix up license headers * Don't use SOA for MSDCS subdomain, use SRV record directly 0.3 * Build and packaging fixes 0.2 * Add possibility for cancellation to the DBus interface * Add provider Name and Version properties * Clearer diagnostics on discovery * Add realm-discover tool to identify a domain * Add proper DBus service files 0.1 * Initial release realmd-0.17.1/config.h.in0000644003225100322510000001325414315276773015423 0ustar00sbosesbose00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS /* The gettext domain name */ #undef GETTEXT_PACKAGE /* Disable glib assertions */ #undef G_DISABLE_ASSERT /* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework. */ #undef HAVE_CFLOCALECOPYCURRENT /* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework. */ #undef HAVE_CFPREFERENCESCOPYAPPVALUE /* Define if the GNU dcgettext() function is already present or preinstalled. */ #undef HAVE_DCGETTEXT /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define if you have the iconv() function and it works. */ #undef HAVE_ICONV /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_LDAP_H /* Define to 1 if you have the `lber' library (-llber). */ #undef HAVE_LIBLBER /* Define to 1 if you have the `ldap' library (-lldap). */ #undef HAVE_LIBLDAP /* Define to 1 if you have the header file. */ #undef HAVE_MINIX_CONFIG_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDIO_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to 1 if you have the header file. */ #undef HAVE_WCHAR_H /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if all of the C90 standard headers exist (not just the ones required in a freestanding environment). This macro is provided for backward compatibility; new code need not use it. */ #undef STDC_HEADERS /* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable general extensions on macOS. */ #ifndef _DARWIN_C_SOURCE # undef _DARWIN_C_SOURCE #endif /* Enable general extensions on Solaris. */ #ifndef __EXTENSIONS__ # undef __EXTENSIONS__ #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif /* Enable X/Open compliant socket functions that do not require linking with -lxnet on HP-UX 11.11. */ #ifndef _HPUX_ALT_XOPEN_SOCKET_API # undef _HPUX_ALT_XOPEN_SOCKET_API #endif /* Identify the host operating system as Minix. This macro does not affect the system headers' behavior. A future release of Autoconf may stop defining this macro. */ #ifndef _MINIX # undef _MINIX #endif /* Enable general extensions on NetBSD. Enable NetBSD compatibility extensions on Minix. */ #ifndef _NETBSD_SOURCE # undef _NETBSD_SOURCE #endif /* Enable OpenBSD compatibility extensions on NetBSD. Oddly enough, this does nothing on OpenBSD. */ #ifndef _OPENBSD_SOURCE # undef _OPENBSD_SOURCE #endif /* Define to 1 if needed for POSIX-compatible behavior. */ #ifndef _POSIX_SOURCE # undef _POSIX_SOURCE #endif /* Define to 2 if needed for POSIX-compatible behavior. */ #ifndef _POSIX_1_SOURCE # undef _POSIX_1_SOURCE #endif /* Enable POSIX-compatible threading on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif /* Enable extensions specified by ISO/IEC TS 18661-5:2014. */ #ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__ # undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__ #endif /* Enable extensions specified by ISO/IEC TS 18661-1:2014. */ #ifndef __STDC_WANT_IEC_60559_BFP_EXT__ # undef __STDC_WANT_IEC_60559_BFP_EXT__ #endif /* Enable extensions specified by ISO/IEC TS 18661-2:2015. */ #ifndef __STDC_WANT_IEC_60559_DFP_EXT__ # undef __STDC_WANT_IEC_60559_DFP_EXT__ #endif /* Enable extensions specified by ISO/IEC TS 18661-4:2015. */ #ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__ # undef __STDC_WANT_IEC_60559_FUNCS_EXT__ #endif /* Enable extensions specified by ISO/IEC TS 18661-3:2015. */ #ifndef __STDC_WANT_IEC_60559_TYPES_EXT__ # undef __STDC_WANT_IEC_60559_TYPES_EXT__ #endif /* Enable extensions specified by ISO/IEC TR 24731-2:2010. */ #ifndef __STDC_WANT_LIB_EXT2__ # undef __STDC_WANT_LIB_EXT2__ #endif /* Enable extensions specified by ISO/IEC 24747:2009. */ #ifndef __STDC_WANT_MATH_SPEC_FUNCS__ # undef __STDC_WANT_MATH_SPEC_FUNCS__ #endif /* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif /* Enable X/Open extensions. Define to 500 only if necessary to make mbstate_t available. */ #ifndef _XOPEN_SOURCE # undef _XOPEN_SOURCE #endif /* Vendor specific error message */ #undef VENDOR_MSG /* Version number of package */ #undef VERSION /* Print debug output */ #undef WITH_DEBUG /* Use systemd's journal */ #undef WITH_JOURNAL /* Use new command line options introduced with Samba-4.15 */ #undef WITH_NEW_SAMBA_CLI_OPTS /* In debug mode */ #undef _DEBUG realmd-0.17.1/Makefile.am0000664003225100322510000001177314216036521015423 0ustar00sbosesbose00000000000000NULL = ACLOCAL_AMFLAGS = -I build/m4 ${ACLOCAL_FLAGS} SUBDIRS = . po DISTCHECK_CONFIGURE_FLAGS = \ --enable-debug=yes \ --disable-coverage \ --disable-silent-rules \ --with-systemd-unit-dir=$(abs_srcdir)/$(top_distdir)/_inst/ \ --enable-doc dist-hook: dist-doc-hook @if test -d "$(srcdir)/.git"; \ then \ echo Creating ChangeLog && \ ( cd "$(top_srcdir)" && \ echo '# Generate automatically. Do not edit.'; echo; \ $(top_srcdir)/missing --run git log --stat --date=short ) > ChangeLog.tmp \ && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \ || ( rm -f ChangeLog.tmp ; \ echo Failed to generate ChangeLog >&2 ); \ else \ echo A git clone is required to generate a ChangeLog >&2; \ fi upload-release: $(DIST_ARCHIVES) gpg --detach-sign --local-user 'stef@thewalter.net' $(DIST_ARCHIVES) scp $(DIST_ARCHIVES) $(DIST_ARCHIVES).sig anarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/realmd/releases transifex: po/realmd.pot sh $(srcdir)/build/tx-update $< V_SED = $(V_SED_$(V)) V_SED_ = $(V_SED_$(AM_DEFAULT_VERBOSITY)) V_SED_0 = @echo " SED " $@; SED_SUBST = sed \ -e 's,[@]datadir[@],$(datadir),g' \ -e 's,[@]libexecdir[@],$(libexecdir),g' \ -e 's,[@]libdir[@],$(libdir),g' \ -e 's,[@]includedir[@],$(includedir),g' \ -e 's,[@]datarootdir[@],$(datarootdir),g' \ -e 's,[@]sysconfdir[@],$(sysconfdir),g' \ -e 's,[@]bindir[@],$(bindir),g' \ -e 's,[@]exec_prefix[@],$(exec_prefix),g' \ -e 's,[@]prefix[@],$(prefix),g' \ -e 's,[@]abs_srcdir[@],$(abs_srcdir),g' \ -e 's,[@]srcdir[@],$(srcdir),g' \ -e 's,[@]privatedir[@],$(privatedir),g' \ -e 's,[@]dbus_systemd_service[@],$(dbus_systemd_service),g' \ -e 's,[@]PACKAGE[@],$(PACKAGE),g' \ -e 's,[@]VERSION[@],$(VERSION),g' \ $(NULL) .service.in.service: $(V_SED) $(MKDIR_P) $(dir $@) && $(SED_SUBST) $< > $@ .conf.in.conf: $(V_SED) $(MKDIR_P) $(dir $@) && $(SED_SUBST) $< > $@ SUFFIXES = .conf .conf.in .service .service.in BUILT_SOURCES = DISTCLEANFILES = TESTS = check_PROGRAMS = man5_MANS = man8_MANS = noinst_LIBRARIES = noinst_PROGRAMS = private_PROGRAMS = private_DATA = sbin_PROGRAMS = libexec_PROGRAMS = CLEANFILES = $(BUILT_SOURCES) EXTRA_DIST = include dbus/Makefile.am include service/Makefile.am include tests/Makefile.am include tools/Makefile.am install-data-local: install-service install-doc @true uninstall-local: uninstall-service uninstall-doc @true clean-local: clean-doc find $(builddir) -name '*.gc??' -delete # ------------------------------------------------------------ # Docs # if ENABLE_DOC include doc/manual/Makefile.am include doc/internals/Makefile.am include doc/website/Makefile.am EXTRA_DIST += \ doc/version.xml.in \ doc/version.xml DISTCLEANFILES += \ doc/website/Makefile upload-website: website manual/index.html internals/realmd-internals.html rsync -Hvax manual/./ anarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/realmd/docs/./ rsync -Hvax internals/./ anarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/realmd/internals/./ rsync -Hvax --exclude docs --exclude internals --exclude releases \ html/* anarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/realmd/ dist-doc-hook: manual/index.html @mkdir $(distdir)/manual @cp ./manual/* $(distdir)/manual all-local: manual/index.html internals/realmd-internals.html clean-doc: @rm -rf *.tmp manual/ internals/ install-doc: $(MKDIR_P) $(DESTDIR)$(htmldir) $(INSTALL_DATA) $(builddir)/manual/* $(DESTDIR)$(htmldir) uninstall-doc: rm -rf $(DESTDIR)$(htmldir) distcheck-hook: @true else upload: @echo "*** doc must be enabled (and --enable-doc) in order to make upload" @false distcheck-hook: @echo "*** doc must be enabled (and --enable-doc) in order to make distcheck" @false dist-doc-hook: @echo "*** doc must be enabled (and --enable-doc) in order to make dist" @false clean-doc: @true install-doc: @true uninstall-doc: @true endif # ------------------------------------------------------------ # Testing # LOG_DRIVER = $(top_srcdir)/build/tap-driver LOG_COMPILER = sh -c '"$$0" "$$@" --tap' VALGRIND_ARGS = --trace-children=no --quiet --error-exitcode=33 \ --suppressions=valgrind-suppressions --gen-suppressions=all \ --num-callers=16 VALGRIND_SUPPRESSIONS = \ build/glib.supp \ $(NULL) valgrind-suppressions: $(VALGRIND_SUPPRESSIONS) $(AM_V_GEN) cat $^ > $@ check-memory: valgrind-suppressions $(MAKE) LOG_FLAGS="-- libtool --mode=execute valgrind $(VALGRIND_ARGS)" \ $(AM_MAKEFLAGS) check recheck-memory: valgrind-suppressions $(MAKE) LOG_FLAGS="-- libtool --mode=execute valgrind $(VALGRIND_ARGS)" \ $(AM_MAKEFLAGS) recheck EXTRA_DIST += \ $(LOG_DRIVER) \ $(VALGRIND_SUPPRESSIONS) \ $(NULL) if WITH_COVERAGE coverage: mkdir -p $(top_builddir)/build/coverage $(LCOV) --directory . --capture --output-file $(top_builddir)/build/coverage.info $(GENHTML) --output-directory $(top_builddir)/build/coverage $(top_builddir)/build/coverage.info $(LCOV) --directory . --zerocounters @echo "file://$(abs_top_builddir)/build/coverage/index.html" clear-coverage: $(LCOV) --directory . --zerocounters endif realmd-0.17.1/tests/0000755003225100322510000000000014315277002014517 5ustar00sbosesbose00000000000000realmd-0.17.1/tests/test-ini-config.c0000644003225100322510000005622214046520517017674 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "service/realm-samba-config.h" #include "service/realm-settings.h" #include #include typedef struct { RealmIniConfig *config; } Test; static void setup (Test *test, gconstpointer unused) { test->config = realm_ini_config_new (REALM_INI_NO_WATCH | REALM_INI_LINE_CONTINUATIONS); } static void teardown (Test *test, gconstpointer unused) { g_object_unref (test->config); } static void on_config_changed (RealmIniConfig *config, gpointer user_data) { gboolean *changed = user_data; *changed = TRUE; } static void test_read_one (Test *test, gconstpointer unused) { gboolean changed = FALSE; GError *error = NULL; gchar *value; gboolean ret; g_signal_connect (test->config, "changed", G_CALLBACK (on_config_changed), &changed); ret = realm_ini_config_read_file (test->config, TESTFILE_DIR "/smb-one.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert (changed == TRUE); value = realm_ini_config_get (test->config, "section", "one"); g_assert_cmpstr (value, ==, "uno"); g_free (value); value = realm_ini_config_get (test->config, "section", "two"); g_assert_cmpstr (value, ==, "dos"); g_free (value); value = realm_ini_config_get (test->config, "section", "three"); g_assert_cmpstr (value, ==, "three \tThree \tTHREE"); g_free (value); value = realm_ini_config_get (test->config, "section", "four"); g_assert_cmpstr (value, ==, "cuatro"); g_free (value); value = realm_ini_config_get (test->config, "section", "five"); g_assert_cmpstr (value, ==, "cinco"); g_free (value); value = realm_ini_config_get (test->config, "section", "six"); g_assert_cmpstr (value, ==, "seis"); g_free (value); /* Not present */ value = realm_ini_config_get (test->config, "section", "zero"); g_assert (value == NULL); /* Section header is broken */ value = realm_ini_config_get (test->config, "broken", "five"); g_assert (value == NULL); value = realm_ini_config_get (test->config, "another section", "ended here"); g_assert_cmpstr (value, ==, "last"); g_free (value); } static void test_read_all (Test *test, gconstpointer unused) { GError *error = NULL; GHashTable *parameters; gboolean ret; ret = realm_ini_config_read_file (test->config, TESTFILE_DIR "/smb-one.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); parameters = realm_ini_config_get_all (test->config, "section"); g_assert_cmpstr (g_hash_table_lookup (parameters, "one"), ==, "uno"); g_assert_cmpstr (g_hash_table_lookup (parameters, "two"), ==, "dos"); g_assert_cmpstr (g_hash_table_lookup (parameters, "three"), ==, "three \tThree \tTHREE"); g_assert_cmpstr (g_hash_table_lookup (parameters, "four"), ==, "cuatro"); g_assert_cmpstr (g_hash_table_lookup (parameters, "five"), ==, "cinco"); /* Section header is broken */ parameters = realm_ini_config_get_all (test->config, "broken"); g_assert (parameters == NULL); } static void test_read_carriage_return (Test *test, gconstpointer unused) { const gchar *data = "[section]\n1=one\r\n2=two"; GBytes *bytes; gchar *value; bytes = g_bytes_new_static (data, strlen (data)); realm_ini_config_read_bytes (test->config, bytes); g_bytes_unref (bytes); value = realm_ini_config_get (test->config, "section", "1"); g_assert_cmpstr (value, ==, "one"); g_free (value); value = realm_ini_config_get (test->config, "section", "2"); g_assert_cmpstr (value, ==, "two"); } static void test_read_string (Test *test, gconstpointer unused) { const gchar *data = "[section]\n1=one\n2=two"; gchar *value; realm_ini_config_read_string (test->config, data); value = realm_ini_config_get (test->config, "section", "1"); g_assert_cmpstr (value, ==, "one"); g_free (value); value = realm_ini_config_get (test->config, "section", "2"); g_assert_cmpstr (value, ==, "two"); } static void test_write_exact (Test *test, gconstpointer unused) { GError *error = NULL; gchar *contents; gsize length; const gchar *output; gsize written; GBytes *bytes; g_file_get_contents (TESTFILE_DIR "/smb-one.conf", &contents, &length, &error); g_assert_no_error (error); bytes = g_bytes_new (contents, length); realm_ini_config_read_bytes (test->config, bytes); g_bytes_unref (bytes); bytes = realm_ini_config_write_bytes (test->config); output = g_bytes_get_data (bytes, &written); g_assert_cmpuint (length, ==, written); g_assert (memcmp (contents, output, length) == 0); g_bytes_unref (bytes); g_free (contents); } static void test_write_file (Test *test, gconstpointer unused) { GError *error = NULL; gchar *contents; gsize length; gchar *output; gsize written; GBytes *bytes; gboolean ret; g_file_get_contents (TESTFILE_DIR "/smb-one.conf", &contents, &length, &error); g_assert_no_error (error); bytes = g_bytes_new (contents, length); realm_ini_config_read_bytes (test->config, bytes); g_bytes_unref (bytes); ret = realm_ini_config_write_file (test->config, "/tmp/test-samba-config.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); g_file_get_contents (TESTFILE_DIR "/smb-one.conf", &output, &written, &error); g_assert_no_error (error); g_assert_cmpuint (length, ==, written); g_assert (memcmp (contents, output, length) == 0); g_free (contents); g_free (output); } static void test_write_empty_no_create (Test *test, gconstpointer unused) { GError *error = NULL; gboolean ret; ret = realm_ini_config_write_file (test->config, "/non-existant", &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert (!g_file_test ("/non-existant", G_FILE_TEST_EXISTS)); } static void test_file_not_exist (Test *test, gconstpointer unused) { GError *error = NULL; gboolean ret; ret = realm_ini_config_read_file (test->config, "/non-existant", &error); g_assert_no_error (error); g_assert (ret == TRUE); } static gboolean on_timeout_quit_loop (gpointer user_data) { g_main_loop_quit (user_data); return FALSE; /* don't call again */ } static void test_file_watch (Test *test, gconstpointer unused) { const gchar *data = "[section]\nkey=12345"; const gchar *filename = "/tmp/test-samba-config.watch"; gboolean changed = FALSE; GError *error = NULL; GMainLoop *loop; gchar *value; gboolean ret; g_unlink (filename); ret = realm_ini_config_read_file (test->config, filename, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_signal_connect (test->config, "changed", G_CALLBACK (on_config_changed), &changed); value = realm_ini_config_get (test->config, "section", "key"); g_assert (value == NULL); /* Now write to the file */ g_file_set_contents (filename, data, -1, &error); g_assert_no_error (error); /* Wait a couple seconds */ loop = g_main_loop_new (NULL, FALSE); g_timeout_add_seconds (2, on_timeout_quit_loop, loop); g_main_loop_run (loop); g_main_loop_unref (loop); g_assert (changed == TRUE); value = realm_ini_config_get (test->config, "section", "key"); g_assert_cmpstr (value, ==, "12345"); g_free (value); } static void test_set (Test *test, gconstpointer unused) { const gchar *data = "[section]\n\t1= one\r\n2=two\n3=three"; const gchar *check = "[section]\n1 = the number one\n2=two\n4 = four\n"; gboolean changed = FALSE; gchar *output; realm_ini_config_read_string (test->config, data); g_signal_connect (test->config, "changed", G_CALLBACK (on_config_changed), &changed); realm_ini_config_set (test->config, "section", "1", "the number one", NULL); realm_ini_config_set (test->config, "section", "3", NULL, "4", "four", NULL); g_assert (changed == TRUE); output = realm_ini_config_write_string (test->config); g_assert_cmpstr (check, ==, output); g_free (output); } static void test_set_middle (Test *test, gconstpointer unused) { const gchar *data = "[section]\n1=one\n2=two\n\n[another]\n4=four"; const gchar *check = "[section]\n1=one\n2=two\n3 = three\n\n[another]\n4=four"; gchar *output; realm_ini_config_read_string (test->config, data); realm_ini_config_set (test->config, "section", "3", "three", NULL); output = realm_ini_config_write_string (test->config); g_assert_cmpstr (check, ==, output); g_free (output); } static void test_set_and_get (Test *test, gconstpointer unused) { const gchar *data = "[section]\n1=one\n2=two\n\n[another]\n4=four"; gchar *output; realm_ini_config_read_string (test->config, data); realm_ini_config_set (test->config, "section", "3", "three", NULL); output = realm_ini_config_get (test->config, "section", "3"); g_assert_cmpstr (output, ==, "three"); g_free (output); } static void test_have (Test *test, gconstpointer unused) { const gchar *data = "[section]\n\t1= one\r\n2=two\n3=three"; realm_ini_config_read_string (test->config, data); g_assert_cmpint (realm_ini_config_have (test->config, "section", "1"), ==, TRUE); g_assert_cmpint (realm_ini_config_have (test->config, "section", "not there"), ==, FALSE); g_assert_cmpint (realm_ini_config_have (test->config, "invalid", "2"), ==, FALSE); } static void test_set_section (Test *test, gconstpointer unused) { const gchar *data = "[section]\n1=one\n2=two"; const gchar *check = "[section]\n1=one\n2=two\n\n[happy]\n4 = four\n"; gchar *output; realm_ini_config_read_string (test->config, data); realm_ini_config_set (test->config, "happy", "4", "four", NULL); realm_ini_config_set (test->config, "nope", "6", NULL, NULL); output = realm_ini_config_write_string (test->config); g_assert_cmpstr (check, ==, output); g_free (output); } static void test_set_all (Test *test, gconstpointer unused) { const gchar *data = "[section]\n\t1= one\r\n2=two\n3=three"; const gchar *check = "[section]\n1 = the number one\n2=two\n4 = four\n"; gboolean changed = FALSE; gchar *output; GHashTable *parameters; realm_ini_config_read_string (test->config, data); g_signal_connect (test->config, "changed", G_CALLBACK (on_config_changed), &changed); parameters = g_hash_table_new (g_str_hash, g_str_equal); g_hash_table_insert (parameters, "1", "the number one"); g_hash_table_insert (parameters, "3", NULL); g_hash_table_insert (parameters, "4", "four"); realm_ini_config_set_all (test->config, "section", parameters); g_hash_table_unref (parameters); g_assert (changed == TRUE); output = realm_ini_config_write_string (test->config); g_assert_cmpstr (check, ==, output); g_free (output); } static void test_get_sections (Test *test, gconstpointer unused) { const gchar *data = "[section]\n\t1= one\r\n2=two\n3=three\n[section2]\n[three]"; gchar **sections; realm_ini_config_read_string (test->config, data); sections = realm_ini_config_get_sections (test->config); g_assert (sections != NULL); g_assert_cmpint (g_strv_length (sections), ==, 3); g_strfreev (sections); } static void test_have_section (Test *test, gconstpointer unused) { const gchar *data = "[section]\n\t1= one\r\n2=two\n3=three"; realm_ini_config_read_string (test->config, data); g_assert (realm_ini_config_have_section (test->config, "section") == TRUE); g_assert (realm_ini_config_have_section (test->config, "nonexistant") == FALSE); } static void test_remove_section_first (Test *test, gconstpointer unused) { const gchar *data = "[first]\nblah=blue\n#A\n[section]\n\t1=I\n#B\n2=II\n#C\n[after]\n2=two"; const gchar *check = "#A\n[section]\n\t1=I\n#B\n2=II\n#C\n[after]\n2=two"; gchar *output; realm_ini_config_read_string (test->config, data); realm_ini_config_remove_section (test->config, "first"); output = realm_ini_config_write_string (test->config); g_assert_cmpstr (check, ==, output); g_free (output); } static void test_remove_section_middle (Test *test, gconstpointer unused) { const gchar *data = "[first]\nblah=blue\n#A\n[section]\n\t1=I\n#B\n2=II\n#C\n[after]\n2=two"; const gchar *check = "[first]\nblah=blue\n#A\n#C\n[after]\n2=two"; gchar *output; realm_ini_config_read_string (test->config, data); realm_ini_config_remove_section (test->config, "section"); output = realm_ini_config_write_string (test->config); g_assert_cmpstr (check, ==, output); g_free (output); } static void test_remove_section_last (Test *test, gconstpointer unused) { const gchar *data = "[first]\nblah=blue\n#A\n[section]\n\t1=I\n#B\n2=II\n#C\n[after]\n2=two"; const gchar *check = "[first]\nblah=blue\n#A\n[section]\n\t1=I\n#B\n2=II\n#C\n"; gchar *output; realm_ini_config_read_string (test->config, data); realm_ini_config_remove_section (test->config, "after"); output = realm_ini_config_write_string (test->config); g_assert_cmpstr (check, ==, output); g_free (output); } static void test_remove_section_all (Test *test, gconstpointer unused) { const gchar *data = "#A\n[section]\n\t1=I\n#B\n2=II\n#C\n"; const gchar *check = "#A\n#C\n"; gchar *output; realm_ini_config_read_string (test->config, data); realm_ini_config_remove_section (test->config, "section"); output = realm_ini_config_write_string (test->config); g_assert_cmpstr (check, ==, output); g_free (output); } static void test_remove_section_not_exist (Test *test, gconstpointer unused) { const gchar *data = "[first]\nblah=blue\n# Comment\n[section]\n\t1=I\n#C\n2=II\n# Comment\n[after]\n2=two"; gchar *output; realm_ini_config_read_string (test->config, data); realm_ini_config_remove_section (test->config, "nonexistant"); output = realm_ini_config_write_string (test->config); g_assert_cmpstr (data, ==, output); g_free (output); } static void test_change (Test *test, gconstpointer unused) { const gchar *data = "[section]\n\t1= one\r\n2=two\n3=three"; const gchar *check = "[section]\n1 = the number one\n2=two\n4 = four\n"; GError *error = NULL; gchar *output; /* Setup this file as the system smb.conf */ g_file_set_contents ("/tmp/test-samba-config.conf", data, -1, &error); g_assert_no_error (error); realm_ini_config_set_filename (test->config, "/tmp/test-samba-config.conf"); realm_ini_config_change (test->config, "section", &error, "1", "the number one", "3", NULL, "4", "four", NULL); g_assert_no_error (error); g_file_get_contents ("/tmp/test-samba-config.conf", &output, NULL, &error); g_assert_no_error (error); g_assert_cmpstr (output, ==, check); g_free (output); } static void test_change_list (Test *test, gconstpointer unused) { const gchar *data = "[section]\n\t1= one\n2=two, dos,zwei ,duo\n3=three"; const gchar *check = "[section]\n\t1= one\n2 = dos, zwei, 10\n3=three"; const gchar *remove[] = { "two", "duo", NULL }; const gchar *add[] = { "TWO", "10", NULL }; GError *error = NULL; gchar *output; /* Setup this file as the system smb.conf */ g_file_set_contents ("/tmp/test-samba-config.conf", data, -1, &error); g_assert_no_error (error); realm_ini_config_set_filename (test->config, "/tmp/test-samba-config.conf"); realm_ini_config_change_list (test->config, "section", "2", ",", add, remove, &error); g_assert_no_error (error); g_file_get_contents ("/tmp/test-samba-config.conf", &output, NULL, &error); g_assert_no_error (error); g_assert_cmpstr (output, ==, check); g_free (output); } static void test_change_list_new (Test *test, gconstpointer unused) { const gchar *data = "[section]\n\t1= one\n3=three"; const gchar *check = "[section]\n\t1= one\n3=three\n2 = dos, zwei, 10\n"; const gchar **remove = NULL; const gchar *add[] = { "dos", "zwei", "10", NULL }; GError *error = NULL; gchar *output; /* Setup this file as the system smb.conf */ realm_settings_add ("paths", "smb.conf", "/tmp/test-samba-config.conf"); g_file_set_contents ("/tmp/test-samba-config.conf", data, -1, &error); g_assert_no_error (error); realm_ini_config_set_filename (test->config, "/tmp/test-samba-config.conf"); realm_ini_config_change_list (test->config, "section", "2", ",", add, remove, &error); g_assert_no_error (error); g_file_get_contents ("/tmp/test-samba-config.conf", &output, NULL, &error); g_assert_no_error (error); g_assert_cmpstr (output, ==, check); g_free (output); } static void test_change_list_null_add (Test *test, gconstpointer unused) { const gchar *data = "[section]\n\t1= one\n2=two, dos,zwei ,duo\n3=three"; const gchar *check = "[section]\n\t1= one\n2 = dos, zwei\n3=three"; const gchar *remove[] = { "two", "duo", NULL }; const gchar **add = NULL; GError *error = NULL; gchar *output; /* Setup this file as the system smb.conf */ realm_settings_add ("paths", "smb.conf", "/tmp/test-samba-config.conf"); g_file_set_contents ("/tmp/test-samba-config.conf", data, -1, &error); g_assert_no_error (error); realm_ini_config_set_filename (test->config, "/tmp/test-samba-config.conf"); realm_ini_config_change_list (test->config, "section", "2", ",", add, remove, &error); g_assert_no_error (error); g_file_get_contents ("/tmp/test-samba-config.conf", &output, NULL, &error); g_assert_no_error (error); g_assert_cmpstr (output, ==, check); g_free (output); } static void test_change_list_null_remove (Test *test, gconstpointer unused) { const gchar *data = "[section]\n\t1= one\n2=two, dos,zwei ,duo\n3=three"; const gchar *check = "[section]\n\t1= one\n2 = two, dos, zwei, duo, 10\n3=three"; const gchar **remove = NULL; const gchar *add[] = { "TWO", "10", NULL }; GError *error = NULL; gchar *output; /* Setup this file as the system smb.conf */ realm_settings_add ("paths", "smb.conf", "/tmp/test-samba-config.conf"); g_file_set_contents ("/tmp/test-samba-config.conf", data, -1, &error); g_assert_no_error (error); realm_ini_config_set_filename (test->config, "/tmp/test-samba-config.conf"); realm_ini_config_change_list (test->config, "section", "2", ",", add, remove, &error); g_assert_no_error (error); g_file_get_contents ("/tmp/test-samba-config.conf", &output, NULL, &error); g_assert_no_error (error); g_assert_cmpstr (output, ==, check); g_free (output); } static void test_get_boolean (void) { RealmIniConfig *config; config = realm_ini_config_new (0); realm_ini_config_read_string (config, "[section]\nboolean = true"); g_assert_cmpint (TRUE, ==, realm_ini_config_get_boolean (config, "section", "boolean", FALSE)); realm_ini_config_read_string (config, "[section]\nboolean = FalSE"); g_assert_cmpint (FALSE, ==, realm_ini_config_get_boolean (config, "section", "boolean", TRUE)); realm_ini_config_read_string (config, "[section]\nboolean = false"); g_assert_cmpint (FALSE, ==, realm_ini_config_get_boolean (config, "section", "boolean", TRUE)); realm_ini_config_read_string (config, "[section]\nboolean = false"); g_assert_cmpint (TRUE, ==, realm_ini_config_get_boolean (config, "section", "non-existant", TRUE)); realm_ini_config_read_string (config, "[section]\nboolean = false"); g_assert_cmpint (TRUE, ==, realm_ini_config_get_boolean (config, "section", "non-existant", TRUE)); realm_ini_config_read_string (config, "[section]\nboolean = yes"); g_assert_cmpint (TRUE, ==, realm_ini_config_get_boolean (config, "section", "boolean", TRUE)); realm_ini_config_read_string (config, "[section]\nboolean = no"); g_assert_cmpint (FALSE, ==, realm_ini_config_get_boolean (config, "section", "boolean", FALSE)); realm_ini_config_read_string (config, "[section]\nboolean = 1"); g_assert_cmpint (TRUE, ==, realm_ini_config_get_boolean (config, "section", "boolean", TRUE)); realm_ini_config_read_string (config, "[section]\nboolean = 0"); g_assert_cmpint (FALSE, ==, realm_ini_config_get_boolean (config, "section", "boolean", FALSE)); g_object_unref (config); } int main (int argc, char **argv) { #if !GLIB_CHECK_VERSION(2, 36, 0) g_type_init (); #endif g_test_init (&argc, &argv, NULL); g_set_prgname ("test-ini-config"); realm_settings_init (); g_test_add ("/realmd/ini-config/read-one", Test, NULL, setup, test_read_one, teardown); g_test_add ("/realmd/ini-config/read-all", Test, NULL, setup, test_read_all, teardown); g_test_add ("/realmd/ini-config/read-string", Test, NULL, setup, test_read_string, teardown); g_test_add ("/realmd/ini-config/read-carriage-return", Test, NULL, setup, test_read_carriage_return, teardown); g_test_add ("/realmd/ini-config/write-exact", Test, NULL, setup, test_write_exact, teardown); g_test_add ("/realmd/ini-config/write-file", Test, NULL, setup, test_write_file, teardown); g_test_add ("/realmd/ini-config/write-empty-no-create", Test, NULL, setup, test_write_empty_no_create, teardown); g_test_add ("/realmd/ini-config/have", Test, NULL, setup, test_have, teardown); g_test_add ("/realmd/ini-config/set", Test, NULL, setup, test_set, teardown); g_test_add ("/realmd/ini-config/set-middle", Test, NULL, setup, test_set_middle, teardown); g_test_add ("/realmd/ini-config/set-and-get", Test, NULL, setup, test_set_and_get, teardown); g_test_add ("/realmd/ini-config/set-section", Test, NULL, setup, test_set_section, teardown); g_test_add ("/realmd/ini-config/set-all", Test, NULL, setup, test_set_all, teardown); g_test_add ("/realmd/ini-config/get-sections", Test, NULL, setup, test_get_sections, teardown); g_test_add ("/realmd/ini-config/have-section", Test, NULL, setup, test_have_section, teardown); g_test_add ("/realmd/ini-config/remove-section-first", Test, NULL, setup, test_remove_section_first, teardown); g_test_add ("/realmd/ini-config/remove-section-middle", Test, NULL, setup, test_remove_section_middle, teardown); g_test_add ("/realmd/ini-config/remove-section-last", Test, NULL, setup, test_remove_section_last, teardown); g_test_add ("/realmd/ini-config/remove-section-all", Test, NULL, setup, test_remove_section_all, teardown); g_test_add ("/realmd/ini-config/remove-section-not-exist", Test, NULL, setup, test_remove_section_not_exist, teardown); g_test_add ("/realmd/ini-config/file-not-exist", Test, NULL, setup, test_file_not_exist, teardown); if (!g_test_quick ()) g_test_add ("/realmd/ini-config/file-watch", Test, NULL, setup, test_file_watch, teardown); g_test_add ("/realmd/ini-config/change", Test, NULL, setup, test_change, teardown); g_test_add ("/realmd/ini-config/change-list", Test, NULL, setup, test_change_list, teardown); g_test_add ("/realmd/ini-config/change-list-new", Test, NULL, setup, test_change_list_new, teardown); g_test_add ("/realmd/ini-config/change-list-null-add", Test, NULL, setup, test_change_list_null_add, teardown); g_test_add ("/realmd/ini-config/change-list-null-remove", Test, NULL, setup, test_change_list_null_remove, teardown); g_test_add_func ("/realmd/ini-config/get-boolean", test_get_boolean); return g_test_run (); } realmd-0.17.1/tests/test-sssd-config.c0000644003225100322510000003007414046520517020066 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "service/realm-settings.h" #include "service/realm-sssd-config.h" #include #include typedef struct { RealmIniConfig *config; } Test; static void setup (Test *test, gconstpointer unused) { test->config = realm_ini_config_new (REALM_INI_NO_WATCH); } static void teardown (Test *test, gconstpointer unused) { g_object_unref (test->config); } static void test_get_domains (Test *test, gconstpointer unused) { const gchar *data = "[domain/one]\nval=1\n[domain/two]\nval=2\n[domain/three]\nval=3\n[sssd]\ndomains=one, two"; gchar **domains; realm_ini_config_read_string (test->config, data); domains = realm_sssd_config_get_domains (test->config); g_assert (domains != NULL); g_assert_cmpstr (domains[0], ==, "one"); g_assert_cmpstr (domains[1], ==, "two"); g_assert (domains[2] == NULL); g_strfreev (domains); } static void test_domain_section (Test *test, gconstpointer unused) { gchar *section; section = realm_sssd_config_domain_to_section ("domain"); g_assert_cmpstr (section, ==, "domain/domain"); g_free (section); section = realm_sssd_config_domain_to_section ("Another"); g_assert_cmpstr (section, ==, "domain/Another"); g_free (section); } static void test_have_domain (Test *test, gconstpointer unused) { const gchar *data = "[domain/one]\nval=1\n[domain/two]\nval=2\n[domain/three]\nval=3\n[sssd]\ndomains=one, two"; realm_ini_config_read_string (test->config, data); g_assert (realm_sssd_config_have_domain (test->config, "one") == TRUE); g_assert (realm_sssd_config_have_domain (test->config, "two") == TRUE); g_assert (realm_sssd_config_have_domain (test->config, "three") == FALSE); g_assert (realm_sssd_config_have_domain (test->config, "non-existant") == FALSE); } static void test_add_domain (Test *test, gconstpointer unused) { const gchar *data = "[domain/one]\nval=1\n[sssd]\ndomains=one"; const gchar *check = "[domain/one]\nval=1\n[sssd]\ndomains = one, two\nconfig_file_version = 2\nservices = nss, pam\n\n[domain/two]\ndos = 2\n"; GError *error = NULL; gchar *output; gboolean ret; realm_ini_config_read_string (test->config, data); ret = realm_ini_config_write_file (test->config, "/tmp/test-sssd.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert (realm_sssd_config_have_domain (test->config, "one") == TRUE); ret = realm_sssd_config_add_domain (test->config, "two", &error, "dos", "2", NULL); g_assert_no_error (error); g_assert (ret == TRUE); ret = g_file_get_contents ("/tmp/test-sssd.conf", &output, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert_cmpstr (check, ==, output); g_free (output); } static void test_add_domain_already (Test *test, gconstpointer unused) { const gchar *data = "[domain/one]\nval=1\n[sssd]\ndomains=one"; GError *error = NULL; gboolean ret; realm_ini_config_read_string (test->config, data); ret = realm_ini_config_write_file (test->config, "/tmp/test-sssd.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); ret = realm_sssd_config_add_domain (test->config, "one", &error, "uno", "1", NULL); g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_EXIST); g_assert (ret == FALSE); } static void test_add_domain_only (Test *test, gconstpointer unused) { const gchar *check = "\n[sssd]\ndomains = two\nconfig_file_version = 2\nservices = nss, pam\n\n[domain/two]\ndos = 2\n"; GError *error = NULL; gchar *output; gboolean ret; ret = realm_ini_config_write_file (test->config, "/tmp/test-sssd.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); ret = realm_sssd_config_add_domain (test->config, "two", &error, "dos", "2", NULL); g_assert_no_error (error); g_assert (ret == TRUE); ret = g_file_get_contents ("/tmp/test-sssd.conf", &output, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert_cmpstr (check, ==, output); g_free (output); } static void check_for_test_update_domain (char *new) { char *token; char *saveptr; size_t c; int result = 0; token = strtok_r (new, "\n", &saveptr); g_assert_nonnull (token); g_assert_cmpstr (token, ==, "[domain/one]"); for (c = 0; c < 3; c++) { token = strtok_r (NULL, "\n", &saveptr); g_assert_nonnull (token); if (strcmp (token, "val=1") == 0) { result += 1; } else if (strcmp (token, "uno = 1") == 0) { result += 2; } else if (strcmp (token, "eins = one") == 0) { result += 4; } else { g_assert_not_reached (); } } g_assert_cmpint (result, ==, 7); token = strtok_r (NULL, "\n", &saveptr); g_assert_nonnull (token); g_assert_cmpstr (token, ==, "[sssd]"); token = strtok_r (NULL, "\n", &saveptr); g_assert_nonnull (token); g_assert_cmpstr (token, ==, "domains=one"); token = strtok_r (NULL, "\n", &saveptr); g_assert_null (token); } static void test_update_domain (Test *test, gconstpointer unused) { const gchar *data = "[domain/one]\nval=1\n[sssd]\ndomains=one"; GError *error = NULL; gchar *output; gboolean ret; realm_ini_config_read_string (test->config, data); ret = realm_ini_config_write_file (test->config, "/tmp/test-sssd.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert (realm_sssd_config_have_domain (test->config, "one") == TRUE); ret = realm_sssd_config_update_domain (test->config, "one", &error, "uno", "1", "eins", "one", NULL); g_assert_no_error (error); g_assert (ret == TRUE); ret = g_file_get_contents ("/tmp/test-sssd.conf", &output, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); check_for_test_update_domain (output); g_free (output); } static void test_update_domain_missing (Test *test, gconstpointer unused) { const gchar *data = "[domain/one]\nval=1\n[sssd]\ndomains=one"; GError *error = NULL; gboolean ret; realm_ini_config_read_string (test->config, data); ret = realm_ini_config_write_file (test->config, "/tmp/test-sssd.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert (realm_sssd_config_have_domain (test->config, "another") == FALSE); ret = realm_sssd_config_update_domain (test->config, "another", &error, "uno", "1", "eins", "one", NULL); g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_NOENT); g_assert (ret == FALSE); } static void test_remove_domain (Test *test, gconstpointer unused) { const gchar *data = "[domain/one]\nval=1\n[sssd]\ndomains=one, two\n[domain/two]\ndos=2\n"; const gchar *check = "[sssd]\ndomains = two\n[domain/two]\ndos=2\n"; GError *error = NULL; gchar *output; gboolean ret; realm_ini_config_read_string (test->config, data); ret = realm_ini_config_write_file (test->config, "/tmp/test-sssd.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); ret = realm_sssd_config_remove_domain (test->config, "one", &error); g_assert_no_error (error); g_assert (ret == TRUE); ret = g_file_get_contents ("/tmp/test-sssd.conf", &output, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert_cmpstr (check, ==, output); g_free (output); } static void test_remove_domain_not_exist (Test *test, gconstpointer unused) { const gchar *data = "[domain/one]\nval=1\n[sssd]\ndomains = two\n[domain/two]\ndos=2\n"; GError *error = NULL; gchar *output; gboolean ret; realm_ini_config_read_string (test->config, data); ret = realm_ini_config_write_file (test->config, "/tmp/test-sssd.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); ret = realm_sssd_config_remove_domain (test->config, "nonexistant", &error); g_assert_no_error (error); g_assert (ret == TRUE); ret = g_file_get_contents ("/tmp/test-sssd.conf", &output, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert_cmpstr (data, ==, output); g_free (output); } static void test_remove_domain_only (Test *test, gconstpointer unused) { const gchar *data = "[sssd]\ndomains = two\n[domain/two]\ndos=2\n"; const gchar *check = "[sssd]\ndomains = \n"; GError *error = NULL; gchar *output; gboolean ret; realm_ini_config_read_string (test->config, data); ret = realm_ini_config_write_file (test->config, "/tmp/test-sssd.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); ret = realm_sssd_config_remove_domain (test->config, "two", &error); g_assert_no_error (error); g_assert (ret == TRUE); ret = realm_ini_config_write_file (test->config, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); ret = g_file_get_contents ("/tmp/test-sssd.conf", &output, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert_cmpstr (check, ==, output); g_free (output); } static void test_remove_and_add_domain (Test *test, gconstpointer unused) { const gchar *data = "[domain/one]\nval = 1\n\n[nss]\ndefault_shell = /bin/bash\n\n[sssd]\ndomains = one, two\nconfig_file_version = 2\nservices = nss, pam\n\n[domain/two]\nval = 2\n"; GError *error = NULL; gchar *output; gboolean ret; realm_ini_config_read_string (test->config, data); ret = realm_ini_config_write_file (test->config, "/tmp/test-sssd.conf", &error); g_assert_no_error (error); g_assert (ret == TRUE); ret = realm_sssd_config_remove_domain (test->config, "two", &error); g_assert_no_error (error); g_assert (ret == TRUE); ret = realm_sssd_config_add_domain (test->config, "two", &error, "val", "2", NULL); g_assert_no_error (error); g_assert (ret == TRUE); ret = g_file_get_contents ("/tmp/test-sssd.conf", &output, NULL, &error); g_assert_no_error (error); g_assert (ret == TRUE); g_assert_cmpstr (output, ==, data); g_free (output); } int main (int argc, char **argv) { #if !GLIB_CHECK_VERSION(2, 36, 0) g_type_init (); #endif g_test_init (&argc, &argv, NULL); g_set_prgname ("test-sssd-config"); realm_settings_init (); g_test_add ("/realmd/sssd-config/get-domains", Test, NULL, setup, test_get_domains, teardown); g_test_add ("/realmd/sssd-config/domain-section", Test, NULL, setup, test_domain_section, teardown); g_test_add ("/realmd/sssd-config/have-domain", Test, NULL, setup, test_have_domain, teardown); g_test_add ("/realmd/sssd-config/add-domain", Test, NULL, setup, test_add_domain, teardown); g_test_add ("/realmd/sssd-config/add-domain-already", Test, NULL, setup, test_add_domain_already, teardown); g_test_add ("/realmd/sssd-config/add-domain-only", Test, NULL, setup, test_add_domain_only, teardown); g_test_add ("/realmd/sssd-config/update-domain", Test, NULL, setup, test_update_domain, teardown); g_test_add ("/realmd/sssd-config/update-domain-missing", Test, NULL, setup, test_update_domain_missing, teardown); g_test_add ("/realmd/sssd-config/remove-domain", Test, NULL, setup, test_remove_domain, teardown); g_test_add ("/realmd/sssd-config/remove-domain-not-exist", Test, NULL, setup, test_remove_domain_not_exist, teardown); g_test_add ("/realmd/sssd-config/remove-domain-only", Test, NULL, setup, test_remove_domain_only, teardown); g_test_add ("/realmd/sssd-config/remove-and-add-domain", Test, NULL, setup, test_remove_and_add_domain, teardown); return g_test_run (); } realmd-0.17.1/tests/frob-install-packages.c0000644003225100322510000000553314046520517021044 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "service/realm-packages.h" #include "service/realm-daemon.h" #include "service/realm-diagnostics.h" #include "service/realm-invocation.h" #include "service/realm-options.h" #include "service/realm-settings.h" #include static GMainLoop *loop; static void on_ready_get_result (GObject *source, GAsyncResult *result, gpointer user_data) { GAsyncResult **place = (GAsyncResult **)user_data; *place = g_object_ref (result); g_main_loop_quit (loop); } static gint test_install (const gchar **package_sets) { GDBusConnection *connection; GAsyncResult *result = NULL; GError *error = NULL; connection = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error); if (connection == NULL) { g_message ("Couldn't open DBus connection: %s", error->message); g_clear_error (&error); return 1; } realm_packages_install_async (package_sets, NULL, connection, on_ready_get_result, &result); g_object_unref (connection); g_main_loop_run (loop); realm_packages_install_finish (result, &error); g_object_unref (result); if (error != NULL) { g_message ("Couldn't install packages: %s", error->message); g_clear_error (&error); return 1; } return 0; } int main(int argc, char *argv[]) { const gchar *package_sets[] = { "sssd", "samba", "adcli", NULL }; #if !GLIB_CHECK_VERSION(2, 36, 0) g_type_init (); #endif realm_settings_init (); loop = g_main_loop_new (NULL, FALSE); test_install (package_sets); g_main_loop_unref (loop); return 0; } /* Dummy functions */ GCancellable * realm_invocation_get_cancellable (GDBusMethodInvocation *invocation) { return g_cancellable_new (); } const gchar * realm_invocation_get_operation (GDBusMethodInvocation *invocation) { return NULL; } gboolean realm_daemon_is_install_mode (void) { return FALSE; } void realm_diagnostics_info (GDBusMethodInvocation *invocation, const gchar *format, ...) { va_list va; va_start (va, format); vfprintf (stderr, format, va); fputc ('\n', stderr); va_end (va); } void realm_diagnostics_error (GDBusMethodInvocation *invocation, GError *unused, const gchar *format, ...) { va_list va; va_start (va, format); vfprintf (stderr, format, va); fputc ('\n', stderr); va_end (va); } gboolean realm_options_automatic_install (void) { return TRUE; } realmd-0.17.1/tests/test-settings.c0000644003225100322510000000763714046520517017520 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2013 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Marius Vollmer */ #include "config.h" #include "service/realm-settings.h" #include #include #include static void write_config (const char *contents) { GError *error = NULL; int ret; ret = g_mkdir_with_parents ("/tmp/realmd-etc", 0700); g_assert (ret >= 0); g_file_set_contents ("/tmp/realmd-etc/realmd.conf", contents, -1, &error); g_assert_no_error (error); } typedef struct { GLogLevelFlags old_fatals; int n_criticals; } Test; static void log_counter (const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data) { Test *test = user_data; if ((log_level & G_LOG_LEVEL_MASK) == G_LOG_LEVEL_CRITICAL) test->n_criticals += 1; } static void setup (Test *test, gconstpointer unused) { test->n_criticals = 0; g_log_set_default_handler (log_counter, test); test->old_fatals = g_log_set_always_fatal (0); } static void teardown (Test *test, gconstpointer unused) { g_log_set_default_handler (g_log_default_handler, NULL); g_log_set_always_fatal (test->old_fatals); } static void test_string (Test *test, gconstpointer unused) { const gchar *value; write_config ("[one]\n" "key = value\n"); realm_settings_init (); value = realm_settings_string ("one", "key"); g_assert_cmpstr (value, ==, "value"); realm_settings_uninit (); } static void test_boolean (Test *test, gconstpointer unused) { gboolean value; write_config ("[one]\n" "true-1 = yes\n" "true-2 = 1\n" "true-3 = true\n" "true-4 = TRUE\n" "true-5 = Yes\n" "false-1 = no\n" "false-2 = 0\n" "false-3 = false\n" "false-4 = nope\n"); #define ASSERT_TRUE(n) \ value = realm_settings_boolean ("one", n, FALSE); \ g_assert_cmpint (value, ==, TRUE); #define ASSERT_FALSE(n) \ value = realm_settings_boolean ("one", n, TRUE); \ g_assert_cmpint (value, ==, FALSE); realm_settings_init (); ASSERT_TRUE("true-1"); ASSERT_TRUE("true-2"); ASSERT_TRUE("true-3"); ASSERT_TRUE("true-4"); ASSERT_TRUE("true-5"); ASSERT_FALSE("false-1"); ASSERT_FALSE("false-2"); ASSERT_FALSE("false-3"); ASSERT_FALSE("false-4"); value = realm_settings_boolean ("one", "invalid", TRUE); g_assert_cmpint (value, ==, TRUE); value = realm_settings_boolean ("one", "invalid", FALSE); g_assert_cmpint (value, ==, FALSE); realm_settings_uninit (); } static void test_double (Test *test, gconstpointer unused) { gdouble value; write_config ("[one]\n" "key = 1234.0\n" "malformed = abc\n"); realm_settings_init (); value = realm_settings_double ("one", "key", 0.0); g_assert_cmpfloat (value, ==, 1234.0); value = realm_settings_double ("one", "non-existing", 5678.0); g_assert_cmpfloat (value, ==, 5678.0); value = realm_settings_double ("one", "malformed", 1212.0); g_assert_cmpfloat (value, ==, 1212.0); g_assert_cmpint (test->n_criticals, ==, 1); realm_settings_uninit (); } int main (int argc, char **argv) { #if !GLIB_CHECK_VERSION(2, 36, 0) g_type_init (); #endif g_test_init (&argc, &argv, NULL); g_set_prgname ("test-ini-config"); g_test_add ("/realmd/settings/string", Test, NULL, setup, test_string, teardown); g_test_add ("/realmd/settings/double", Test, NULL, setup, test_double, teardown); g_test_add ("/realmd/settings/boolean", Test, NULL, setup, test_boolean, teardown); return g_test_run (); } realmd-0.17.1/tests/Makefile.am0000644003225100322510000000370214046520517016560 0ustar00sbosesbose00000000000000 TEST_CFLAGS = \ -I$(top_srcdir) \ -DTESTFILE_DIR="\"@abs_srcdir@/tests/files\"" \ -DSYSCONF_DIR="\"/tmp/realmd-etc\"" \ -DPRIVATE_DIR="\"@abs_srcdir@/tests/files\"" \ $(GLIB_CFLAGS) \ $(POLKIT_CFLAGS) \ $(NULL) TEST_LIBS = \ $(GLIB_LIBS) TEST_PROGS = \ test-dn-util \ test-ini-config \ test-sssd-config \ test-safe-format \ test-login-name \ test-settings \ $(NULL) TESTS += $(TEST_PROGS) check_PROGRAMS += $(TEST_PROGS) noinst_PROGRAMS += \ frob-install-packages \ $(NULL) test_dn_util_SOURCES = \ tests/test-dn-util.c \ service/realm-dn-util.c \ $(NULL) test_dn_util_LDADD = $(TEST_LIBS) test_dn_util_CFLAGS = $(TEST_CFLAGS) test_ini_config_SOURCES = \ tests/test-ini-config.c \ service/realm-ini-config.c \ service/realm-samba-config.c \ service/realm-settings.c \ $(NULL) test_ini_config_LDADD = $(TEST_LIBS) test_ini_config_CFLAGS = $(TEST_CFLAGS) test_sssd_config_SOURCES = \ tests/test-sssd-config.c \ service/realm-ini-config.c \ service/realm-sssd-config.c \ service/realm-settings.c \ $(NULL) test_sssd_config_LDADD = $(TEST_LIBS) test_sssd_config_CFLAGS = $(TEST_CFLAGS) test_safe_format_SOURCES = \ tests/test-safe-format.c \ service/safe-format-string.c \ $(NULL) test_safe_format_LDADD = $(TEST_LIBS) test_safe_format_CFLAGS = $(TEST_CFLAGS) test_login_name_SOURCES = \ tests/test-login-name.c \ service/realm-login-name.c \ $(NULL) test_login_name_LDADD = $(TEST_LIBS) test_login_name_CFLAGS = $(TEST_CFLAGS) test_settings_SOURCES = \ tests/test-settings.c \ service/realm-settings.c \ $(NULL) test_settings_LDADD = $(TEST_LIBS) test_settings_CFLAGS = $(TEST_CFLAGS) frob_install_packages_SOURCES = \ tests/frob-install-packages.c \ service/realm-packages.c \ service/realm-settings.c \ service/realm-errors.c \ $(NULL) frob_install_packages_CFLAGS = \ -I$(srcdir)/dbus \ $(TEST_CFLAGS) \ $(NULL) frob_install_packages_LDADD = \ $(TEST_LIBS) \ $(NULL) EXTRA_DIST += \ tests/files \ $(PY_TESTS) \ $(NULL) realmd-0.17.1/tests/files/0000755003225100322510000000000014046520517015624 5ustar00sbosesbose00000000000000realmd-0.17.1/tests/files/realmd-defaults.conf0000644003225100322510000000013714046520517021545 0ustar00sbosesbose00000000000000 # Required for sssd config tests [users] default-shell = /bin/bash default-home = /home/%U@%D realmd-0.17.1/tests/files/realmd-distro.conf0000644003225100322510000000070314046520517021241 0ustar00sbosesbose00000000000000# Empty so far [samba-packages] samba-common = /usr/bin/net [winbind-packages] samba-winbind = /usr/sbin/winbindd samba-winbind-clients = /usr/bin/wbinfo oddjob = /usr/sbin/oddjobd oddjob-mkhomedir = /usr/libexec/oddjob/mkhomedir [sssd-packages] sssd = /usr/sbin/sssd oddjob = /usr/sbin/oddjobd oddjob-mkhomedir = /usr/libexec/oddjob/mkhomedir [adcli-packages] adcli = /usr/sbin/adcli [ipa-packages] freeipa-client = /usr/sbin/ipa-client-install realmd-0.17.1/tests/files/smb-one.conf0000644003225100322510000000031514046520517020032 0ustar00sbosesbose00000000000000 # This is a section [section] one=uno two= dos # This is a comment three = three \ Three \ THREE four =cuatro [broken five = cinco six = seis [another section] without a value ended here = lastrealmd-0.17.1/tests/test-safe-format.c0000644003225100322510000001111314046520517020044 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "service/safe-format-string.h" #include #include typedef struct { const gchar *name; const gchar *format; const gchar *args[8]; const gchar *result; } Fixture; static void callback (void *data, const char *piece, size_t len) { g_string_append_len (data, piece, len); } static void test_safe_format_string_cb (gconstpointer user_data) { const Fixture *fixture = user_data; GString *out; int num_args; int ret; for (num_args = 0; fixture->args[num_args] != NULL; ) num_args++; out = g_string_new (""); ret = safe_format_string_cb (callback, out, fixture->format, (const gchar **)fixture->args, num_args); if (fixture->result) { g_assert_cmpint (ret, >=, 0); g_assert_cmpstr (out->str, ==, fixture->result); g_assert_cmpint (ret, ==, out->len); } else { g_assert_cmpint (ret, <, 0); } g_string_free (out, TRUE); } static const Fixture fixtures[] = { { /* Just a bog standard string */ "standard_string", "%s", { "blah", NULL, }, "blah" }, { /* Empty to print */ "empty_string", "%s", { "", NULL, }, "" }, { /* Nothing to print */ "empty_format", "", { "blah", NULL, }, "" }, { /* Width right aligned */ "right_aligned", "%8s", { "blah", NULL, }, " blah" }, { /* Width left aligned */ "left_aligned", "whoop %-8s doo", { "dee", NULL, }, "whoop dee doo" }, { /* Width right space aligned (ignored) */ "width_right_aligned_space", "whoop % 8s doo", { "dee", NULL, }, "whoop dee doo" }, { /* Width left space aligned (ignored) */ "width_left_aligned_space", "whoop % -8s doo", { "dee", NULL, }, "whoop dee doo" }, { /* Precision 1 digit */ "precision_1_digit", "whoop %.3s doo", { "deedle-dee", NULL, }, "whoop dee doo" }, { /* Precision, N digits */ "precision_n_digits", "whoop %.10s doo", { "deedle-dee-deedle-do-deedle-dum", NULL, }, "whoop deedle-dee doo" }, { /* Precision, zero digits */ "precision_0_digits", "whoop %.s doo", { "deedle", NULL, }, "whoop doo" }, { /* Multiple simple arguments */ "multiple_simple_args", "space %s %s", { "man", "dances", NULL, }, "space man dances" }, { /* Literal percent */ "literal_percent", "100%% of space folk dance", { NULL, }, "100% of space folk dance" }, { /* Multiple positional arguments */ "multiple_positional_args", "space %2$s %1$s", { "dances", "man", NULL, }, "space man dances" }, { /* Skipping an argument (not supported by standard printf) */ "skipping_arg", "space %2$s dances", { "dances", "man", NULL, }, "space man dances" }, /* Failures start here */ { /* Unsupported conversion */ "unsupported_conversion", "%x", { "blah", NULL, }, NULL }, { /* Bad positional argument */ "bad_positional_arg", "space %55$s dances", { "dances", "man", NULL, }, NULL }, { /* Zero positional argument */ "zero_positional_arg", "space %0$s dances", { "dances", "man", NULL, }, NULL }, { /* Too many args used */ "too_many_args", "%s %s dances", { "space", NULL, }, NULL }, }; static void test_safe_format_string (void) { char buffer[8]; int ret; ret = safe_format_string (buffer, 8, "%s", "space", "man", NULL); g_assert_cmpint (ret, ==, 5); g_assert_cmpstr (buffer, ==, "space"); ret = safe_format_string (buffer, 8, "", "space", "man", NULL); g_assert_cmpint (ret, ==, 0); g_assert_cmpstr (buffer, ==, ""); ret = safe_format_string (buffer, 8, "the %s %s dances away", "space", "man", NULL); g_assert_cmpint (ret, ==, 25); g_assert_cmpstr (buffer, ==, "the spa"); ret = safe_format_string (buffer, 8, "%5$s", NULL); g_assert_cmpint (ret, <, 0); } int main (int argc, char **argv) { gchar *name; gint i; g_test_init (&argc, &argv, NULL); g_set_prgname ("test-safe-format"); for (i = 0; i < G_N_ELEMENTS (fixtures); i++) { name = g_strdup_printf ("/realmd/safe-format/%s", fixtures[i].name); g_test_add_data_func (name, fixtures + i, test_safe_format_string_cb); g_free (name); } g_test_add_func ("/realmd/safe-format-string", test_safe_format_string); return g_test_run (); } realmd-0.17.1/tests/test-dn-util.c0000644003225100322510000001031414046520517017216 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "service/realm-dn-util.h" #include #include typedef struct { const gchar *ldap_dn; const gchar *domain; const gchar *result; } Fixture; static void test_samba_ou_format (gconstpointer user_data) { const Fixture *fixture = user_data; gchar *result; result = realm_dn_util_build_samba_ou (fixture->ldap_dn, fixture->domain); g_assert_cmpstr (result, ==, fixture->result); g_free (result); } static const Fixture samba_ou_fixtures[] = { { "OU=One", "domain.example.com", "One" }, { "OU=One,ou=two", "domain.example.com", "two/One" }, { "Ou=One Long,OU=two", "domain.example.com", "two/One Long" }, { "Ou=One,OU=two, ou=Three", "domain.example.com", "Three/two/One" }, { "Ou=Test/Escape,Ou=Two", "domain.example.com", "Two/Test\\/Escape" }, { "Ou=Test\\\\Escape,Ou=Two", "domain.example.com", "Two/Test\\\\Escape" }, { "OU=One,DC=domain,dc=example,Dc=COM", "domain.example.com", "One" }, { "OU=One,OU=Two Here,DC=domain,dc=example,Dc=COM", "domain.example.com", "Two Here/One" }, { "OU=One,OU=Two Here,DC=invalid,Dc=COM", "domain.example.com", NULL }, { " ", "domain.example.com", NULL }, { "", "domain.example.com", NULL }, { "OU", "domain.example.com", NULL }, { "OU=One,", "domain.example.com", NULL }, { "CN=Unsupported", "domain.example.com", NULL }, { "OU=One+CN=Unsupported", "domain.example.com", NULL }, { "DC=radi07, DC=segad, DC=lab, DC=sjc, DC=redhat, DC=com", "radi08.segad.lab.sjc.redhat.com", NULL }, }; static void test_qualify_dn (gconstpointer user_data) { const Fixture *fixture = user_data; gchar *result; result = realm_dn_util_build_qualified (fixture->ldap_dn, fixture->domain); g_assert_cmpstr (result, ==, fixture->result); g_free (result); } static const Fixture qualify_fixtures[] = { { "OU=One", "domain.example.com", "OU=One,dc=domain,dc=example,dc=com" }, { "OU=One,ou=two", "domain.example.com", "OU=One,ou=two,dc=domain,dc=example,dc=com" }, { "Ou=One Long,OU=two", "domain.example.com", "Ou=One Long,OU=two,dc=domain,dc=example,dc=com" }, { "OU=One,DC=domain,dc=example,Dc=COM", "domain.example.com", "OU=One,DC=domain,dc=example,Dc=COM" }, { "OU=One,OU=Two Here,DC=domain,dc=example,Dc=COM", "domain.example.com", "OU=One,OU=Two Here,DC=domain,dc=example,Dc=COM" }, { "OU=One,OU=Two Here,DC=invalid,Dc=COM", "domain.example.com", NULL }, { " ", "domain.example.com", NULL }, { "", "domain.example.com", NULL }, { "OU", "domain.example.com", NULL }, { "OU=One,", "domain.example.com", NULL }, { "CN=Test", "domain.example.com", "CN=Test,dc=domain,dc=example,dc=com" }, { "OU=One+CN=Unsupported", "domain.example.com", NULL }, { "DC=radi07, DC=segad, DC=lab, DC=sjc, DC=redhat, DC=com", "radi08.segad.lab.sjc.redhat.com", NULL }, }; int main (int argc, char **argv) { gchar *escaped; gchar *name; gint i; #if !GLIB_CHECK_VERSION(2, 36, 0) g_type_init (); #endif g_test_init (&argc, &argv, NULL); g_set_prgname ("test-dn-util"); for (i = 0; i < G_N_ELEMENTS (samba_ou_fixtures); i++) { if (g_str_equal (samba_ou_fixtures[i].ldap_dn, "")) escaped = g_strdup ("_empty_"); else escaped = g_strdup (samba_ou_fixtures[i].ldap_dn); g_strdelimit (escaped, ", =\\/", '_'); name = g_strdup_printf ("/realmd/samba-ou-format/%s", escaped); g_free (escaped); g_test_add_data_func (name, samba_ou_fixtures + i, test_samba_ou_format); g_free (name); } for (i = 0; i < G_N_ELEMENTS (qualify_fixtures); i++) { if (g_str_equal (qualify_fixtures[i].ldap_dn, "")) escaped = g_strdup ("_empty_"); else escaped = g_strdup (qualify_fixtures[i].ldap_dn); g_strdelimit (escaped, ", =\\/", '_'); name = g_strdup_printf ("/realmd/qualify-dn/%s", escaped); g_free (escaped); g_test_add_data_func (name, qualify_fixtures + i, test_qualify_dn); g_free (name); } return g_test_run (); } realmd-0.17.1/tests/test-login-name.c0000644003225100322510000001024614046520517017674 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "dbus/realm-dbus-constants.h" #include "service/realm-login-name.h" #include #include typedef struct { gconstpointer unused; } Test; typedef struct { const gchar *const *formats; const gchar *user; const gchar *login; } Fixture; static void setup (Test *test, gconstpointer unused) { } static void teardown (Test *test, gconstpointer unused) { } static void test_format_login (Test *test, gconstpointer data) { const Fixture *fixture = data; gchar *login; login = realm_login_name_format (fixture->formats[0], fixture->user); g_assert_cmpstr (login, ==, fixture->login); g_free (login); } static void test_parse_login (Test *test, gconstpointer data) { const Fixture *fixture = data; gchar *user; user = realm_login_name_parse (fixture->formats, FALSE, fixture->login); if (fixture->user == NULL) g_assert (user == NULL); else g_assert_cmpstr (user, ==, fixture->user); g_free (user); } static void test_parse_all (Test *test, gconstpointer unused) { const gchar *failed = NULL; const gchar *original[] = { "Domain\\User", "Domain\\Two", "Domain\\Three", NULL, }; const gchar *const formats[] = { "Domain\\%U", NULL }; gchar **changed; changed = realm_login_name_parse_all (formats, FALSE, original, &failed); g_assert (changed != NULL); g_assert_cmpstr (changed[0], ==, "User"); g_assert_cmpstr (changed[1], ==, "Two"); g_assert_cmpstr (changed[2], ==, "Three"); g_assert (changed[3] == NULL); g_assert (failed == NULL); g_strfreev (changed); } static void test_parse_all_failed (Test *test, gconstpointer unused) { const gchar *failed = NULL; const gchar *original[] = { "Domain\\User", "Wheeee", NULL, }; const gchar *const formats[] = { "Domain\\%U", NULL }; gchar **changed; changed = realm_login_name_parse_all (formats, FALSE, original, &failed); g_assert (changed == NULL); g_assert_cmpstr (failed, ==, "Wheeee"); g_strfreev (changed); } int main (int argc, char **argv) { static const gchar *const domain_formats[] = { "Domain\\%U", NULL }; static const gchar *const prefix_suffix_formats[] = { "prefix|%U|suffix", NULL }; static const gchar *const email_formats[] = { "%U@domain", NULL }; static const Fixture format_fixtures[] = { { domain_formats, "User", "Domain\\User" }, { prefix_suffix_formats, "User", "prefix|User|suffix" }, { email_formats, "user", "user@domain" }, }; static const Fixture parse_fixtures[] = { { domain_formats, "User", "Domain\\User" }, { prefix_suffix_formats, "User", "prefix|User|suffix" }, { email_formats, "user", "user@domain" }, { domain_formats, NULL, "Another\\User" }, { prefix_suffix_formats, NULL, "different|User|suffix" }, { email_formats, NULL, "user@another" }, }; gchar *name; gint i; g_test_init (&argc, &argv, NULL); g_set_prgname ("test-login-name"); for (i = 0; i < G_N_ELEMENTS (format_fixtures); i++) { name = g_strdup_printf ("/realmd/login-name/format_%s", format_fixtures[i].login); g_strcanon (name, REALM_DBUS_NAME_CHARS "/-", '_'); g_test_add (name, Test, &format_fixtures[i], setup, test_format_login, teardown); g_free (name); } for (i = 0; i < G_N_ELEMENTS (parse_fixtures); i++) { name = g_strdup_printf ("/realmd/login-name/parse_%s", parse_fixtures[i].login); g_strcanon (name, REALM_DBUS_NAME_CHARS "/-", '_'); g_test_add (name, Test, &parse_fixtures[i], setup, test_parse_login, teardown); g_free (name); } g_test_add ("/realmd/login-name/parse-all", Test, NULL, setup, test_parse_all, teardown); g_test_add ("/realmd/login-name/parse-all-failed", Test, NULL, setup, test_parse_all_failed, teardown); return g_test_run (); } realmd-0.17.1/ChangeLog0000644003225100322510000000215414046520517015134 0ustar00sbosesbose00000000000000=== ChangeLog discontinued === realmd relies on commit messages to provide change history. Please write commit messages in the following format: === begin example commit === Short explanation of the commit Longer explanation explaining exactly what's changed, whether any external or private interfaces changed, what bugs were fixed (with bug tracker reference if applicable) and so forth. Be concise but not too brief. === end example commit === - Always add a brief description of the commit to the _first_ line of the commit and terminate by two newlines. This may be the title of a fixed bug, copied from Bugzilla. - First line (the brief description) must only be one sentence and should start with a capital letter unless it starts with a lowercase symbol or identifier. Don't use a trailing full stop, and don't exceed 72 characters. - The main description (the body) is normal prose and should use normal punctuation and capital letters where appropriate. - When committing code on behalf of others use the --author option, e.g. git commit -a --author "Joe Coder " and --signoff. realmd-0.17.1/INSTALL0000644003225100322510000000000014315276767014415 0ustar00sbosesbose00000000000000realmd-0.17.1/build/0000755003225100322510000000000014315277002014454 5ustar00sbosesbose00000000000000realmd-0.17.1/build/install-sh0000755003225100322510000003577614315276773016520 0ustar00sbosesbose00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2020-11-14.01; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_mkdir= # Desired mode of installed file. mode=0755 # Create dirs (including intermediate dirs) using mode 755. # This is like GNU 'install' as of coreutils 8.32 (2020). mkdir_umask=22 backupsuffix= chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -p pass -p to $cpprog. -s $stripprog installed files. -S SUFFIX attempt to back up existing files, with suffix SUFFIX. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG By default, rm is invoked with -f; when overridden with RMPROG, it's up to you to specify -f if you want it. If -S is not specified, no backups are attempted. Email bug reports to bug-automake@gnu.org. Automake home page: https://www.gnu.org/software/automake/ " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -p) cpprog="$cpprog -p";; -s) stripcmd=$stripprog;; -S) backupsuffix="$2" shift;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? # Don't chown directories that already exist. if test $dstdir_status = 0; then chowncmd="" fi else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dstbase=`basename "$src"` case $dst in */) dst=$dst$dstbase;; *) dst=$dst/$dstbase;; esac dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi case $dstdir in */) dstdirslash=$dstdir;; *) dstdirslash=$dstdir/;; esac obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false # The $RANDOM variable is not portable (e.g., dash). Use it # here however when possible just to lower collision chance. tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap ' ret=$? rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null exit $ret ' 0 # Because "mkdir -p" follows existing symlinks and we likely work # directly in world-writeable /tmp, make sure that the '$tmpdir' # directory is successfully created first before we actually test # 'mkdir -p'. if (umask $mkdir_umask && $mkdirprog $mkdir_mode "$tmpdir" && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. test_tmpdir="$tmpdir/a" ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=${dstdirslash}_inst.$$_ rmtmp=${dstdirslash}_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && { test -z "$stripcmd" || { # Create $dsttmp read-write so that cp doesn't create it read-only, # which would cause strip to fail. if test -z "$doit"; then : >"$dsttmp" # No need to fork-exec 'touch'. else $doit touch "$dsttmp" fi } } && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # If $backupsuffix is set, and the file being installed # already exists, attempt a backup. Don't worry if it fails, # e.g., if mv doesn't support -f. if test -n "$backupsuffix" && test -f "$dst"; then $doit $mvcmd -f "$dst" "$dst$backupsuffix" 2>/dev/null fi # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: realmd-0.17.1/build/compile0000755003225100322510000001635014315276773016055 0ustar00sbosesbose00000000000000#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1999-2021 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN* | MSYS*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/* | msys/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: realmd-0.17.1/build/config.sub0000755003225100322510000010512114315276773016455 0ustar00sbosesbose00000000000000#!/usr/bin/sh # Configuration validation subroutine script. # Copyright 1992-2022 Free Software Foundation, Inc. # shellcheck disable=SC2006,SC2268 # see below for rationale timestamp='2022-01-03' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # https://git.savannah.gnu.org/cgit/config.git/plain/config.sub # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. # The "shellcheck disable" line above the timestamp inhibits complaints # about features and limitations of the classic Bourne shell that were # superseded or lifted in POSIX. However, this script identifies a wide # variety of pre-POSIX systems that do not have POSIX shells at all, and # even some reasonably current systems (Solaris 10 as case-in-point) still # have a pre-POSIX /bin/sh. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS Canonicalize a configuration name. Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright 1992-2022 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; *local*) # First pass through any local machine types. echo "$1" exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Split fields of configuration type # shellcheck disable=SC2162 saved_IFS=$IFS IFS="-" read field1 field2 field3 field4 <&2 exit 1 ;; *-*-*-*) basic_machine=$field1-$field2 basic_os=$field3-$field4 ;; *-*-*) # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two # parts maybe_os=$field2-$field3 case $maybe_os in nto-qnx* | linux-* | uclinux-uclibc* \ | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \ | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \ | storm-chaos* | os2-emx* | rtmk-nova*) basic_machine=$field1 basic_os=$maybe_os ;; android-linux) basic_machine=$field1-unknown basic_os=linux-android ;; *) basic_machine=$field1-$field2 basic_os=$field3 ;; esac ;; *-*) # A lone config we happen to match not fitting any pattern case $field1-$field2 in decstation-3100) basic_machine=mips-dec basic_os= ;; *-*) # Second component is usually, but not always the OS case $field2 in # Prevent following clause from handling this valid os sun*os*) basic_machine=$field1 basic_os=$field2 ;; zephyr*) basic_machine=$field1-unknown basic_os=$field2 ;; # Manufacturers dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \ | att* | 7300* | 3300* | delta* | motorola* | sun[234]* \ | unicom* | ibm* | next | hp | isi* | apollo | altos* \ | convergent* | ncr* | news | 32* | 3600* | 3100* \ | hitachi* | c[123]* | convex* | sun | crds | omron* | dg \ | ultra | tti* | harris | dolphin | highlevel | gould \ | cbm | ns | masscomp | apple | axis | knuth | cray \ | microblaze* | sim | cisco \ | oki | wec | wrs | winbond) basic_machine=$field1-$field2 basic_os= ;; *) basic_machine=$field1 basic_os=$field2 ;; esac ;; esac ;; *) # Convert single-component short-hands not valid as part of # multi-component configurations. case $field1 in 386bsd) basic_machine=i386-pc basic_os=bsd ;; a29khif) basic_machine=a29k-amd basic_os=udi ;; adobe68k) basic_machine=m68010-adobe basic_os=scout ;; alliant) basic_machine=fx80-alliant basic_os= ;; altos | altos3068) basic_machine=m68k-altos basic_os= ;; am29k) basic_machine=a29k-none basic_os=bsd ;; amdahl) basic_machine=580-amdahl basic_os=sysv ;; amiga) basic_machine=m68k-unknown basic_os= ;; amigaos | amigados) basic_machine=m68k-unknown basic_os=amigaos ;; amigaunix | amix) basic_machine=m68k-unknown basic_os=sysv4 ;; apollo68) basic_machine=m68k-apollo basic_os=sysv ;; apollo68bsd) basic_machine=m68k-apollo basic_os=bsd ;; aros) basic_machine=i386-pc basic_os=aros ;; aux) basic_machine=m68k-apple basic_os=aux ;; balance) basic_machine=ns32k-sequent basic_os=dynix ;; blackfin) basic_machine=bfin-unknown basic_os=linux ;; cegcc) basic_machine=arm-unknown basic_os=cegcc ;; convex-c1) basic_machine=c1-convex basic_os=bsd ;; convex-c2) basic_machine=c2-convex basic_os=bsd ;; convex-c32) basic_machine=c32-convex basic_os=bsd ;; convex-c34) basic_machine=c34-convex basic_os=bsd ;; convex-c38) basic_machine=c38-convex basic_os=bsd ;; cray) basic_machine=j90-cray basic_os=unicos ;; crds | unos) basic_machine=m68k-crds basic_os= ;; da30) basic_machine=m68k-da30 basic_os= ;; decstation | pmax | pmin | dec3100 | decstatn) basic_machine=mips-dec basic_os= ;; delta88) basic_machine=m88k-motorola basic_os=sysv3 ;; dicos) basic_machine=i686-pc basic_os=dicos ;; djgpp) basic_machine=i586-pc basic_os=msdosdjgpp ;; ebmon29k) basic_machine=a29k-amd basic_os=ebmon ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson basic_os=ose ;; gmicro) basic_machine=tron-gmicro basic_os=sysv ;; go32) basic_machine=i386-pc basic_os=go32 ;; h8300hms) basic_machine=h8300-hitachi basic_os=hms ;; h8300xray) basic_machine=h8300-hitachi basic_os=xray ;; h8500hms) basic_machine=h8500-hitachi basic_os=hms ;; harris) basic_machine=m88k-harris basic_os=sysv3 ;; hp300 | hp300hpux) basic_machine=m68k-hp basic_os=hpux ;; hp300bsd) basic_machine=m68k-hp basic_os=bsd ;; hppaosf) basic_machine=hppa1.1-hp basic_os=osf ;; hppro) basic_machine=hppa1.1-hp basic_os=proelf ;; i386mach) basic_machine=i386-mach basic_os=mach ;; isi68 | isi) basic_machine=m68k-isi basic_os=sysv ;; m68knommu) basic_machine=m68k-unknown basic_os=linux ;; magnum | m3230) basic_machine=mips-mips basic_os=sysv ;; merlin) basic_machine=ns32k-utek basic_os=sysv ;; mingw64) basic_machine=x86_64-pc basic_os=mingw64 ;; mingw32) basic_machine=i686-pc basic_os=mingw32 ;; mingw32ce) basic_machine=arm-unknown basic_os=mingw32ce ;; monitor) basic_machine=m68k-rom68k basic_os=coff ;; morphos) basic_machine=powerpc-unknown basic_os=morphos ;; moxiebox) basic_machine=moxie-unknown basic_os=moxiebox ;; msdos) basic_machine=i386-pc basic_os=msdos ;; msys) basic_machine=i686-pc basic_os=msys ;; mvs) basic_machine=i370-ibm basic_os=mvs ;; nacl) basic_machine=le32-unknown basic_os=nacl ;; ncr3000) basic_machine=i486-ncr basic_os=sysv4 ;; netbsd386) basic_machine=i386-pc basic_os=netbsd ;; netwinder) basic_machine=armv4l-rebel basic_os=linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony basic_os=newsos ;; news1000) basic_machine=m68030-sony basic_os=newsos ;; necv70) basic_machine=v70-nec basic_os=sysv ;; nh3000) basic_machine=m68k-harris basic_os=cxux ;; nh[45]000) basic_machine=m88k-harris basic_os=cxux ;; nindy960) basic_machine=i960-intel basic_os=nindy ;; mon960) basic_machine=i960-intel basic_os=mon960 ;; nonstopux) basic_machine=mips-compaq basic_os=nonstopux ;; os400) basic_machine=powerpc-ibm basic_os=os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson basic_os=ose ;; os68k) basic_machine=m68k-none basic_os=os68k ;; paragon) basic_machine=i860-intel basic_os=osf ;; parisc) basic_machine=hppa-unknown basic_os=linux ;; psp) basic_machine=mipsallegrexel-sony basic_os=psp ;; pw32) basic_machine=i586-unknown basic_os=pw32 ;; rdos | rdos64) basic_machine=x86_64-pc basic_os=rdos ;; rdos32) basic_machine=i386-pc basic_os=rdos ;; rom68k) basic_machine=m68k-rom68k basic_os=coff ;; sa29200) basic_machine=a29k-amd basic_os=udi ;; sei) basic_machine=mips-sei basic_os=seiux ;; sequent) basic_machine=i386-sequent basic_os= ;; sps7) basic_machine=m68k-bull basic_os=sysv2 ;; st2000) basic_machine=m68k-tandem basic_os= ;; stratus) basic_machine=i860-stratus basic_os=sysv4 ;; sun2) basic_machine=m68000-sun basic_os= ;; sun2os3) basic_machine=m68000-sun basic_os=sunos3 ;; sun2os4) basic_machine=m68000-sun basic_os=sunos4 ;; sun3) basic_machine=m68k-sun basic_os= ;; sun3os3) basic_machine=m68k-sun basic_os=sunos3 ;; sun3os4) basic_machine=m68k-sun basic_os=sunos4 ;; sun4) basic_machine=sparc-sun basic_os= ;; sun4os3) basic_machine=sparc-sun basic_os=sunos3 ;; sun4os4) basic_machine=sparc-sun basic_os=sunos4 ;; sun4sol2) basic_machine=sparc-sun basic_os=solaris2 ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun basic_os= ;; sv1) basic_machine=sv1-cray basic_os=unicos ;; symmetry) basic_machine=i386-sequent basic_os=dynix ;; t3e) basic_machine=alphaev5-cray basic_os=unicos ;; t90) basic_machine=t90-cray basic_os=unicos ;; toad1) basic_machine=pdp10-xkl basic_os=tops20 ;; tpf) basic_machine=s390x-ibm basic_os=tpf ;; udi29k) basic_machine=a29k-amd basic_os=udi ;; ultra3) basic_machine=a29k-nyu basic_os=sym1 ;; v810 | necv810) basic_machine=v810-nec basic_os=none ;; vaxv) basic_machine=vax-dec basic_os=sysv ;; vms) basic_machine=vax-dec basic_os=vms ;; vsta) basic_machine=i386-pc basic_os=vsta ;; vxworks960) basic_machine=i960-wrs basic_os=vxworks ;; vxworks68) basic_machine=m68k-wrs basic_os=vxworks ;; vxworks29k) basic_machine=a29k-wrs basic_os=vxworks ;; xbox) basic_machine=i686-pc basic_os=mingw32 ;; ymp) basic_machine=ymp-cray basic_os=unicos ;; *) basic_machine=$1 basic_os= ;; esac ;; esac # Decode 1-component or ad-hoc basic machines case $basic_machine in # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) cpu=hppa1.1 vendor=winbond ;; op50n) cpu=hppa1.1 vendor=oki ;; op60c) cpu=hppa1.1 vendor=oki ;; ibm*) cpu=i370 vendor=ibm ;; orion105) cpu=clipper vendor=highlevel ;; mac | mpw | mac-mpw) cpu=m68k vendor=apple ;; pmac | pmac-mpw) cpu=powerpc vendor=apple ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) cpu=m68000 vendor=att ;; 3b*) cpu=we32k vendor=att ;; bluegene*) cpu=powerpc vendor=ibm basic_os=cnk ;; decsystem10* | dec10*) cpu=pdp10 vendor=dec basic_os=tops10 ;; decsystem20* | dec20*) cpu=pdp10 vendor=dec basic_os=tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) cpu=m68k vendor=motorola ;; dpx2*) cpu=m68k vendor=bull basic_os=sysv3 ;; encore | umax | mmax) cpu=ns32k vendor=encore ;; elxsi) cpu=elxsi vendor=elxsi basic_os=${basic_os:-bsd} ;; fx2800) cpu=i860 vendor=alliant ;; genix) cpu=ns32k vendor=ns ;; h3050r* | hiux*) cpu=hppa1.1 vendor=hitachi basic_os=hiuxwe2 ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) cpu=hppa1.0 vendor=hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) cpu=m68000 vendor=hp ;; hp9k3[2-9][0-9]) cpu=m68k vendor=hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) cpu=hppa1.0 vendor=hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) cpu=hppa1.1 vendor=hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp cpu=hppa1.1 vendor=hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp cpu=hppa1.1 vendor=hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) cpu=hppa1.1 vendor=hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) cpu=hppa1.0 vendor=hp ;; i*86v32) cpu=`echo "$1" | sed -e 's/86.*/86/'` vendor=pc basic_os=sysv32 ;; i*86v4*) cpu=`echo "$1" | sed -e 's/86.*/86/'` vendor=pc basic_os=sysv4 ;; i*86v) cpu=`echo "$1" | sed -e 's/86.*/86/'` vendor=pc basic_os=sysv ;; i*86sol2) cpu=`echo "$1" | sed -e 's/86.*/86/'` vendor=pc basic_os=solaris2 ;; j90 | j90-cray) cpu=j90 vendor=cray basic_os=${basic_os:-unicos} ;; iris | iris4d) cpu=mips vendor=sgi case $basic_os in irix*) ;; *) basic_os=irix4 ;; esac ;; miniframe) cpu=m68000 vendor=convergent ;; *mint | mint[0-9]* | *MiNT | *MiNT[0-9]*) cpu=m68k vendor=atari basic_os=mint ;; news-3600 | risc-news) cpu=mips vendor=sony basic_os=newsos ;; next | m*-next) cpu=m68k vendor=next case $basic_os in openstep*) ;; nextstep*) ;; ns2*) basic_os=nextstep2 ;; *) basic_os=nextstep3 ;; esac ;; np1) cpu=np1 vendor=gould ;; op50n-* | op60c-*) cpu=hppa1.1 vendor=oki basic_os=proelf ;; pa-hitachi) cpu=hppa1.1 vendor=hitachi basic_os=hiuxwe2 ;; pbd) cpu=sparc vendor=tti ;; pbb) cpu=m68k vendor=tti ;; pc532) cpu=ns32k vendor=pc532 ;; pn) cpu=pn vendor=gould ;; power) cpu=power vendor=ibm ;; ps2) cpu=i386 vendor=ibm ;; rm[46]00) cpu=mips vendor=siemens ;; rtpc | rtpc-*) cpu=romp vendor=ibm ;; sde) cpu=mipsisa32 vendor=sde basic_os=${basic_os:-elf} ;; simso-wrs) cpu=sparclite vendor=wrs basic_os=vxworks ;; tower | tower-32) cpu=m68k vendor=ncr ;; vpp*|vx|vx-*) cpu=f301 vendor=fujitsu ;; w65) cpu=w65 vendor=wdc ;; w89k-*) cpu=hppa1.1 vendor=winbond basic_os=proelf ;; none) cpu=none vendor=none ;; leon|leon[3-9]) cpu=sparc vendor=$basic_machine ;; leon-*|leon[3-9]-*) cpu=sparc vendor=`echo "$basic_machine" | sed 's/-.*//'` ;; *-*) # shellcheck disable=SC2162 saved_IFS=$IFS IFS="-" read cpu vendor <&2 exit 1 ;; esac ;; esac # Here we canonicalize certain aliases for manufacturers. case $vendor in digital*) vendor=dec ;; commodore*) vendor=cbm ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if test x$basic_os != x then # First recognize some ad-hoc cases, or perhaps split kernel-os, or else just # set os. case $basic_os in gnu/linux*) kernel=linux os=`echo "$basic_os" | sed -e 's|gnu/linux|gnu|'` ;; os2-emx) kernel=os2 os=`echo "$basic_os" | sed -e 's|os2-emx|emx|'` ;; nto-qnx*) kernel=nto os=`echo "$basic_os" | sed -e 's|nto-qnx|qnx|'` ;; *-*) # shellcheck disable=SC2162 saved_IFS=$IFS IFS="-" read kernel os <&2 exit 1 ;; esac # As a final step for OS-related things, validate the OS-kernel combination # (given a valid OS), if there is a kernel. case $kernel-$os in linux-gnu* | linux-dietlibc* | linux-android* | linux-newlib* \ | linux-musl* | linux-relibc* | linux-uclibc* ) ;; uclinux-uclibc* ) ;; -dietlibc* | -newlib* | -musl* | -relibc* | -uclibc* ) # These are just libc implementations, not actual OSes, and thus # require a kernel. echo "Invalid configuration \`$1': libc \`$os' needs explicit kernel." 1>&2 exit 1 ;; kfreebsd*-gnu* | kopensolaris*-gnu*) ;; vxworks-simlinux | vxworks-simwindows | vxworks-spe) ;; nto-qnx*) ;; os2-emx) ;; *-eabi* | *-gnueabi*) ;; -*) # Blank kernel with real OS is always fine. ;; *-*) echo "Invalid configuration \`$1': Kernel \`$kernel' not known to work with OS \`$os'." 1>&2 exit 1 ;; esac # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. case $vendor in unknown) case $cpu-$os in *-riscix*) vendor=acorn ;; *-sunos*) vendor=sun ;; *-cnk* | *-aix*) vendor=ibm ;; *-beos*) vendor=be ;; *-hpux*) vendor=hp ;; *-mpeix*) vendor=hp ;; *-hiux*) vendor=hitachi ;; *-unos*) vendor=crds ;; *-dgux*) vendor=dg ;; *-luna*) vendor=omron ;; *-genix*) vendor=ns ;; *-clix*) vendor=intergraph ;; *-mvs* | *-opened*) vendor=ibm ;; *-os400*) vendor=ibm ;; s390-* | s390x-*) vendor=ibm ;; *-ptx*) vendor=sequent ;; *-tpf*) vendor=ibm ;; *-vxsim* | *-vxworks* | *-windiss*) vendor=wrs ;; *-aux*) vendor=apple ;; *-hms*) vendor=hitachi ;; *-mpw* | *-macos*) vendor=apple ;; *-*mint | *-mint[0-9]* | *-*MiNT | *-MiNT[0-9]*) vendor=atari ;; *-vos*) vendor=stratus ;; esac ;; esac echo "$cpu-$vendor-${kernel:+$kernel-}$os" exit # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: realmd-0.17.1/build/config.guess0000755003225100322510000014120514315276773017015 0ustar00sbosesbose00000000000000#!/usr/bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2022 Free Software Foundation, Inc. # shellcheck disable=SC2006,SC2268 # see below for rationale timestamp='2022-05-25' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: # https://git.savannah.gnu.org/cgit/config.git/plain/config.guess # # Please send patches to . # The "shellcheck disable" line above the timestamp inhibits complaints # about features and limitations of the classic Bourne shell that were # superseded or lifted in POSIX. However, this script identifies a wide # variety of pre-POSIX systems that do not have POSIX shells at all, and # even some reasonably current systems (Solaris 10 as case-in-point) still # have a pre-POSIX /bin/sh. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright 1992-2022 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi # Just in case it came from the environment. GUESS= # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. tmp= # shellcheck disable=SC2172 trap 'test -z "$tmp" || rm -fr "$tmp"' 0 1 2 13 15 set_cc_for_build() { # prevent multiple calls if $tmp is already set test "$tmp" && return 0 : "${TMPDIR=/tmp}" # shellcheck disable=SC2039,SC3028 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir "$tmp" 2>/dev/null) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } dummy=$tmp/dummy case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in ,,) echo "int x;" > "$dummy.c" for driver in cc gcc c89 c99 ; do if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD=$driver break fi done if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac } # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if test -f /.attbin/uname ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown case $UNAME_SYSTEM in Linux|GNU|GNU/*) LIBC=unknown set_cc_for_build cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #elif defined(__GLIBC__) LIBC=gnu #else #include /* First heuristic to detect musl libc. */ #ifdef __DEFINED_va_list LIBC=musl #endif #endif EOF cc_set_libc=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` eval "$cc_set_libc" # Second heuristic to detect musl libc. if [ "$LIBC" = unknown ] && command -v ldd >/dev/null && ldd --version 2>&1 | grep -q ^musl; then LIBC=musl fi # If the system lacks a compiler, then just pick glibc. # We could probably try harder. if [ "$LIBC" = unknown ]; then LIBC=gnu fi ;; esac # Note: order is significant - the case branches are not exclusive. case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ /sbin/sysctl -n hw.machine_arch 2>/dev/null || \ /usr/sbin/sysctl -n hw.machine_arch 2>/dev/null || \ echo unknown)` case $UNAME_MACHINE_ARCH in aarch64eb) machine=aarch64_be-unknown ;; armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; earmv*) arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` machine=${arch}${endian}-unknown ;; *) machine=$UNAME_MACHINE_ARCH-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently (or will in the future) and ABI. case $UNAME_MACHINE_ARCH in earm*) os=netbsdelf ;; arm*|i386|m68k|ns32k|sh3*|sparc|vax) set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # Determine ABI tags. case $UNAME_MACHINE_ARCH in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case $UNAME_VERSION in Debian*) release='-gnu' ;; *) release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. GUESS=$machine-${os}${release}${abi-} ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` GUESS=$UNAME_MACHINE_ARCH-unknown-bitrig$UNAME_RELEASE ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` GUESS=$UNAME_MACHINE_ARCH-unknown-openbsd$UNAME_RELEASE ;; *:SecBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/SecBSD.//'` GUESS=$UNAME_MACHINE_ARCH-unknown-secbsd$UNAME_RELEASE ;; *:LibertyBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` GUESS=$UNAME_MACHINE_ARCH-unknown-libertybsd$UNAME_RELEASE ;; *:MidnightBSD:*:*) GUESS=$UNAME_MACHINE-unknown-midnightbsd$UNAME_RELEASE ;; *:ekkoBSD:*:*) GUESS=$UNAME_MACHINE-unknown-ekkobsd$UNAME_RELEASE ;; *:SolidBSD:*:*) GUESS=$UNAME_MACHINE-unknown-solidbsd$UNAME_RELEASE ;; *:OS108:*:*) GUESS=$UNAME_MACHINE-unknown-os108_$UNAME_RELEASE ;; macppc:MirBSD:*:*) GUESS=powerpc-unknown-mirbsd$UNAME_RELEASE ;; *:MirBSD:*:*) GUESS=$UNAME_MACHINE-unknown-mirbsd$UNAME_RELEASE ;; *:Sortix:*:*) GUESS=$UNAME_MACHINE-unknown-sortix ;; *:Twizzler:*:*) GUESS=$UNAME_MACHINE-unknown-twizzler ;; *:Redox:*:*) GUESS=$UNAME_MACHINE-unknown-redox ;; mips:OSF1:*.*) GUESS=mips-dec-osf1 ;; alpha:OSF1:*:*) # Reset EXIT trap before exiting to avoid spurious non-zero exit code. trap '' 0 case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case $ALPHA_CPU_TYPE in "EV4 (21064)") UNAME_MACHINE=alpha ;; "EV4.5 (21064)") UNAME_MACHINE=alpha ;; "LCA4 (21066/21068)") UNAME_MACHINE=alpha ;; "EV5 (21164)") UNAME_MACHINE=alphaev5 ;; "EV5.6 (21164A)") UNAME_MACHINE=alphaev56 ;; "EV5.6 (21164PC)") UNAME_MACHINE=alphapca56 ;; "EV5.7 (21164PC)") UNAME_MACHINE=alphapca57 ;; "EV6 (21264)") UNAME_MACHINE=alphaev6 ;; "EV6.7 (21264A)") UNAME_MACHINE=alphaev67 ;; "EV6.8CB (21264C)") UNAME_MACHINE=alphaev68 ;; "EV6.8AL (21264B)") UNAME_MACHINE=alphaev68 ;; "EV6.8CX (21264D)") UNAME_MACHINE=alphaev68 ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE=alphaev69 ;; "EV7 (21364)") UNAME_MACHINE=alphaev7 ;; "EV7.9 (21364A)") UNAME_MACHINE=alphaev79 ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. OSF_REL=`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` GUESS=$UNAME_MACHINE-dec-osf$OSF_REL ;; Amiga*:UNIX_System_V:4.0:*) GUESS=m68k-unknown-sysv4 ;; *:[Aa]miga[Oo][Ss]:*:*) GUESS=$UNAME_MACHINE-unknown-amigaos ;; *:[Mm]orph[Oo][Ss]:*:*) GUESS=$UNAME_MACHINE-unknown-morphos ;; *:OS/390:*:*) GUESS=i370-ibm-openedition ;; *:z/VM:*:*) GUESS=s390-ibm-zvmoe ;; *:OS400:*:*) GUESS=powerpc-ibm-os400 ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) GUESS=arm-acorn-riscix$UNAME_RELEASE ;; arm*:riscos:*:*|arm*:RISCOS:*:*) GUESS=arm-unknown-riscos ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) GUESS=hppa1.1-hitachi-hiuxmpp ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. case `(/bin/universe) 2>/dev/null` in att) GUESS=pyramid-pyramid-sysv3 ;; *) GUESS=pyramid-pyramid-bsd ;; esac ;; NILE*:*:*:dcosx) GUESS=pyramid-pyramid-svr4 ;; DRS?6000:unix:4.0:6*) GUESS=sparc-icl-nx6 ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) GUESS=sparc-icl-nx7 ;; esac ;; s390x:SunOS:*:*) SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` GUESS=$UNAME_MACHINE-ibm-solaris2$SUN_REL ;; sun4H:SunOS:5.*:*) SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` GUESS=sparc-hal-solaris2$SUN_REL ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` GUESS=sparc-sun-solaris2$SUN_REL ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) GUESS=i386-pc-auroraux$UNAME_RELEASE ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) set_cc_for_build SUN_ARCH=i386 # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if test "$CC_FOR_BUILD" != no_compiler_found; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -m64 -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH=x86_64 fi fi SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` GUESS=$SUN_ARCH-pc-solaris2$SUN_REL ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` GUESS=sparc-sun-solaris3$SUN_REL ;; sun4*:SunOS:*:*) case `/usr/bin/arch -k` in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/-/_/'` GUESS=sparc-sun-sunos$SUN_REL ;; sun3*:SunOS:*:*) GUESS=m68k-sun-sunos$UNAME_RELEASE ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 case `/bin/arch` in sun3) GUESS=m68k-sun-sunos$UNAME_RELEASE ;; sun4) GUESS=sparc-sun-sunos$UNAME_RELEASE ;; esac ;; aushp:SunOS:*:*) GUESS=sparc-auspex-sunos$UNAME_RELEASE ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) GUESS=m68k-atari-mint$UNAME_RELEASE ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) GUESS=m68k-atari-mint$UNAME_RELEASE ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) GUESS=m68k-atari-mint$UNAME_RELEASE ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) GUESS=m68k-milan-mint$UNAME_RELEASE ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) GUESS=m68k-hades-mint$UNAME_RELEASE ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) GUESS=m68k-unknown-mint$UNAME_RELEASE ;; m68k:machten:*:*) GUESS=m68k-apple-machten$UNAME_RELEASE ;; powerpc:machten:*:*) GUESS=powerpc-apple-machten$UNAME_RELEASE ;; RISC*:Mach:*:*) GUESS=mips-dec-mach_bsd4.3 ;; RISC*:ULTRIX:*:*) GUESS=mips-dec-ultrix$UNAME_RELEASE ;; VAX*:ULTRIX*:*:*) GUESS=vax-dec-ultrix$UNAME_RELEASE ;; 2020:CLIX:*:* | 2430:CLIX:*:*) GUESS=clipper-intergraph-clix$UNAME_RELEASE ;; mips:*:*:UMIPS | mips:*:*:RISCos) set_cc_for_build sed 's/^ //' << EOF > "$dummy.c" #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o "$dummy" "$dummy.c" && dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`"$dummy" "$dummyarg"` && { echo "$SYSTEM_NAME"; exit; } GUESS=mips-mips-riscos$UNAME_RELEASE ;; Motorola:PowerMAX_OS:*:*) GUESS=powerpc-motorola-powermax ;; Motorola:*:4.3:PL8-*) GUESS=powerpc-harris-powermax ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) GUESS=powerpc-harris-powermax ;; Night_Hawk:Power_UNIX:*:*) GUESS=powerpc-harris-powerunix ;; m88k:CX/UX:7*:*) GUESS=m88k-harris-cxux7 ;; m88k:*:4*:R4*) GUESS=m88k-motorola-sysv4 ;; m88k:*:3*:R3*) GUESS=m88k-motorola-sysv3 ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if test "$UNAME_PROCESSOR" = mc88100 || test "$UNAME_PROCESSOR" = mc88110 then if test "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx || \ test "$TARGET_BINARY_INTERFACE"x = x then GUESS=m88k-dg-dgux$UNAME_RELEASE else GUESS=m88k-dg-dguxbcs$UNAME_RELEASE fi else GUESS=i586-dg-dgux$UNAME_RELEASE fi ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) GUESS=m88k-dolphin-sysv3 ;; M88*:*:R3*:*) # Delta 88k system running SVR3 GUESS=m88k-motorola-sysv3 ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) GUESS=m88k-tektronix-sysv3 ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) GUESS=m68k-tektronix-bsd ;; *:IRIX*:*:*) IRIX_REL=`echo "$UNAME_RELEASE" | sed -e 's/-/_/g'` GUESS=mips-sgi-irix$IRIX_REL ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. GUESS=romp-ibm-aix # uname -m gives an 8 hex-code CPU id ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) GUESS=i386-ibm-aix ;; ia64:AIX:*:*) if test -x /usr/bin/oslevel ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=$UNAME_VERSION.$UNAME_RELEASE fi GUESS=$UNAME_MACHINE-ibm-aix$IBM_REV ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then set_cc_for_build sed 's/^ //' << EOF > "$dummy.c" #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` then GUESS=$SYSTEM_NAME else GUESS=rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then GUESS=rs6000-ibm-aix3.2.4 else GUESS=rs6000-ibm-aix3.2 fi ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if test -x /usr/bin/lslpp ; then IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | \ awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else IBM_REV=$UNAME_VERSION.$UNAME_RELEASE fi GUESS=$IBM_ARCH-ibm-aix$IBM_REV ;; *:AIX:*:*) GUESS=rs6000-ibm-aix ;; ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) GUESS=romp-ibm-bsd4.4 ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and GUESS=romp-ibm-bsd$UNAME_RELEASE # 4.3 with uname added to ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) GUESS=rs6000-bull-bosx ;; DPX/2?00:B.O.S.:*:*) GUESS=m68k-bull-sysv3 ;; 9000/[34]??:4.3bsd:1.*:*) GUESS=m68k-hp-bsd ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) GUESS=m68k-hp-bsd4.4 ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*.[0B]*//'` case $UNAME_MACHINE in 9000/31?) HP_ARCH=m68000 ;; 9000/[34]??) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if test -x /usr/bin/getconf; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case $sc_cpu_version in 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case $sc_kernel_bits in 32) HP_ARCH=hppa2.0n ;; 64) HP_ARCH=hppa2.0w ;; '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 esac ;; esac fi if test "$HP_ARCH" = ""; then set_cc_for_build sed 's/^ //' << EOF > "$dummy.c" #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if test "$HP_ARCH" = hppa2.0w then set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH=hppa2.0w else HP_ARCH=hppa64 fi fi GUESS=$HP_ARCH-hp-hpux$HPUX_REV ;; ia64:HP-UX:*:*) HPUX_REV=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*.[0B]*//'` GUESS=ia64-hp-hpux$HPUX_REV ;; 3050*:HI-UX:*:*) set_cc_for_build sed 's/^ //' << EOF > "$dummy.c" #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } GUESS=unknown-hitachi-hiuxwe2 ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) GUESS=hppa1.1-hp-bsd ;; 9000/8??:4.3bsd:*:*) GUESS=hppa1.0-hp-bsd ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) GUESS=hppa1.0-hp-mpeix ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) GUESS=hppa1.1-hp-osf ;; hp8??:OSF1:*:*) GUESS=hppa1.0-hp-osf ;; i*86:OSF1:*:*) if test -x /usr/sbin/sysversion ; then GUESS=$UNAME_MACHINE-unknown-osf1mk else GUESS=$UNAME_MACHINE-unknown-osf1 fi ;; parisc*:Lites*:*:*) GUESS=hppa1.1-hp-lites ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) GUESS=c1-convex-bsd ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) GUESS=c34-convex-bsd ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) GUESS=c38-convex-bsd ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) GUESS=c4-convex-bsd ;; CRAY*Y-MP:*:*:*) CRAY_REL=`echo "$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'` GUESS=ymp-cray-unicos$CRAY_REL ;; CRAY*[A-Z]90:*:*:*) echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) CRAY_REL=`echo "$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'` GUESS=t90-cray-unicos$CRAY_REL ;; CRAY*T3E:*:*:*) CRAY_REL=`echo "$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'` GUESS=alphaev5-cray-unicosmk$CRAY_REL ;; CRAY*SV1:*:*:*) CRAY_REL=`echo "$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'` GUESS=sv1-cray-unicos$CRAY_REL ;; *:UNICOS/mp:*:*) CRAY_REL=`echo "$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'` GUESS=craynv-cray-unicosmp$CRAY_REL ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` GUESS=${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL} ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` GUESS=sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL} ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) GUESS=$UNAME_MACHINE-pc-bsdi$UNAME_RELEASE ;; sparc*:BSD/OS:*:*) GUESS=sparc-unknown-bsdi$UNAME_RELEASE ;; *:BSD/OS:*:*) GUESS=$UNAME_MACHINE-unknown-bsdi$UNAME_RELEASE ;; arm:FreeBSD:*:*) UNAME_PROCESSOR=`uname -p` set_cc_for_build if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then FREEBSD_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` GUESS=$UNAME_PROCESSOR-unknown-freebsd$FREEBSD_REL-gnueabi else FREEBSD_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` GUESS=$UNAME_PROCESSOR-unknown-freebsd$FREEBSD_REL-gnueabihf fi ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case $UNAME_PROCESSOR in amd64) UNAME_PROCESSOR=x86_64 ;; i386) UNAME_PROCESSOR=i586 ;; esac FREEBSD_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` GUESS=$UNAME_PROCESSOR-unknown-freebsd$FREEBSD_REL ;; i*:CYGWIN*:*) GUESS=$UNAME_MACHINE-pc-cygwin ;; *:MINGW64*:*) GUESS=$UNAME_MACHINE-pc-mingw64 ;; *:MINGW*:*) GUESS=$UNAME_MACHINE-pc-mingw32 ;; *:MSYS*:*) GUESS=$UNAME_MACHINE-pc-msys ;; i*:PW*:*) GUESS=$UNAME_MACHINE-pc-pw32 ;; *:SerenityOS:*:*) GUESS=$UNAME_MACHINE-pc-serenity ;; *:Interix*:*) case $UNAME_MACHINE in x86) GUESS=i586-pc-interix$UNAME_RELEASE ;; authenticamd | genuineintel | EM64T) GUESS=x86_64-unknown-interix$UNAME_RELEASE ;; IA64) GUESS=ia64-unknown-interix$UNAME_RELEASE ;; esac ;; i*:UWIN*:*) GUESS=$UNAME_MACHINE-pc-uwin ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) GUESS=x86_64-pc-cygwin ;; prep*:SunOS:5.*:*) SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` GUESS=powerpcle-unknown-solaris2$SUN_REL ;; *:GNU:*:*) # the GNU system GNU_ARCH=`echo "$UNAME_MACHINE" | sed -e 's,[-/].*$,,'` GNU_REL=`echo "$UNAME_RELEASE" | sed -e 's,/.*$,,'` GUESS=$GNU_ARCH-unknown-$LIBC$GNU_REL ;; *:GNU/*:*:*) # other systems with GNU libc and userland GNU_SYS=`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"` GNU_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` GUESS=$UNAME_MACHINE-unknown-$GNU_SYS$GNU_REL-$LIBC ;; *:Minix:*:*) GUESS=$UNAME_MACHINE-unknown-minix ;; aarch64:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' /proc/cpuinfo 2>/dev/null` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; arc:Linux:*:* | arceb:Linux:*:* | arc32:Linux:*:* | arc64:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; arm*:Linux:*:*) set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then GUESS=$UNAME_MACHINE-unknown-linux-$LIBC else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then GUESS=$UNAME_MACHINE-unknown-linux-${LIBC}eabi else GUESS=$UNAME_MACHINE-unknown-linux-${LIBC}eabihf fi fi ;; avr32*:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; cris:Linux:*:*) GUESS=$UNAME_MACHINE-axis-linux-$LIBC ;; crisv32:Linux:*:*) GUESS=$UNAME_MACHINE-axis-linux-$LIBC ;; e2k:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; frv:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; hexagon:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; i*86:Linux:*:*) GUESS=$UNAME_MACHINE-pc-linux-$LIBC ;; ia64:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; k1om:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; loongarch32:Linux:*:* | loongarch64:Linux:*:* | loongarchx32:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; m32r*:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; m68*:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; mips:Linux:*:* | mips64:Linux:*:*) set_cc_for_build IS_GLIBC=0 test x"${LIBC}" = xgnu && IS_GLIBC=1 sed 's/^ //' << EOF > "$dummy.c" #undef CPU #undef mips #undef mipsel #undef mips64 #undef mips64el #if ${IS_GLIBC} && defined(_ABI64) LIBCABI=gnuabi64 #else #if ${IS_GLIBC} && defined(_ABIN32) LIBCABI=gnuabin32 #else LIBCABI=${LIBC} #endif #endif #if ${IS_GLIBC} && defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6 CPU=mipsisa64r6 #else #if ${IS_GLIBC} && !defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6 CPU=mipsisa32r6 #else #if defined(__mips64) CPU=mips64 #else CPU=mips #endif #endif #endif #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) MIPS_ENDIAN=el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) MIPS_ENDIAN= #else MIPS_ENDIAN= #endif #endif EOF cc_set_vars=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU\|^MIPS_ENDIAN\|^LIBCABI'` eval "$cc_set_vars" test "x$CPU" != x && { echo "$CPU${MIPS_ENDIAN}-unknown-linux-$LIBCABI"; exit; } ;; mips64el:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; openrisc*:Linux:*:*) GUESS=or1k-unknown-linux-$LIBC ;; or32:Linux:*:* | or1k*:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; padre:Linux:*:*) GUESS=sparc-unknown-linux-$LIBC ;; parisc64:Linux:*:* | hppa64:Linux:*:*) GUESS=hppa64-unknown-linux-$LIBC ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) GUESS=hppa1.1-unknown-linux-$LIBC ;; PA8*) GUESS=hppa2.0-unknown-linux-$LIBC ;; *) GUESS=hppa-unknown-linux-$LIBC ;; esac ;; ppc64:Linux:*:*) GUESS=powerpc64-unknown-linux-$LIBC ;; ppc:Linux:*:*) GUESS=powerpc-unknown-linux-$LIBC ;; ppc64le:Linux:*:*) GUESS=powerpc64le-unknown-linux-$LIBC ;; ppcle:Linux:*:*) GUESS=powerpcle-unknown-linux-$LIBC ;; riscv32:Linux:*:* | riscv32be:Linux:*:* | riscv64:Linux:*:* | riscv64be:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; s390:Linux:*:* | s390x:Linux:*:*) GUESS=$UNAME_MACHINE-ibm-linux-$LIBC ;; sh64*:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; sh*:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; sparc:Linux:*:* | sparc64:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; tile*:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; vax:Linux:*:*) GUESS=$UNAME_MACHINE-dec-linux-$LIBC ;; x86_64:Linux:*:*) set_cc_for_build CPU=$UNAME_MACHINE LIBCABI=$LIBC if test "$CC_FOR_BUILD" != no_compiler_found; then ABI=64 sed 's/^ //' << EOF > "$dummy.c" #ifdef __i386__ ABI=x86 #else #ifdef __ILP32__ ABI=x32 #endif #endif EOF cc_set_abi=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^ABI' | sed 's, ,,g'` eval "$cc_set_abi" case $ABI in x86) CPU=i686 ;; x32) LIBCABI=${LIBC}x32 ;; esac fi GUESS=$CPU-pc-linux-$LIBCABI ;; xtensa*:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. GUESS=i386-sequent-sysv4 ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. GUESS=$UNAME_MACHINE-pc-sysv4.2uw$UNAME_VERSION ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. GUESS=$UNAME_MACHINE-pc-os2-emx ;; i*86:XTS-300:*:STOP) GUESS=$UNAME_MACHINE-unknown-stop ;; i*86:atheos:*:*) GUESS=$UNAME_MACHINE-unknown-atheos ;; i*86:syllable:*:*) GUESS=$UNAME_MACHINE-pc-syllable ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) GUESS=i386-unknown-lynxos$UNAME_RELEASE ;; i*86:*DOS:*:*) GUESS=$UNAME_MACHINE-pc-msdosdjgpp ;; i*86:*:4.*:*) UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then GUESS=$UNAME_MACHINE-univel-sysv$UNAME_REL else GUESS=$UNAME_MACHINE-pc-sysv$UNAME_REL fi ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac GUESS=$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 GUESS=$UNAME_MACHINE-pc-sco$UNAME_REL else GUESS=$UNAME_MACHINE-pc-sysv32 fi ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configure will decide that # this is a cross-build. GUESS=i586-pc-msdosdjgpp ;; Intel:Mach:3*:*) GUESS=i386-pc-mach3 ;; paragon:*:*:*) GUESS=i860-intel-osf1 ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then GUESS=i860-stardent-sysv$UNAME_RELEASE # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. GUESS=i860-unknown-sysv$UNAME_RELEASE # Unknown i860-SVR4 fi ;; mini*:CTIX:SYS*5:*) # "miniframe" GUESS=m68010-convergent-sysv ;; mc68k:UNIX:SYSTEM5:3.51m) GUESS=m68k-convergent-sysv ;; M680?0:D-NIX:5.3:*) GUESS=m68k-diab-dnix ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) GUESS=m68k-unknown-lynxos$UNAME_RELEASE ;; mc68030:UNIX_System_V:4.*:*) GUESS=m68k-atari-sysv4 ;; TSUNAMI:LynxOS:2.*:*) GUESS=sparc-unknown-lynxos$UNAME_RELEASE ;; rs6000:LynxOS:2.*:*) GUESS=rs6000-unknown-lynxos$UNAME_RELEASE ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) GUESS=powerpc-unknown-lynxos$UNAME_RELEASE ;; SM[BE]S:UNIX_SV:*:*) GUESS=mips-dde-sysv$UNAME_RELEASE ;; RM*:ReliantUNIX-*:*:*) GUESS=mips-sni-sysv4 ;; RM*:SINIX-*:*:*) GUESS=mips-sni-sysv4 ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` GUESS=$UNAME_MACHINE-sni-sysv4 else GUESS=ns32k-sni-sysv fi ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says GUESS=i586-unisys-sysv4 ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm GUESS=hppa1.1-stratus-sysv4 ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. GUESS=i860-stratus-sysv4 ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. GUESS=$UNAME_MACHINE-stratus-vos ;; *:VOS:*:*) # From Paul.Green@stratus.com. GUESS=hppa1.1-stratus-vos ;; mc68*:A/UX:*:*) GUESS=m68k-apple-aux$UNAME_RELEASE ;; news*:NEWS-OS:6*:*) GUESS=mips-sony-newsos6 ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if test -d /usr/nec; then GUESS=mips-nec-sysv$UNAME_RELEASE else GUESS=mips-unknown-sysv$UNAME_RELEASE fi ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. GUESS=powerpc-be-beos ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. GUESS=powerpc-apple-beos ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. GUESS=i586-pc-beos ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. GUESS=i586-pc-haiku ;; ppc:Haiku:*:*) # Haiku running on Apple PowerPC GUESS=powerpc-apple-haiku ;; *:Haiku:*:*) # Haiku modern gcc (not bound by BeOS compat) GUESS=$UNAME_MACHINE-unknown-haiku ;; SX-4:SUPER-UX:*:*) GUESS=sx4-nec-superux$UNAME_RELEASE ;; SX-5:SUPER-UX:*:*) GUESS=sx5-nec-superux$UNAME_RELEASE ;; SX-6:SUPER-UX:*:*) GUESS=sx6-nec-superux$UNAME_RELEASE ;; SX-7:SUPER-UX:*:*) GUESS=sx7-nec-superux$UNAME_RELEASE ;; SX-8:SUPER-UX:*:*) GUESS=sx8-nec-superux$UNAME_RELEASE ;; SX-8R:SUPER-UX:*:*) GUESS=sx8r-nec-superux$UNAME_RELEASE ;; SX-ACE:SUPER-UX:*:*) GUESS=sxace-nec-superux$UNAME_RELEASE ;; Power*:Rhapsody:*:*) GUESS=powerpc-apple-rhapsody$UNAME_RELEASE ;; *:Rhapsody:*:*) GUESS=$UNAME_MACHINE-apple-rhapsody$UNAME_RELEASE ;; arm64:Darwin:*:*) GUESS=aarch64-apple-darwin$UNAME_RELEASE ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` case $UNAME_PROCESSOR in unknown) UNAME_PROCESSOR=powerpc ;; esac if command -v xcode-select > /dev/null 2> /dev/null && \ ! xcode-select --print-path > /dev/null 2> /dev/null ; then # Avoid executing cc if there is no toolchain installed as # cc will be a stub that puts up a graphical alert # prompting the user to install developer tools. CC_FOR_BUILD=no_compiler_found else set_cc_for_build fi if test "$CC_FOR_BUILD" != no_compiler_found; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_PPC >/dev/null then UNAME_PROCESSOR=powerpc fi elif test "$UNAME_PROCESSOR" = i386 ; then # uname -m returns i386 or x86_64 UNAME_PROCESSOR=$UNAME_MACHINE fi GUESS=$UNAME_PROCESSOR-apple-darwin$UNAME_RELEASE ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = x86; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi GUESS=$UNAME_PROCESSOR-$UNAME_MACHINE-nto-qnx$UNAME_RELEASE ;; *:QNX:*:4*) GUESS=i386-pc-qnx ;; NEO-*:NONSTOP_KERNEL:*:*) GUESS=neo-tandem-nsk$UNAME_RELEASE ;; NSE-*:NONSTOP_KERNEL:*:*) GUESS=nse-tandem-nsk$UNAME_RELEASE ;; NSR-*:NONSTOP_KERNEL:*:*) GUESS=nsr-tandem-nsk$UNAME_RELEASE ;; NSV-*:NONSTOP_KERNEL:*:*) GUESS=nsv-tandem-nsk$UNAME_RELEASE ;; NSX-*:NONSTOP_KERNEL:*:*) GUESS=nsx-tandem-nsk$UNAME_RELEASE ;; *:NonStop-UX:*:*) GUESS=mips-compaq-nonstopux ;; BS2000:POSIX*:*:*) GUESS=bs2000-siemens-sysv ;; DS/*:UNIX_System_V:*:*) GUESS=$UNAME_MACHINE-$UNAME_SYSTEM-$UNAME_RELEASE ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "${cputype-}" = 386; then UNAME_MACHINE=i386 elif test "x${cputype-}" != x; then UNAME_MACHINE=$cputype fi GUESS=$UNAME_MACHINE-unknown-plan9 ;; *:TOPS-10:*:*) GUESS=pdp10-unknown-tops10 ;; *:TENEX:*:*) GUESS=pdp10-unknown-tenex ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) GUESS=pdp10-dec-tops20 ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) GUESS=pdp10-xkl-tops20 ;; *:TOPS-20:*:*) GUESS=pdp10-unknown-tops20 ;; *:ITS:*:*) GUESS=pdp10-unknown-its ;; SEI:*:*:SEIUX) GUESS=mips-sei-seiux$UNAME_RELEASE ;; *:DragonFly:*:*) DRAGONFLY_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` GUESS=$UNAME_MACHINE-unknown-dragonfly$DRAGONFLY_REL ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case $UNAME_MACHINE in A*) GUESS=alpha-dec-vms ;; I*) GUESS=ia64-dec-vms ;; V*) GUESS=vax-dec-vms ;; esac ;; *:XENIX:*:SysV) GUESS=i386-pc-xenix ;; i*86:skyos:*:*) SKYOS_REL=`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'` GUESS=$UNAME_MACHINE-pc-skyos$SKYOS_REL ;; i*86:rdos:*:*) GUESS=$UNAME_MACHINE-pc-rdos ;; i*86:Fiwix:*:*) GUESS=$UNAME_MACHINE-pc-fiwix ;; *:AROS:*:*) GUESS=$UNAME_MACHINE-unknown-aros ;; x86_64:VMkernel:*:*) GUESS=$UNAME_MACHINE-unknown-esx ;; amd64:Isilon\ OneFS:*:*) GUESS=x86_64-unknown-onefs ;; *:Unleashed:*:*) GUESS=$UNAME_MACHINE-unknown-unleashed$UNAME_RELEASE ;; esac # Do we have a guess based on uname results? if test "x$GUESS" != x; then echo "$GUESS" exit fi # No uname command or uname output not recognized. set_cc_for_build cat > "$dummy.c" < #include #endif #if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__) #if defined (vax) || defined (__vax) || defined (__vax__) || defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__) #include #if defined(_SIZE_T_) || defined(SIGLOST) #include #endif #endif #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) #if !defined (ultrix) #include #if defined (BSD) #if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); #else #if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); #else printf ("vax-dec-bsd\n"); exit (0); #endif #endif #else printf ("vax-dec-bsd\n"); exit (0); #endif #else #if defined(_SIZE_T_) || defined(SIGLOST) struct utsname un; uname (&un); printf ("vax-dec-ultrix%s\n", un.release); exit (0); #else printf ("vax-dec-ultrix\n"); exit (0); #endif #endif #endif #if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__) #if defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__) #if defined(_SIZE_T_) || defined(SIGLOST) struct utsname *un; uname (&un); printf ("mips-dec-ultrix%s\n", un.release); exit (0); #else printf ("mips-dec-ultrix\n"); exit (0); #endif #endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo "$ISP-apollo-$SYSTYPE"; exit; } echo "$0: unable to guess system type" >&2 case $UNAME_MACHINE:$UNAME_SYSTEM in mips:Linux | mips64:Linux) # If we got here on MIPS GNU/Linux, output extra information. cat >&2 <&2 <&2 </dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = "$UNAME_MACHINE" UNAME_RELEASE = "$UNAME_RELEASE" UNAME_SYSTEM = "$UNAME_SYSTEM" UNAME_VERSION = "$UNAME_VERSION" EOF fi exit 1 # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: realmd-0.17.1/build/test-driver0000755003225100322510000001141714315276773016674 0ustar00sbosesbose00000000000000#! /bin/sh # test-driver - basic testsuite driver script. scriptversion=2018-03-07.03; # UTC # Copyright (C) 2011-2021 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. set -u usage_error () { echo "$0: $*" >&2 print_usage >&2 exit 2 } print_usage () { cat <"$log_file" "$@" >>"$log_file" 2>&1 estatus=$? if test $enable_hard_errors = no && test $estatus -eq 99; then tweaked_estatus=1 else tweaked_estatus=$estatus fi case $tweaked_estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; *:*) col=$red res=FAIL recheck=yes gcopy=yes;; esac # Report the test outcome and exit status in the logs, so that one can # know whether the test passed or failed simply by looking at the '.log' # file, without the need of also peaking into the corresponding '.trs' # file (automake bug#11814). echo "$res $test_name (exit status: $estatus)" >>"$log_file" # Report outcome to console. echo "${col}${res}${std}: $test_name" # Register the test result, and other relevant metadata. echo ":test-result: $res" > $trs_file echo ":global-test-result: $res" >> $trs_file echo ":recheck: $recheck" >> $trs_file echo ":copy-in-global-log: $gcopy" >> $trs_file # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: realmd-0.17.1/build/missing0000755003225100322510000001533614315276773016101 0ustar00sbosesbose00000000000000#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1996-2021 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=https://www.perl.org/ flex_URL=https://github.com/westes/flex gnu_software_URL=https://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: realmd-0.17.1/build/m4/0000755003225100322510000000000014315277002014774 5ustar00sbosesbose00000000000000realmd-0.17.1/build/m4/progtest.m40000644003225100322510000000602414315276770017122 0ustar00sbosesbose00000000000000# progtest.m4 serial 7 (gettext-0.18.2) dnl Copyright (C) 1996-2003, 2005, 2008-2016 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1996. AC_PREREQ([2.50]) # Search path for a program which passes the given test. dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) AC_DEFUN([AM_PATH_PROG_WITH_TEST], [ # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL([ac_cv_path_$1], [case "[$]$1" in [[\\/]]* | ?:[[\\/]]*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in ifelse([$5], , $PATH, [$5]); do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$][$1]) else AC_MSG_RESULT([no]) fi AC_SUBST([$1])dnl ]) realmd-0.17.1/build/m4/lib-link.m40000644003225100322510000010044314315276770016754 0ustar00sbosesbose00000000000000# lib-link.m4 serial 26 (gettext-0.18.2) dnl Copyright (C) 2001-2016 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_PREREQ([2.54]) dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and dnl augments the CPPFLAGS variable. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) pushdef([Name],[m4_translit([$1],[./+-], [____])]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ AC_LIB_LINKFLAGS_BODY([$1], [$2]) ac_cv_lib[]Name[]_libs="$LIB[]NAME" ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" ac_cv_lib[]Name[]_cppflags="$INC[]NAME" ac_cv_lib[]Name[]_prefix="$LIB[]NAME[]_PREFIX" ]) LIB[]NAME="$ac_cv_lib[]Name[]_libs" LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" INC[]NAME="$ac_cv_lib[]Name[]_cppflags" LIB[]NAME[]_PREFIX="$ac_cv_lib[]Name[]_prefix" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the dnl results of this search when this library appears as a dependency. HAVE_LIB[]NAME=yes popdef([NAME]) popdef([Name]) ]) dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode, [missing-message]) dnl searches for libname and the libraries corresponding to explicit and dnl implicit dependencies, together with the specified include files and dnl the ability to compile and link the specified testcode. The missing-message dnl defaults to 'no' and may contain additional hints for the user. dnl If found, it sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} dnl and LTLIB${NAME} variables and augments the CPPFLAGS variable, and dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) pushdef([Name],[m4_translit([$1],[./+-], [____])]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME dnl accordingly. AC_LIB_LINKFLAGS_BODY([$1], [$2]) dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, dnl because if the user has installed lib[]Name and not disabled its use dnl via --without-lib[]Name-prefix, he wants to use it. ac_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ ac_save_LIBS="$LIBS" dnl If $LIB[]NAME contains some -l options, add it to the end of LIBS, dnl because these -l options might require -L options that are present in dnl LIBS. -l options benefit only from the -L options listed before it. dnl Otherwise, add it to the front of LIBS, because it may be a static dnl library that depends on another static library that is present in LIBS. dnl Static libraries benefit only from the static libraries listed after dnl it. case " $LIB[]NAME" in *" -l"*) LIBS="$LIBS $LIB[]NAME" ;; *) LIBS="$LIB[]NAME $LIBS" ;; esac AC_LINK_IFELSE( [AC_LANG_PROGRAM([[$3]], [[$4]])], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name='m4_if([$5], [], [no], [[$5]])']) LIBS="$ac_save_LIBS" ]) if test "$ac_cv_lib[]Name" = yes; then HAVE_LIB[]NAME=yes AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the lib][$1 library.]) AC_MSG_CHECKING([how to link with lib[]$1]) AC_MSG_RESULT([$LIB[]NAME]) else HAVE_LIB[]NAME=no dnl If $LIB[]NAME didn't lead to a usable library, we don't need dnl $INC[]NAME either. CPPFLAGS="$ac_save_CPPFLAGS" LIB[]NAME= LTLIB[]NAME= LIB[]NAME[]_PREFIX= fi AC_SUBST([HAVE_LIB]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) popdef([NAME]) popdef([Name]) ]) dnl Determine the platform dependent parameters needed to use rpath: dnl acl_libext, dnl acl_shlibext, dnl acl_libname_spec, dnl acl_library_names_spec, dnl acl_hardcode_libdir_flag_spec, dnl acl_hardcode_libdir_separator, dnl acl_hardcode_direct, dnl acl_hardcode_minus_L. AC_DEFUN([AC_LIB_RPATH], [ dnl Tell automake >= 1.10 to complain if config.rpath is missing. m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])]) AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir AC_CACHE_CHECK([for shared library run path origin], [acl_cv_rpath], [ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done ]) wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" dnl Determine whether the user wants rpath handling at all. AC_ARG_ENABLE([rpath], [ --disable-rpath do not hardcode runtime library paths], :, enable_rpath=yes) ]) dnl AC_LIB_FROMPACKAGE(name, package) dnl declares that libname comes from the given package. The configure file dnl will then not have a --with-libname-prefix option but a dnl --with-package-prefix option. Several libraries can come from the same dnl package. This declaration must occur before an AC_LIB_LINKFLAGS or similar dnl macro call that searches for libname. AC_DEFUN([AC_LIB_FROMPACKAGE], [ pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) define([acl_frompackage_]NAME, [$2]) popdef([NAME]) pushdef([PACK],[$2]) pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) define([acl_libsinpackage_]PACKUP, m4_ifdef([acl_libsinpackage_]PACKUP, [m4_defn([acl_libsinpackage_]PACKUP)[, ]],)[lib$1]) popdef([PACKUP]) popdef([PACK]) ]) dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. dnl Also, sets the LIB${NAME}_PREFIX variable to nonempty if libname was found dnl in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS_BODY], [ AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) pushdef([PACK],[m4_ifdef([acl_frompackage_]NAME, [acl_frompackage_]NAME, lib[$1])]) pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) pushdef([PACKLIBS],[m4_ifdef([acl_frompackage_]NAME, [acl_libsinpackage_]PACKUP, lib[$1])]) dnl Autoconf >= 2.61 supports dots in --with options. pushdef([P_A_C_K],[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.61]),[-1],[m4_translit(PACK,[.],[_])],PACK)]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_ARG_WITH(P_A_C_K[-prefix], [[ --with-]]P_A_C_K[[-prefix[=DIR] search for ]PACKLIBS[ in DIR/include and DIR/lib --without-]]P_A_C_K[[-prefix don't search for ]PACKLIBS[ in includedir and libdir]], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi ]) dnl Search the library and its dependencies in $additional_libdir and dnl $LDFLAGS. Using breadth-first-seach. LIB[]NAME= LTLIB[]NAME= INC[]NAME= LIB[]NAME[]_PREFIX= dnl HAVE_LIB${NAME} is an indicator that LIB${NAME}, LTLIB${NAME} have been dnl computed. So it has to be reset here. HAVE_LIB[]NAME= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='$1 $2' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" dnl See if it was already located by an earlier AC_LIB_LINKFLAGS dnl or AC_LIB_HAVE_LINKFLAGS call. uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" else dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined dnl that this library doesn't exist. So just drop it. : fi else dnl Search the library lib$name in $additional_libdir and $LDFLAGS dnl and the already constructed $LIBNAME/$LTLIBNAME. found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" dnl The same code as in the loop below: dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then dnl Found the library. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then dnl Linking with a shared library. We attempt to hardcode its dnl directory into the executable's runpath, unless it's the dnl standard /usr/lib. if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then dnl No hardcoding is needed. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl Use an explicit option to hardcode DIR into the resulting dnl binary. dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi dnl The hardcoding into $LIBNAME is system dependent. if test "$acl_hardcode_direct" = yes; then dnl Using DIR/libNAME.so during linking hardcodes DIR into the dnl resulting binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode DIR into the resulting dnl binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else dnl Rely on "-L$found_dir". dnl But don't add it if it's already contained in the LDFLAGS dnl or the already constructed $LIBNAME haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl We cannot use $acl_hardcode_runpath_var and LD_RUN_PATH dnl here, because this doesn't fit in flags passed to the dnl compiler. So give up. No hardcoding. This affects only dnl very old systems. dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then dnl Linking with a static library. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" else dnl We shouldn't come here, but anyway it's good to have a dnl fallback. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" fi fi dnl Assume the include files are nearby. additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = '$1'; then LIB[]NAME[]_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = '$1'; then LIB[]NAME[]_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then dnl Potentially add $additional_includedir to $INCNAME. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's /usr/local/include and we are using GCC on Linux, dnl 3. if it's already present in $CPPFLAGS or the already dnl constructed $INCNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INC[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $INCNAME. INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" fi fi fi fi fi dnl Look for dependencies. if test -n "$found_la"; then dnl Read the .la file. It defines the variables dnl dlname, library_names, old_library, dependency_libs, current, dnl age, revision, installed, dlopen, dlpreopen, libdir. save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" dnl We use only dependency_libs. for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's /usr/local/lib and we are using GCC on Linux, dnl 3. if it's already present in $LDFLAGS or the already dnl constructed $LIBNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LIBNAME. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LTLIBNAME. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) dnl Handle this in the next round. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) dnl Handle this in the next round. Throw away the .la's dnl directory; it is already contained in a preceding -L dnl option. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) dnl Most likely an immediate library name. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" ;; esac done fi else dnl Didn't find the library; assume it is in the system directories dnl known to the linker and runtime loader. (All the system dnl directories known to the linker should also be known to the dnl runtime loader, otherwise the system is severely misconfigured.) LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user must dnl pass all path elements in one option. We can arrange that for a dnl single library, but not when more than one $LIBNAMEs are used. alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done dnl Note: acl_hardcode_libdir_flag_spec uses $libdir and $wl. acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" else dnl The -rpath options are cumulative. for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then dnl When using libtool, the option that works for both libraries and dnl executables is -R. The -R options are cumulative. for found_dir in $ltrpathdirs; do LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" done fi popdef([P_A_C_K]) popdef([PACKLIBS]) popdef([PACKUP]) popdef([PACK]) popdef([NAME]) ]) dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, dnl unless already present in VAR. dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes dnl contains two or three consecutive elements that belong together. AC_DEFUN([AC_LIB_APPENDTOVAR], [ for element in [$2]; do haveit= for x in $[$1]; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then [$1]="${[$1]}${[$1]:+ }$element" fi done ]) dnl For those cases where a variable contains several -L and -l options dnl referring to unknown libraries and directories, this macro determines the dnl necessary additional linker options for the runtime path. dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL]) dnl sets LDADDVAR to linker options needed together with LIBSVALUE. dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed, dnl otherwise linking without libtool is assumed. AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS], [ AC_REQUIRE([AC_LIB_RPATH]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) $1= if test "$enable_rpath" != no; then if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode directories into the resulting dnl binary. rpathdirs= next= for opt in $2; do if test -n "$next"; then dir="$next" dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem" \ && test "X$dir" != "X/usr/$acl_libdirstem2"; then rpathdirs="$rpathdirs $dir" fi next= else case $opt in -L) next=yes ;; -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'` dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem" \ && test "X$dir" != "X/usr/$acl_libdirstem2"; then rpathdirs="$rpathdirs $dir" fi next= ;; *) next= ;; esac fi done if test "X$rpathdirs" != "X"; then if test -n ""$3""; then dnl libtool is used for linking. Use -R options. for dir in $rpathdirs; do $1="${$1}${$1:+ }-R$dir" done else dnl The linker is used for linking directly. if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user dnl must pass all path elements in one option. alldirs= for dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="$flag" else dnl The -rpath options are cumulative. for dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="${$1}${$1:+ }$flag" done fi fi fi fi fi AC_SUBST([$1]) ]) realmd-0.17.1/build/m4/gettext.m40000644003225100322510000003676314315276770016754 0ustar00sbosesbose00000000000000# gettext.m4 serial 68 (gettext-0.19.8) dnl Copyright (C) 1995-2014, 2016 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2006, 2008-2010. dnl Macro to add for using GNU gettext. dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The dnl default (if it is not specified or empty) is 'no-libtool'. dnl INTLSYMBOL should be 'external' for packages with no intl directory, dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. dnl If INTLSYMBOL is 'use-libtool', then a libtool library dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, dnl depending on --{enable,disable}-{shared,static} and on the presence of dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library dnl $(top_builddir)/intl/libintl.a will be created. dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext dnl implementations (in libc or libintl) without the ngettext() function dnl will be ignored. If NEEDSYMBOL is specified and is dnl 'need-formatstring-macros', then GNU gettext implementations that don't dnl support the ISO C 99 formatstring macros will be ignored. dnl INTLDIR is used to find the intl libraries. If empty, dnl the value '$(top_builddir)/intl/' is used. dnl dnl The result of the configuration is one of three cases: dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled dnl and used. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 2) GNU gettext has been found in the system's C library. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 3) No internationalization, always use English msgid. dnl Catalog format: none dnl Catalog extension: none dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. dnl The use of .gmo is historical (it was needed to avoid overwriting the dnl GNU format catalogs when building on a platform with an X/Open gettext), dnl but we keep it in order not to force irrelevant filename changes on the dnl maintainers. dnl AC_DEFUN([AM_GNU_GETTEXT], [ dnl Argument checking. ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT ])])])])]) ifelse(ifelse([$1], [], [old])[]ifelse([$1], [no-libtool], [old]), [old], [AC_DIAGNOSE([obsolete], [Use of AM_GNU_GETTEXT without [external] argument is deprecated.])]) ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ])])])]) define([gt_included_intl], ifelse([$1], [external], ifdef([AM_GNU_GETTEXT_][INTL_SUBDIR], [yes], [no]), [yes])) define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], [])) gt_NEEDS_INIT AM_GNU_GETTEXT_NEED([$2]) AC_REQUIRE([AM_PO_SUBDIRS])dnl ifelse(gt_included_intl, yes, [ AC_REQUIRE([AM_INTL_SUBDIR])dnl ]) dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Sometimes libintl requires libiconv, so first search for libiconv. dnl Ideally we would do this search only after the dnl if test "$USE_NLS" = "yes"; then dnl if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT dnl the configure script would need to contain the same shell code dnl again, outside any 'if'. There are two solutions: dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not dnl documented, we avoid it. ifelse(gt_included_intl, yes, , [ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ]) dnl Sometimes, on Mac OS X, libintl requires linking with CoreFoundation. gt_INTL_MACOSX dnl Set USE_NLS. AC_REQUIRE([AM_NLS]) ifelse(gt_included_intl, yes, [ BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no ]) LIBINTL= LTLIBINTL= POSUB= dnl Add a version number to the cache macros. case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" dnl If we use NLS figure out what method if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no ifelse(gt_included_intl, yes, [ AC_MSG_CHECKING([whether included gettext is requested]) AC_ARG_WITH([included-gettext], [ --with-included-gettext use the GNU gettext library included here], nls_cv_force_use_gnu_gettext=$withval, nls_cv_force_use_gnu_gettext=no) AC_MSG_RESULT([$nls_cv_force_use_gnu_gettext]) nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then ]) dnl User does not insist on using GNU NLS library. Figure out what dnl to use. If GNU gettext is available we use this. Else we have dnl to fall back to GNU NLS library. if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc], [AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include #ifndef __GNU_GETTEXT_SUPPORTED_REVISION extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; #define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_domain_bindings) #else #define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 #endif $gt_revision_test_code ]], [[ bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION ]])], [eval "$gt_func_gnugettext_libc=yes"], [eval "$gt_func_gnugettext_libc=no"])]) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl Sometimes libintl requires libiconv, so first search for libiconv. ifelse(gt_included_intl, yes, , [ AM_ICONV_LINK ]) dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) dnl because that would add "-liconv" to LIBINTL and LTLIBINTL dnl even if libiconv doesn't exist. AC_LIB_LINKFLAGS_BODY([intl]) AC_CACHE_CHECK([for GNU gettext in libintl], [$gt_func_gnugettext_libintl], [gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" dnl Now see whether libintl exists and does not depend on libiconv. AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include #ifndef __GNU_GETTEXT_SUPPORTED_REVISION extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); #define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias ("")) #else #define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 #endif $gt_revision_test_code ]], [[ bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION ]])], [eval "$gt_func_gnugettext_libintl=yes"], [eval "$gt_func_gnugettext_libintl=no"]) dnl Now see whether libintl exists and depends on libiconv. if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include #ifndef __GNU_GETTEXT_SUPPORTED_REVISION extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); #define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias ("")) #else #define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 #endif $gt_revision_test_code ]], [[ bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION ]])], [LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" ]) fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS"]) fi dnl If an already present or preinstalled GNU gettext() is found, dnl use it. But if this macro is used in GNU gettext, and GNU dnl gettext is already preinstalled in libintl, we update this dnl libintl. (Cf. the install rule in intl/Makefile.in.) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else dnl Reset the values set by searching for libintl. LIBINTL= LTLIBINTL= INCINTL= fi ifelse(gt_included_intl, yes, [ if test "$gt_use_preinstalled_gnugettext" != "yes"; then dnl GNU gettext is not found in the C library. dnl Fall back on included GNU gettext library. nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions used to generate GNU NLS library. BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV $LIBTHREAD" LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV $LTLIBTHREAD" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi CATOBJEXT= if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions to use GNU gettext tools. CATOBJEXT=.gmo fi ]) if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Some extra flags are needed during linking. LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then AC_DEFINE([ENABLE_NLS], [1], [Define to 1 if translation of program messages to the user's native language is requested.]) else USE_NLS=no fi fi AC_MSG_CHECKING([whether to use NLS]) AC_MSG_RESULT([$USE_NLS]) if test "$USE_NLS" = "yes"; then AC_MSG_CHECKING([where the gettext function comes from]) if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi AC_MSG_RESULT([$gt_source]) fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then AC_MSG_CHECKING([how to link with libintl]) AC_MSG_RESULT([$LIBINTL]) AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) fi dnl For backward compatibility. Some packages may be using this. AC_DEFINE([HAVE_GETTEXT], [1], [Define if the GNU gettext() function is already present or preinstalled.]) AC_DEFINE([HAVE_DCGETTEXT], [1], [Define if the GNU dcgettext() function is already present or preinstalled.]) fi dnl We need to process the po/ directory. POSUB=po fi ifelse(gt_included_intl, yes, [ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL dnl to 'yes' because some of the testsuite requires it. if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then BUILD_INCLUDED_LIBINTL=yes fi dnl Make all variables we use known to autoconf. AC_SUBST([BUILD_INCLUDED_LIBINTL]) AC_SUBST([USE_INCLUDED_LIBINTL]) AC_SUBST([CATOBJEXT]) dnl For backward compatibility. Some configure.ins may be using this. nls_cv_header_intl= nls_cv_header_libgt= dnl For backward compatibility. Some Makefiles may be using this. DATADIRNAME=share AC_SUBST([DATADIRNAME]) dnl For backward compatibility. Some Makefiles may be using this. INSTOBJEXT=.mo AC_SUBST([INSTOBJEXT]) dnl For backward compatibility. Some Makefiles may be using this. GENCAT=gencat AC_SUBST([GENCAT]) dnl For backward compatibility. Some Makefiles may be using this. INTLOBJS= if test "$USE_INCLUDED_LIBINTL" = yes; then INTLOBJS="\$(GETTOBJS)" fi AC_SUBST([INTLOBJS]) dnl Enable libtool support if the surrounding package wishes it. INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix AC_SUBST([INTL_LIBTOOL_SUFFIX_PREFIX]) ]) dnl For backward compatibility. Some Makefiles may be using this. INTLLIBS="$LIBINTL" AC_SUBST([INTLLIBS]) dnl Make all documented variables known to autoconf. AC_SUBST([LIBINTL]) AC_SUBST([LTLIBINTL]) AC_SUBST([POSUB]) ]) dnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized. m4_define([gt_NEEDS_INIT], [ m4_divert_text([DEFAULTS], [gt_needs=]) m4_define([gt_NEEDS_INIT], []) ]) dnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL]) AC_DEFUN([AM_GNU_GETTEXT_NEED], [ m4_divert_text([INIT_PREPARE], [gt_needs="$gt_needs $1"]) ]) dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) dnl Usage: AM_GNU_GETTEXT_REQUIRE_VERSION([gettext-version]) AC_DEFUN([AM_GNU_GETTEXT_REQUIRE_VERSION], []) realmd-0.17.1/build/m4/lib-prefix.m40000644003225100322510000002042214315276770017312 0ustar00sbosesbose00000000000000# lib-prefix.m4 serial 7 (gettext-0.18) dnl Copyright (C) 2001-2005, 2008-2016 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't dnl require excessive bracketing. ifdef([AC_HELP_STRING], [AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], [AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed dnl to access previously installed libraries. The basic assumption is that dnl a user will want packages to use other packages he previously installed dnl with the same --prefix option. dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate dnl libraries, but is otherwise very convenient. AC_DEFUN([AC_LIB_PREFIX], [ AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) AC_REQUIRE([AC_PROG_CC]) AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_LIB_ARG_WITH([lib-prefix], [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib --without-lib-prefix don't search for libraries in includedir and libdir], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" fi fi ]) if test $use_additional = yes; then dnl Potentially add $additional_includedir to $CPPFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's already present in $CPPFLAGS, dnl 3. if it's /usr/local/include and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= for x in $CPPFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $CPPFLAGS. CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" fi fi fi fi dnl Potentially add $additional_libdir to $LDFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's already present in $LDFLAGS, dnl 3. if it's /usr/local/lib and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then haveit= for x in $LDFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LDFLAGS. LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" fi fi fi fi fi ]) dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, dnl acl_final_exec_prefix, containing the values to which $prefix and dnl $exec_prefix will expand at the end of the configure script. AC_DEFUN([AC_LIB_PREPARE_PREFIX], [ dnl Unfortunately, prefix and exec_prefix get only finally determined dnl at the end of configure. if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" ]) dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the dnl variables prefix and exec_prefix bound to the values they will have dnl at the end of the configure script. AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], [ acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" $1 exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" ]) dnl AC_LIB_PREPARE_MULTILIB creates dnl - a variable acl_libdirstem, containing the basename of the libdir, either dnl "lib" or "lib64" or "lib/64", dnl - a variable acl_libdirstem2, as a secondary possible value for dnl acl_libdirstem, either the same as acl_libdirstem or "lib/sparcv9" or dnl "lib/amd64". AC_DEFUN([AC_LIB_PREPARE_MULTILIB], [ dnl There is no formal standard regarding lib and lib64. dnl On glibc systems, the current practice is that on a system supporting dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under dnl $prefix/lib64 and 32-bit libraries go under $prefix/lib. We determine dnl the compiler's default mode by looking at the compiler's library search dnl path. If at least one of its elements ends in /lib64 or points to a dnl directory whose absolute pathname ends in /lib64, we assume a 64-bit ABI. dnl Otherwise we use the default, namely "lib". dnl On Solaris systems, the current practice is that on a system supporting dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under dnl $prefix/lib/64 (which is a symlink to either $prefix/lib/sparcv9 or dnl $prefix/lib/amd64) and 32-bit libraries go under $prefix/lib. AC_REQUIRE([AC_CANONICAL_HOST]) acl_libdirstem=lib acl_libdirstem2= case "$host_os" in solaris*) dnl See Solaris 10 Software Developer Collection > Solaris 64-bit Developer's Guide > The Development Environment dnl . dnl "Portable Makefiles should refer to any library directories using the 64 symbolic link." dnl But we want to recognize the sparcv9 or amd64 subdirectory also if the dnl symlink is missing, so we set acl_libdirstem2 too. AC_CACHE_CHECK([for 64-bit host], [gl_cv_solaris_64bit], [AC_EGREP_CPP([sixtyfour bits], [ #ifdef _LP64 sixtyfour bits #endif ], [gl_cv_solaris_64bit=yes], [gl_cv_solaris_64bit=no]) ]) if test $gl_cv_solaris_64bit = yes; then acl_libdirstem=lib/64 case "$host_cpu" in sparc*) acl_libdirstem2=lib/sparcv9 ;; i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; esac fi ;; *) searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; */../ | */.. ) # Better ignore directories of this form. They are misleading. ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ;; esac test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" ]) realmd-0.17.1/build/m4/nls.m40000644003225100322510000000230714315276770016047 0ustar00sbosesbose00000000000000# nls.m4 serial 5 (gettext-0.18) dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software dnl Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ([2.50]) AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE([nls], [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT([$USE_NLS]) AC_SUBST([USE_NLS]) ]) realmd-0.17.1/build/m4/iconv.m40000644003225100322510000002207214315276770016372 0ustar00sbosesbose00000000000000# iconv.m4 serial 19 (gettext-0.18.2) dnl Copyright (C) 2000-2002, 2007-2014, 2016 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], [ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_LIB_LINKFLAGS_BODY([iconv]) ]) AC_DEFUN([AM_ICONV_LINK], [ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and dnl those with the standalone portable GNU libiconv installed). AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) dnl Add $INCICONV to CPPFLAGS before performing the following checks, dnl because if the user has installed libiconv and not disabled its use dnl via --without-libiconv-prefix, he wants to use it. The first dnl AC_LINK_IFELSE will then fail, the second AC_LINK_IFELSE will succeed. am_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) AC_CACHE_CHECK([for iconv], [am_cv_func_iconv], [ am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include #include ]], [[iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);]])], [am_cv_func_iconv=yes]) if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include #include ]], [[iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);]])], [am_cv_lib_iconv=yes] [am_cv_func_iconv=yes]) LIBS="$am_save_LIBS" fi ]) if test "$am_cv_func_iconv" = yes; then AC_CACHE_CHECK([for working iconv], [am_cv_func_iconv_works], [ dnl This tests against bugs in AIX 5.1, AIX 6.1..7.1, HP-UX 11.11, dnl Solaris 10. am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi am_cv_func_iconv_works=no for ac_iconv_const in '' 'const'; do AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[ #include #include #ifndef ICONV_CONST # define ICONV_CONST $ac_iconv_const #endif ]], [[int result = 0; /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static ICONV_CONST char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; ICONV_CONST char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 1; iconv_close (cd_utf8_to_88591); } } /* Test against Solaris 10 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); if (cd_ascii_to_88591 != (iconv_t)(-1)) { static ICONV_CONST char input[] = "\263"; char buf[10]; ICONV_CONST char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_ascii_to_88591, &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 2; iconv_close (cd_ascii_to_88591); } } /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ { iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static ICONV_CONST char input[] = "\304"; static char buf[2] = { (char)0xDE, (char)0xAD }; ICONV_CONST char *inptr = input; size_t inbytesleft = 1; char *outptr = buf; size_t outbytesleft = 1; size_t res = iconv (cd_88591_to_utf8, &inptr, &inbytesleft, &outptr, &outbytesleft); if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) result |= 4; iconv_close (cd_88591_to_utf8); } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static ICONV_CONST char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; ICONV_CONST char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) result |= 8; iconv_close (cd_88591_to_utf8); } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) result |= 16; return result; ]])], [am_cv_func_iconv_works=yes], , [case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac]) test "$am_cv_func_iconv_works" = no || break done LIBS="$am_save_LIBS" ]) case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then AC_DEFINE([HAVE_ICONV], [1], [Define if you have the iconv() function and it works.]) fi if test "$am_cv_lib_iconv" = yes; then AC_MSG_CHECKING([how to link with libiconv]) AC_MSG_RESULT([$LIBICONV]) else dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV dnl either. CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi AC_SUBST([LIBICONV]) AC_SUBST([LTLIBICONV]) ]) dnl Define AM_ICONV using AC_DEFUN_ONCE for Autoconf >= 2.64, in order to dnl avoid warnings like dnl "warning: AC_REQUIRE: `AM_ICONV' was expanded before it was required". dnl This is tricky because of the way 'aclocal' is implemented: dnl - It requires defining an auxiliary macro whose name ends in AC_DEFUN. dnl Otherwise aclocal's initial scan pass would miss the macro definition. dnl - It requires a line break inside the AC_DEFUN_ONCE and AC_DEFUN expansions. dnl Otherwise aclocal would emit many "Use of uninitialized value $1" dnl warnings. m4_define([gl_iconv_AC_DEFUN], m4_version_prereq([2.64], [[AC_DEFUN_ONCE( [$1], [$2])]], [m4_ifdef([gl_00GNULIB], [[AC_DEFUN_ONCE( [$1], [$2])]], [[AC_DEFUN( [$1], [$2])]])])) gl_iconv_AC_DEFUN([AM_ICONV], [ AM_ICONV_LINK if test "$am_cv_func_iconv" = yes; then AC_MSG_CHECKING([for iconv declaration]) AC_CACHE_VAL([am_cv_proto_iconv], [ AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif ]], [[]])], [am_cv_proto_iconv_arg1=""], [am_cv_proto_iconv_arg1="const"]) am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` AC_MSG_RESULT([ $am_cv_proto_iconv]) AC_DEFINE_UNQUOTED([ICONV_CONST], [$am_cv_proto_iconv_arg1], [Define as const if the declaration of iconv() needs const.]) dnl Also substitute ICONV_CONST in the gnulib generated . m4_ifdef([gl_ICONV_H_DEFAULTS], [AC_REQUIRE([gl_ICONV_H_DEFAULTS]) if test -n "$am_cv_proto_iconv_arg1"; then ICONV_CONST="const" fi ]) fi ]) realmd-0.17.1/build/m4/po.m40000644003225100322510000004503114315276770015672 0ustar00sbosesbose00000000000000# po.m4 serial 24 (gettext-0.19) dnl Copyright (C) 1995-2014, 2016 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ([2.60]) dnl Checks for all prerequisites of the po subdirectory. AC_DEFUN([AM_PO_SUBDIRS], [ AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl AC_REQUIRE([AC_PROG_SED])dnl AC_REQUIRE([AM_NLS])dnl dnl Release version of the gettext macros. This is used to ensure that dnl the gettext macros and po/Makefile.in.in are in sync. AC_SUBST([GETTEXT_MACRO_VERSION], [0.19]) dnl Perform the following tests also if --disable-nls has been given, dnl because they are needed for "make dist" to work. dnl Search for GNU msgfmt in the PATH. dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. dnl The second test excludes FreeBSD msgfmt. AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) AC_PATH_PROG([GMSGFMT], [gmsgfmt], [$MSGFMT]) dnl Test whether it is GNU msgfmt >= 0.15. changequote(,)dnl case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac changequote([,])dnl AC_SUBST([MSGFMT_015]) changequote(,)dnl case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac changequote([,])dnl AC_SUBST([GMSGFMT_015]) dnl Search for GNU xgettext 0.12 or newer in the PATH. dnl The first test excludes Solaris xgettext and early GNU xgettext versions. dnl The second test excludes FreeBSD xgettext. AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po dnl Test whether it is GNU xgettext >= 0.15. changequote(,)dnl case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac changequote([,])dnl AC_SUBST([XGETTEXT_015]) dnl Search for GNU msgmerge 0.11 or newer in the PATH. AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :) dnl Installation directories. dnl Autoconf >= 2.60 defines localedir. For older versions of autoconf, we dnl have to define it here, so that it can be used in po/Makefile. test -n "$localedir" || localedir='${datadir}/locale' AC_SUBST([localedir]) dnl Support for AM_XGETTEXT_OPTION. test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= AC_SUBST([XGETTEXT_EXTRA_OPTIONS]) AC_CONFIG_COMMANDS([po-directories], [[ for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" gt_tab=`printf '\t'` cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ${gt_tab}]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done]], [# Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" ]) ]) dnl Postprocesses a Makefile in a directory containing PO files. AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], [ # When this code is run, in config.status, two variables have already been # set: # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in, # - LINGUAS is the value of the environment variable LINGUAS at configure # time. changequote(,)dnl # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Find a way to echo strings without interpreting backslash. if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then gt_echo='echo' else if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then gt_echo='printf %s\n' else echo_func () { cat < "$ac_file.tmp" tab=`printf '\t'` if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` cat >> "$ac_file.tmp" < /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'` cat >> "$ac_file.tmp" <> "$ac_file.tmp" <]], [[CFPreferencesCopyAppValue(NULL, NULL)]])], [gt_cv_func_CFPreferencesCopyAppValue=yes], [gt_cv_func_CFPreferencesCopyAppValue=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1], [Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework.]) fi dnl Check for API introduced in Mac OS X 10.3. AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent], [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[CFLocaleCopyCurrent();]])], [gt_cv_func_CFLocaleCopyCurrent=yes], [gt_cv_func_CFLocaleCopyCurrent=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFLocaleCopyCurrent = yes; then AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1], [Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework.]) fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi AC_SUBST([INTL_MACOSX_LIBS]) ]) realmd-0.17.1/build/m4/lib-ld.m40000644003225100322510000000714314315276770016421 0ustar00sbosesbose00000000000000# lib-ld.m4 serial 6 dnl Copyright (C) 1996-2003, 2009-2016 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Subroutines of libtool.m4, dnl with replacements s/_*LT_PATH/AC_LIB_PROG/ and s/lt_/acl_/ to avoid dnl collision with libtool.m4. dnl From libtool-2.4. Sets the variable with_gnu_ld to yes or no. AC_DEFUN([AC_LIB_PROG_LD_GNU], [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], [acl_cv_prog_gnu_ld], [# I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 /dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'` while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL([acl_cv_path_LD], [if test -z "$LD"; then acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$acl_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 . # # This is a TAP driver for automake # # In particular it leaves stderr untouched, and is cleaner than the # one implemented in shell that is making the rounds. # # This implements the automake "Custom Test Driver" protocol: # https://www.gnu.org/software/automake/manual/html_node/Custom-Test-Drivers.html # # This consumes the Test Anything Protocol (ie: TAP) # https://metacpan.org/pod/release/PETDANCE/Test-Harness-2.64/lib/Test/Harness/TAP.pod # import argparse import fcntl import os import select import struct import subprocess import sys import termios import errno _PY3 = sys.version[0] >= '3' _str = _PY3 and str or unicode def out(data, stream=None, flush=False): if not isinstance(data, bytes): data = data.encode("UTF-8") if not stream: stream = _PY3 and sys.stdout.buffer or sys.stdout while True: try: if data: stream.write(data) data = None if flush: stream.flush() flush = False break except IOError as e: if e.errno == errno.EAGAIN: continue raise def terminal_width(): try: h, w, hp, wp = struct.unpack('HHHH', fcntl.ioctl(1, termios.TIOCGWINSZ, struct.pack('HHHH', 0, 0, 0, 0))) return w except IOError as e: if e.errno != errno.ENOTTY: sys.stderr.write("%i %s %s\n" % (e.errno, e.strerror, sys.exc_info())) return sys.maxsize class Driver: def __init__(self, args): self.argv = args.command self.test_name = args.test_name self.log = open(args.log_file, "wb") self.log.write(("# %s\n" % " ".join(sys.argv)).encode("UTF-8")) self.trs = open(args.trs_file, "w") self.color_tests = args.color_tests self.expect_failure = args.expect_failure self.width = terminal_width() - 9 def report(self, code, *args): CODES = { "XPASS": '\x1b[0;31m', # red "FAIL": '\x1b[0;31m', # red "PASS": '\x1b[0;32m', # grn "XFAIL": '\x1b[1;32m', # lgn "SKIP": '\x1b[1;34m', # blu "ERROR": '\x1b[0;35m', # mgn } # Print out to console if self.color_tests: if code in CODES: out(CODES[code]) out(code) if self.color_tests: out('\x1b[m') out(": ") msg = "".join([ self.test_name + " " ] + list(map(_str, args))) if code == "PASS" and len(msg) > self.width: out(msg[:self.width]) out("...") else: out(msg) out("\n", flush=True) # Book keeping if code in CODES: self.trs.write(":test-result: %s\n" % code) def result_pass(self, *args): if self.expect_failure: self.report("XPASS", *args) else: self.report("PASS", *args) def result_fail(self, *args): if self.expect_failure: self.report("XFAIL", *args) else: self.report("FAIL", *args) def result_skip(self, *args): if self.expect_failure: self.report("XFAIL", *args) else: self.report("SKIP", *args) def report_error(self, description=""): self.report("ERROR", "", description) def process(self, output): pass def execute(self): try: proc = subprocess.Popen(self.argv, close_fds=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) except OSError as ex: self.report_error("Couldn't run %s: %s" % (self.argv[0], str(ex))) return proc.stdin.close() outf = proc.stdout.fileno() errf = proc.stderr.fileno() rset = [outf, errf] while len(rset) > 0: ret = select.select(rset, [], [], 10) if outf in ret[0]: data = os.read(outf, 1024) if data == b"": rset.remove(outf) self.log.write(data) self.process(data) if errf in ret[0]: data = os.read(errf, 1024) if data == b"": rset.remove(errf) self.log.write(data) stream = _PY3 and sys.stderr.buffer or sys.stderr out(data, stream=stream, flush=True) proc.wait() # Make sure the test didn't change blocking output assert fcntl.fcntl(0, fcntl.F_GETFL) & os.O_NONBLOCK == 0 assert fcntl.fcntl(1, fcntl.F_GETFL) & os.O_NONBLOCK == 0 assert fcntl.fcntl(2, fcntl.F_GETFL) & os.O_NONBLOCK == 0 return proc.returncode class TapDriver(Driver): def __init__(self, args): Driver.__init__(self, args) self.output = "" self.reported = { } self.test_plan = None self.late_plan = False self.errored = False self.bail_out = False self.skip_all_reason = None def report(self, code, num, *args): if num: Driver.report(self, code, num, " ", *args) self.reported[num] = code else: Driver.report(self, code, *args) if code == "ERROR": self.errored = True def consume_test_line(self, ok, data): # It's an error if the caller sends a test plan in the middle of tests if self.late_plan: self.report_error("Got tests after late TAP test plan") self.late_plan = False # Parse out a number and then description (num, unused, description) = data.partition(" ") try: num = int(num) except ValueError: self.report_error("Invalid test number: %s" % data) return description = description.lstrip() # Special case if description starts with this, then skip if description.lower().startswith("# skip"): self.result_skip(num, description) elif ok: self.result_pass(num, description) else: self.result_fail(num, description) def consume_test_plan(self, line): # Only one test plan is supported if self.test_plan: self.report_error("Get a second TAP test plan") return if line.lower().startswith('1..0 # skip'): self.skip_all_reason = line[5:].strip() self.bail_out = True return try: (first, unused, last) = line.partition("..") first = int(first) last = int(last) except ValueError: self.report_error("Invalid test plan: %s..%s" % (first, last)) return self.test_plan = (first, last) self.late_plan = self.reported and True or False def consume_bail_out(self, line): self.bail_out = True self.report("SKIP", 0, line) def process(self, output): if output: self.output += output.decode("UTF-8") elif self.output: self.output += "\n" (ready, unused, self.output) = self.output.rpartition("\n") for line in ready.split("\n"): if line.startswith("ok "): self.consume_test_line(True, line[3:]) elif line.startswith("not ok "): self.consume_test_line(False, line[7:]) elif line and line[0].isdigit() and ".." in line: self.consume_test_plan(line) elif line.lower().startswith("bail out!"): self.consume_bail_out(line) def run(self): returncode = self.execute() failed = False skipped = True if self.skip_all_reason is not None: self.result_skip("skipping:", self.skip_all_reason) self.trs.write(":global-test-result: SKIP\n") self.trs.write(":test-global-result: SKIP\n") self.trs.write(":recheck: no\n") return 0 # Basic collation of results for (num, code) in self.reported.items(): if code == "ERROR": self.errored = True elif code == "FAIL" or code == "XPASS": failed = True if code != "SKIP": skipped = False if not self.errored and returncode: self.report_error("process failed: %d" % returncode) self.errored = True # Check the plan if not self.errored: if not self.test_plan: if not self.bail_out: self.report_error("Didn't receive a TAP test plan") else: for i in range(self.test_plan[0], self.test_plan[1] + 1): if i not in self.reported: if self.bail_out: self.report("SKIP", i, "- bailed out") else: self.report("ERROR", i, "- missing test") skipped = False self.errored = True if self.errored: self.trs.write(":global-test-result: ERROR\n") self.trs.write(":test-global-result: ERROR\n") self.trs.write(":recheck: yes\n") elif failed: self.trs.write(":global-test-result: FAIL\n") self.trs.write(":test-global-result: FAIL\n") self.trs.write(":recheck: yes\n") elif skipped: self.trs.write(":global-test-result: SKIP\n") self.trs.write(":test-global-result: SKIP\n") self.trs.write(":recheck: no\n") else: self.trs.write(":global-test-result: PASS\n") self.trs.write(":test-global-result: PASS\n") self.trs.write(":recheck: no\n") if self.errored or failed: self.trs.write(":copy-in-global-log: yes\n") # Process result code return 0 class SimpleDriver(Driver): def __init__(self, args): Driver.__init__(self, args) def run(self): returncode = self.execute() if returncode == 0: self.result_pass() self.trs.write(":global-test-result: PASS\n") self.trs.write(":test-global-result: PASS\n") self.trs.write(":recheck: no\n") elif returncode == 77: self.result_skip() self.trs.write(":global-test-result: SKIP\n") self.trs.write(":test-global-result: SKIP\n") self.trs.write(":recheck: no\n") elif returncode == 99: self.report_error() self.trs.write(":global-test-result: ERROR\n") self.trs.write(":test-global-result: ERROR\n") self.trs.write(":copy-in-global-log: yes\n") self.trs.write(":recheck: yes\n") else: self.result_fail() self.trs.write(":global-test-result: FAIL\n") self.trs.write(":test-global-result: FAIL\n") self.trs.write(":copy-in-global-log: yes\n") self.trs.write(":recheck: yes\n") # Process result code return 0 class MissingDriver(Driver): def __init__(self, args): Driver.__init__(self, args) self.missing = args.missing def run(self): self.result_skip("skipping due to: ", self.missing) self.trs.write(":global-test-result: SKIP\n") self.trs.write(":test-global-result: SKIP\n") self.trs.write(":recheck: no\n") return 0 class YesNoAction(argparse.Action): def __init__(self, option_strings, dest, **kwargs): argparse.Action.__init__(self, option_strings, dest, **kwargs) self.metavar = "[yes|no]" def __call__(self, parser, namespace, values, option_string=None): if not values or "yes" in values: setattr(namespace, self.dest, True) else: setattr(namespace, self.dest, False) def main(argv): parser = argparse.ArgumentParser(description='Automake TAP driver') parser.add_argument('--format', metavar='FORMAT', choices=[ "simple", "tap" ], default="tap", help='The type of test to drive') parser.add_argument('--missing', metavar="TOOL", nargs='?', help="Force the test to skip due to missing tool") parser.add_argument('--test-name', metavar='NAME', help='The name of the test') parser.add_argument('--log-file', metavar='PATH.log', required=True, help='The .log file the driver creates') parser.add_argument('--trs-file', metavar='PATH.trs', required=True, help='The .trs file the driver creates') parser.add_argument('--color-tests', default=True, action=YesNoAction, help='Whether the console output should be colorized or not') parser.add_argument('--expect-failure', default=False, action=YesNoAction, help="Whether the tested program is expected to fail") parser.add_argument('--enable-hard-errors', default=False, action=YesNoAction, help="Whether hard errors in the tested program are treated differently") parser.add_argument('command', nargs='+', help="A test command line to run") args = parser.parse_args(argv[1:]) if not args.test_name: args.test_name = os.path.basename(args.command[0]) if args.missing: driver = MissingDriver(args) elif args.format == "simple": driver = SimpleDriver(args) elif args.format == "tap": driver = TapDriver(args) return driver.run() if __name__ == "__main__": sys.exit(main(sys.argv)) realmd-0.17.1/build/depcomp0000755003225100322510000005602014315276773016052 0ustar00sbosesbose00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2018-03-07.03; # UTC # Copyright (C) 1999-2021 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: realmd-0.17.1/build/config.rpath0000755003225100322510000004421614315276770017006 0ustar00sbosesbose00000000000000#! /bin/sh # Output a system dependent set of variables, describing how to set the # run time search path of shared libraries in an executable. # # Copyright 1996-2016 Free Software Foundation, Inc. # Taken from GNU libtool, 2001 # Originally by Gordon Matzigkeit , 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld # should be set by the caller. # # The set of defined variables is at the end of this script. # Known limitations: # - On IRIX 6.5 with CC="cc", the run time search patch must not be longer # than 256 bytes, otherwise the compiler driver will dump core. The only # known workaround is to choose shorter directory names for the build # directory and/or the installation directory. # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a shrext=.so host="$1" host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` # Code taken from libtool.m4's _LT_CC_BASENAME. for cc_temp in $CC""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` # Code taken from libtool.m4's _LT_COMPILER_PIC. wl= if test "$GCC" = yes; then wl='-Wl,' else case "$host_os" in aix*) wl='-Wl,' ;; mingw* | cygwin* | pw32* | os2* | cegcc*) ;; hpux9* | hpux10* | hpux11*) wl='-Wl,' ;; irix5* | irix6* | nonstopux*) wl='-Wl,' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in ecc*) wl='-Wl,' ;; icc* | ifort*) wl='-Wl,' ;; lf95*) wl='-Wl,' ;; nagfor*) wl='-Wl,-Wl,,' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) wl='-Wl,' ;; ccc*) wl='-Wl,' ;; xl* | bgxl* | bgf* | mpixl*) wl='-Wl,' ;; como) wl='-lopt=' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ F* | *Sun*Fortran*) wl= ;; *Sun\ C*) wl='-Wl,' ;; esac ;; esac ;; newsos6) ;; *nto* | *qnx*) ;; osf3* | osf4* | osf5*) wl='-Wl,' ;; rdos*) ;; solaris*) case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) wl='-Qoption ld ' ;; *) wl='-Wl,' ;; esac ;; sunos4*) wl='-Qoption ld ' ;; sysv4 | sysv4.2uw2* | sysv4.3*) wl='-Wl,' ;; sysv4*MP*) ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) wl='-Wl,' ;; unicos*) wl='-Wl,' ;; uts4*) ;; esac fi # Code taken from libtool.m4's _LT_LINKER_SHLIBS. hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no case "$host_os" in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. # Unlike libtool, we use -rpath here, not --rpath, since the documented # option of GNU ld is called -rpath, not --rpath. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' case "$host_os" in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no fi ;; amigaos*) case "$host_cpu" in powerpc) ;; m68k) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then : else ld_shlibs=no fi ;; haiku*) ;; interix[3-9]*) hardcode_direct=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; netbsd*) ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' else ld_shlibs=no fi ;; esac ;; sunos4*) hardcode_direct=yes ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then hardcode_libdir_flag_spec= fi else case "$host_os" in aix3*) # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac fi hardcode_direct=yes hardcode_libdir_separator=':' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac fi # Begin _LT_AC_SYS_LIBPATH_AIX. echo 'int main () { return 0; }' > conftest.c ${CC} ${LDFLAGS} conftest.c -o conftest aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` fi if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib" fi rm -f conftest.c conftest # End _LT_AC_SYS_LIBPATH_AIX. if test "$aix_use_runtimelinking" = yes; then hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' else hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" fi fi ;; amigaos*) case "$host_cpu" in powerpc) ;; m68k) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' libext=lib ;; darwin* | rhapsody*) hardcode_direct=no if { case $cc_basename in ifort*) true;; *) test "$GCC" = yes;; esac; }; then : else ld_shlibs=no fi ;; dgux*) hardcode_libdir_flag_spec='-L$libdir' ;; freebsd2.[01]*) hardcode_direct=yes hardcode_minus_L=yes ;; freebsd* | dragonfly*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; hpux9*) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; hpux10*) if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no ;; *) hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; netbsd*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; newsos6) hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then hardcode_libdir_flag_spec='${wl}-rpath,$libdir' else case "$host_os" in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) hardcode_libdir_flag_spec='-R$libdir' ;; *) hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; osf3*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) if test "$GCC" = yes; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else # Both cc and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) hardcode_libdir_flag_spec='-R$libdir' ;; sunos4*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes ;; sysv4) case $host_vendor in sni) hardcode_direct=yes # is this really true??? ;; siemens) hardcode_direct=no ;; motorola) hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac ;; sysv4.3*) ;; sysv4*MP*) if test -d /usr/nec; then ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) ;; sysv5* | sco3.2v5* | sco5v6*) hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' ;; uts4*) hardcode_libdir_flag_spec='-L$libdir' ;; *) ld_shlibs=no ;; esac fi # Check dynamic linker characteristics # Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER. # Unlike libtool.m4, here we don't care about _all_ names of the library, but # only about the one the linker finds when passed -lNAME. This is the last # element of library_names_spec in libtool.m4, or possibly two of them if the # linker has special search rules. library_names_spec= # the last element of library_names_spec in libtool.m4 libname_spec='lib$name' case "$host_os" in aix3*) library_names_spec='$libname.a' ;; aix[4-9]*) library_names_spec='$libname$shrext' ;; amigaos*) case "$host_cpu" in powerpc*) library_names_spec='$libname$shrext' ;; m68k) library_names_spec='$libname.a' ;; esac ;; beos*) library_names_spec='$libname$shrext' ;; bsdi[45]*) library_names_spec='$libname$shrext' ;; cygwin* | mingw* | pw32* | cegcc*) shrext=.dll library_names_spec='$libname.dll.a $libname.lib' ;; darwin* | rhapsody*) shrext=.dylib library_names_spec='$libname$shrext' ;; dgux*) library_names_spec='$libname$shrext' ;; freebsd[23].*) library_names_spec='$libname$shrext$versuffix' ;; freebsd* | dragonfly*) library_names_spec='$libname$shrext' ;; gnu*) library_names_spec='$libname$shrext' ;; haiku*) library_names_spec='$libname$shrext' ;; hpux9* | hpux10* | hpux11*) case $host_cpu in ia64*) shrext=.so ;; hppa*64*) shrext=.sl ;; *) shrext=.sl ;; esac library_names_spec='$libname$shrext' ;; interix[3-9]*) library_names_spec='$libname$shrext' ;; irix5* | irix6* | nonstopux*) library_names_spec='$libname$shrext' case "$host_os" in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; *) libsuff= shlibsuff= ;; esac ;; esac ;; linux*oldld* | linux*aout* | linux*coff*) ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) library_names_spec='$libname$shrext' ;; knetbsd*-gnu) library_names_spec='$libname$shrext' ;; netbsd*) library_names_spec='$libname$shrext' ;; newsos6) library_names_spec='$libname$shrext' ;; *nto* | *qnx*) library_names_spec='$libname$shrext' ;; openbsd*) library_names_spec='$libname$shrext$versuffix' ;; os2*) libname_spec='$name' shrext=.dll library_names_spec='$libname.a' ;; osf3* | osf4* | osf5*) library_names_spec='$libname$shrext' ;; rdos*) ;; solaris*) library_names_spec='$libname$shrext' ;; sunos4*) library_names_spec='$libname$shrext$versuffix' ;; sysv4 | sysv4.3*) library_names_spec='$libname$shrext' ;; sysv4*MP*) library_names_spec='$libname$shrext' ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) library_names_spec='$libname$shrext' ;; tpf*) library_names_spec='$libname$shrext' ;; uts4*) library_names_spec='$libname$shrext' ;; esac sed_quote_subst='s/\(["`$\\]\)/\\\1/g' escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` shlibext=`echo "$shrext" | sed -e 's,^\.,,'` escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' < Memcheck:Leak ... fun:g_static_private_set fun:g_module_open } { g_child_watch_source_new Memcheck:Leak ... fun:ensure_unix_signal_handler_installed_unlocked fun:g_child_watch_source_new } { g_thread_pool_thread_proxy Memcheck:Leak ... fun:g_malloc fun:g_cond_new_posix_impl ... fun:g_async_queue_timed_pop fun:g_thread_pool_thread_proxy } { g_module_open Memcheck:Leak ... fun:g_private_impl_new ... fun:g_module_open } { g_system_thread_new Memcheck:Leak ... fun:g_system_thread_new } { thread_memory_from_self Memcheck:Leak ... fun:thread_memory_from_self } { g_get_language_names Memcheck:Leak ... fun:g_get_language_names } realmd-0.17.1/configure.ac0000644003225100322510000003171714315276717015670 0ustar00sbosesbose00000000000000AC_PREREQ([2.63]) AC_INIT([realmd], [0.17.1], [https://gitlab.freedesktop.org/realmd/realmd/-/issues], [realmd]) # ----------------------------------------------------------------------------- # Versions GLIB_REQ=2.36.0 GLIB_MIN=GLIB_VERSION_2_36 GLIB_MAX=GLIB_VERSION_2_36 # ----------------------------------------------------------------------------- AC_CONFIG_MACRO_DIR([build/m4]) AC_CONFIG_AUX_DIR([build]) AM_INIT_AUTOMAKE([1.11 tar-ustar foreign -Wno-portability subdir-objects]) AM_SANITY_CHECK AC_CONFIG_HEADERS(config.h) AC_CONFIG_SRCDIR([service/realm-daemon.c]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AM_MAINTAINER_MODE([enable]) # ----------------------------------------------------------------------------- # Distro Detection AC_ARG_WITH([distro], [AS_HELP_STRING([--with-distro], [Configure for a specific distribution (eg: redhat)] )], [DISTRO=$withval], [DISTRO=]) if test -z $DISTRO; then AC_CHECK_FILE(/etc/redhat-release, [DISTRO="redhat"]) AC_CHECK_FILE(/etc/debian_version, [DISTRO="debian"]) AC_CHECK_FILE(/etc/SuSE-release, [DISTRO="suse"]) # Not customized for these yet dnl AC_CHECK_FILE(/etc/gentoo-release, [DISTRO="gentoo"]) dnl AC_CHECK_FILE(/etc/slackware-version, [DISTRO="slackware"]) fi if test -z $DISTRO; then AC_MSG_ERROR([Couldn't detect the distro to configure for. Specify one with --with-distro]) fi AC_SUBST(DISTRO) # ----------------------------------------------------------------------------- # Vendor error message AC_ARG_WITH([vendor-error-message], [AS_HELP_STRING([--with-vendor-error-message=ARG], [Add a vendor specific error message shown if a realm command fails] )], [AS_IF([test "x$withval" != "x"], [AC_DEFINE_UNQUOTED([VENDOR_MSG], ["$withval"], [Vendor specific error message])], [AC_MSG_ERROR([--with-vendor-error-message requires an argument])] )], []) # ----------------------------------------------------------------------------- # Basic tools AC_USE_SYSTEM_EXTENSIONS AC_PROG_CC AC_PROG_CPP AM_PROG_CC_C_O AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET AC_PROG_RANLIB PKG_PROG_PKG_CONFIG AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION([0.19.8]) GETTEXT_PACKAGE=realmd AC_SUBST([GETTEXT_PACKAGE]) AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[The gettext domain name]) # -------------------------------------------------------------------- # GLib PKG_CHECK_MODULES(GLIB, glib-2.0 >= $GLIB_REQ gio-2.0 gio-unix-2.0) GLIB_CFLAGS="$GLIB_CFLAGS -DGLIB_VERSION_MIN_REQUIRED=$GLIB_MIN -DGLIB_VERSION_MAX_ALLOWED=$GLIB_MAX" AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) # -------------------------------------------------------------------- # PolicyKit PKG_CHECK_MODULES(POLKIT, polkit-gobject-1) AC_SUBST(POLKIT_CFLAGS) AC_SUBST(POLKIT_LIBS) # -------------------------------------------------------------------- # systemd AC_MSG_CHECKING([systemd unit directory]) AC_ARG_WITH(systemd-unit-dir, AS_HELP_STRING([--with-systemd-unit-dir], [Directory to install systemd service file])) if test "$with_systemd_unit_dir" = "" -o "$with_systemd_unit_dir" = "yes"; then with_systemd_unit_dir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd) if test "$with_systemd_unit_dir" = ""; then AC_MSG_ERROR(["Couldn't find systemd system unit directory"]) fi elif test "$with_systemd_unit_dir" = "no"; then with_systemd_unit_dir="" fi SYSTEMD_UNIT_DIR="$with_systemd_unit_dir" AC_SUBST(SYSTEMD_UNIT_DIR) AM_CONDITIONAL(WITH_SYSTEMD, [test -n "$with_systemd_unit_dir"]) dbus_systemd_service="" if test -n "$with_systemd_unit_dir"; then dbus_systemd_service="SystemdService=realmd.service" fi AC_SUBST(dbus_systemd_service) AC_MSG_RESULT($with_systemd_unit_dir) AC_ARG_WITH(systemd-journal, AS_HELP_STRING([--with-systemd-journal], [Use systemd's journal for logging])) if test "$with_systemd_journal" != "no"; then AC_DEFINE_UNQUOTED(WITH_JOURNAL, 1, [Use systemd's journal]) PKG_CHECK_MODULES(SYSTEMD_JOURNAL, [libsystemd],, [PKG_CHECK_MODULES(SYSTEMD_JOURNAL, [libsystemd-journal])]) with_systemd_journal="yes" fi AC_SUBST(SYSTEMD_JOURNAL_CFLAGS) AC_SUBST(SYSTEMD_JOURNAL_LIBS) # ------------------------------------------------------------------- # resolv AC_MSG_CHECKING(for which library has res_query) for lib in "" "-lresolv"; do saved_LIBS="$LIBS" LIBS="$LIBS $lib" AC_LINK_IFELSE([ AC_LANG_PROGRAM([#include ], [res_query (0, 0, 0, 0, 0)]) ], [ AC_MSG_RESULT(${lib:-libc}); have_res_query="yes"; break; ], [ LIBS="$saved_LIBS" ]) done if test "$have_res_query" != "yes"; then AC_MSG_RESULT(no) AC_MSG_ERROR([Couldn't find the library for the res_query function]) fi # ------------------------------------------------------------------- # Kerberos if test "$KRB5_LIBS" != ""; then KRB5_PASSED_LIBS=$KRB5_LIBS fi if test "$KRB5_CFLAGS" != ""; then KRB5_PASSED_CFLAGS=$KRB5_CFLAGS fi AC_PATH_TOOL(KRB5_CONFIG, krb5-config) AC_MSG_CHECKING(for working krb5-config) if test -x "$KRB5_CONFIG"; then KRB5_CFLAGS="`$KRB5_CONFIG --cflags`" KRB5_LIBS="`$KRB5_CONFIG --libs`" AC_MSG_RESULT(yes) else if test x$KRB5_PASSED_LIBS = x; then AC_MSG_ERROR(no. Please install MIT kerberos devel package) fi fi if test x$KRB5_PASSED_LIBS != x; then KRB5_LIBS=$KRB5_PASSED_LIBS fi if test x$KRB5_PASSED_CFLAGS != x; then KRB5_CFLAGS=$KRB5_PASSED_CFLAGS fi AC_ARG_VAR([KRB5_CFLAGS], [C compiler flags for kerberos, overriding krb5-config])dnl AC_ARG_VAR([KRB5_LIBS], [linker flags for kerberos, overriding krb5-config])dnl AC_SUBST(KRB5_CFLAGS) AC_SUBST(KRB5_LIBS) # ------------------------------------------------------------------- # LDAP AC_CHECK_LIB(ldap, ldap_search, , [ldap_invalid=yes]) AC_CHECK_LIB(lber, ber_pvt_opt_on, , [ldap_invalid=yes]) AC_CHECK_HEADERS([ldap.h], , [ldap_invalid=yes]) if test "$ldap_invalid" = "yes"; then AC_MSG_ERROR(["Couldn't find OpenLDAP headers or libraries"]) fi AC_CHECK_LIB(ldap, ldap_init_fd, [true], [ AC_MSG_ERROR([Couldn't find ldap_init_fd function in libldap]) ]) LDAP_LIBS="" AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="-lresolv") LDAP_LIBS="$LDAP_LIBS -lldap -llber" LDAP_CFLAGS="" AC_SUBST(LDAP_LIBS) AC_SUBST(LDAP_CFLAGS) # ------------------------------------------------------------------- # Samba AC_ARG_WITH(new-samba-cli-options, AS_HELP_STRING([--with-new-samba-cli-options=yes/no], [Use new command line options introduced with Samba-4.15, if not provided the output of 'net help' is checked or old style options are used])) if test "$with_new_samba_cli_options" = "no"; then AC_MSG_RESULT([Using old Samba command line options]) elif test "$with_new_samba_cli_options" = "yes"; then AC_DEFINE_UNQUOTED(WITH_NEW_SAMBA_CLI_OPTS, 1, [Use new command line options introduced with Samba-4.15]) AC_MSG_RESULT([Using new Samba command line options]) else AC_PATH_PROG([SAMBA_NET], [net]) if test ! -x "$SAMBA_NET"; then AC_MSG_NOTICE([Could not find Samba's net utility, ] [assuming old style command line options, ] [please install the net utility for proper detection.]) else AC_MSG_CHECKING([for --debug-stdout option of net]) if AC_RUN_LOG([$SAMBA_NET help 2>&1 |grep -- '--debug-stdout' > /dev/null]); then AC_DEFINE_UNQUOTED(WITH_NEW_SAMBA_CLI_OPTS, 1, [Use new command line options introduced with Samba-4.15]) AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi fi fi # ------------------------------------------------------------------- # Directories DBUS_SERVICES_DIR="${datadir}/dbus-1/system-services" AC_SUBST(DBUS_SERVICES_DIR) DBUS_POLICY_DIR="${sysconfdir}/dbus-1/system.d" AC_SUBST(DBUS_POLICY_DIR) POLKIT_ACTION_DIR="${datadir}/polkit-1/actions" AC_SUBST(POLKIT_ACTION_DIR) # -------------------------------------------------------------------- # Compilation options AC_MSG_CHECKING([whether to build documentation]) AC_ARG_ENABLE(doc, AS_HELP_STRING([--enable-doc], [Disable building documentation]) ) if test "$enable_doc" = "no"; then AC_MSG_RESULT($enable_doc) else if test "$enable_doc" = ""; then disable_msg="(perhaps --disable-doc)" fi enable_doc="yes" AC_MSG_RESULT($enable_doc) AC_PATH_PROG([XSLTPROC], [xsltproc], [no]) if test "$XSLTPROC" = "no"; then AC_MSG_ERROR([the xsltproc command was not found $disable_msg]) fi AC_PATH_PROG([XMLTO], [xmlto], [no]) if test "$XMLTO" = "no"; then AC_MSG_ERROR([the xmlto command was not found $disable_msg]) fi AC_SUBST(XSLTPROC) AC_SUBST(XMLTO) fi AM_CONDITIONAL([ENABLE_DOC], [test "$enable_doc" = "yes"]) AC_MSG_CHECKING([whether to build with gcov testing]) AC_ARG_ENABLE([coverage], AS_HELP_STRING([--enable-coverage], [Whether to enable coverage testing ]), [], [enable_coverage=no]) AC_MSG_RESULT([$enable_coverage]) if test "$enable_coverage" = "yes"; then if test "$GCC" != "yes"; then AC_MSG_ERROR(Coverage testing requires GCC) fi AC_PATH_PROG(GCOV, gcov, no) if test "$GCOV" = "no" ; then AC_MSG_ERROR(gcov tool is not available) fi AC_PATH_PROG(LCOV, lcov, no) if test "$LCOV" = "no" ; then AC_MSG_ERROR(lcov tool is not installed) fi AC_PATH_PROG(GENHTML, genhtml, no) if test "$GENHTML" = "no" ; then AC_MSG_ERROR(lcov's genhtml tool is not installed) fi CFLAGS="$CFLAGS -O0 -g -fprofile-arcs -ftest-coverage" LDFLAGS="$LDFLAGS -lgcov" fi AM_CONDITIONAL([WITH_COVERAGE], [test "$enable_coverage" = "yes"]) AC_SUBST(LCOV) AC_SUBST(GCOV) AC_SUBST(GENHTML) AC_MSG_CHECKING([for debug mode]) AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug=no/default/yes], [Turn on or off debugging]) ) if test "$enable_debug" != "no"; then AC_DEFINE_UNQUOTED(WITH_DEBUG, 1, [Print debug output]) AC_DEFINE_UNQUOTED(_DEBUG, 1, [In debug mode]) CFLAGS="$CFLAGS -g" fi if test "$enable_debug" = "yes"; then debug_status="yes" CFLAGS="$CFLAGS -O0" elif test "$enable_debug" = "no"; then debug_status="no" CFLAGS="$CFLAGS -O2" AC_DEFINE_UNQUOTED(G_DISABLE_ASSERT, 1, [Disable glib assertions]) else debug_status="default" fi AC_MSG_RESULT($debug_status) if test "$GCC" = "yes"; then CFLAGS="$CFLAGS \ -Wall -Wmissing-declarations \ -Wmissing-prototypes -Wnested-externs -Wpointer-arith \ -Wdeclaration-after-statement -Wformat=2 -Winit-self \ -Waggregate-return -Wmissing-format-attribute" for option in -Wmissing-include-dirs -Wundef; do SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $option" AC_MSG_CHECKING([whether gcc understands $option]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [has_option=yes], [has_option=no]) AC_MSG_RESULT($has_option) if test $has_option = no; then CFLAGS="$SAVE_CFLAGS" fi done # Only add this when optimizing is enabled (default) AC_MSG_CHECKING([whether optimization is enabled]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#if __OPTIMIZE__ == 0 #error No optimization #endif ]], [[]])], [has_optimization=yes], [has_optimization=no]) if test $has_optimization = yes; then CFLAGS="$CFLAGS -Wp,-D_FORTIFY_SOURCE=2" AC_MSG_RESULT([yes, fortifying source]) else AC_MSG_RESULT([no, not fortifying source]) fi fi AC_ARG_ENABLE(strict, [ AS_HELP_STRING([--enable-strict], [Strict code compilation]) ]) AC_MSG_CHECKING([build strict]) if test "$enable_strict" = "yes"; then CFLAGS="$CFLAGS -Werror \ -DG_DISABLE_DEPRECATED" TEST_MODE="thorough" else CFLAGS="$CFLAGS -Wno-error" TEST_MODE="quick" enable_strict="no" fi AC_MSG_RESULT($enable_strict) AC_SUBST(TEST_MODE) # ------------------------------------------------------------------------------ # Results privatedir='${prefix}/lib/realmd' AC_MSG_CHECKING([private directory]) AC_ARG_WITH(private-dir, AS_HELP_STRING([--with-private-dir=DIR], [Directory to install realmd system defaults (default: ${prefix}/lib/realmd)])) if test -n "$with_private_dir"; then privatedir="$with_private_dir" fi AC_SUBST(privatedir) AC_MSG_RESULT($privatedir) cachedir='${localstatedir}/cache/realmd' AC_SUBST(cachedir) AC_CONFIG_FILES([ Makefile doc/version.xml po/Makefile.in po/Makefile ]) AC_OUTPUT echo echo "CFLAGS: $CFLAGS" echo echo "OPTIONS:" echo " Debug: $debug_status" echo " Coverage: $enable_coverage" echo " Strict: $enable_strict" echo " Documentation: $enable_doc" echo echo "OPTIONAL DEPENDENCIES:" echo " systemd unit dir: $with_systemd_unit_dir" echo " systemd journal: $with_systemd_journal" echo realmd-0.17.1/Makefile.in0000644003225100322510000102135714315276773015451 0ustar00sbosesbose00000000000000# Makefile.in generated by automake 1.16.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2021 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ TESTS = $(am__EXEEXT_2) check_PROGRAMS = $(am__EXEEXT_2) noinst_PROGRAMS = frob-install-packages$(EXEEXT) $(am__EXEEXT_1) private_PROGRAMS = sbin_PROGRAMS = realm$(EXEEXT) libexec_PROGRAMS = realmd$(EXEEXT) @ENABLE_DOC_TRUE@am__append_1 = \ @ENABLE_DOC_TRUE@ doc/manual/realm.8 @ENABLE_DOC_TRUE@am__append_2 = \ @ENABLE_DOC_TRUE@ doc/manual/realmd.conf.5 # ------------------------------------------------------------ # Docs # @ENABLE_DOC_TRUE@am__append_3 = doc/privatedir.xml.in \ @ENABLE_DOC_TRUE@ $(MANUAL_DOCBOOK) $(MANUAL_INCLUDES) \ @ENABLE_DOC_TRUE@ $(MAN_IN_FILES) $(MANUAL_XSLT) \ @ENABLE_DOC_TRUE@ doc/manual/static $(NULL) $(INTERNAL_DOCBOOK) \ @ENABLE_DOC_TRUE@ $(INTERNAL_PARAMS) $(INTERNAL_INCLUDES) \ @ENABLE_DOC_TRUE@ $(SVG_IMAGES) doc/internals/static $(NULL) \ @ENABLE_DOC_TRUE@ doc/version.xml.in doc/version.xml @ENABLE_DOC_TRUE@am__append_4 = \ @ENABLE_DOC_TRUE@ realmd-org.freedesktop.realmd.generated \ @ENABLE_DOC_TRUE@ doc/privatedir.xml $(DBUS_DOC_GENERATED) \ @ENABLE_DOC_TRUE@ $(DBUS_ESCAPED) $(man8_MANS) $(man5_MANS) \ @ENABLE_DOC_TRUE@ manual/index.html *.tmp $(NULL) \ @ENABLE_DOC_TRUE@ internals/realmd-internals.html $(NULL) \ @ENABLE_DOC_TRUE@ html/* @ENABLE_DOC_TRUE@am__append_5 = \ @ENABLE_DOC_TRUE@ doc/website/Makefile subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/m4/gettext.m4 \ $(top_srcdir)/build/m4/iconv.m4 \ $(top_srcdir)/build/m4/intlmacosx.m4 \ $(top_srcdir)/build/m4/lib-ld.m4 \ $(top_srcdir)/build/m4/lib-link.m4 \ $(top_srcdir)/build/m4/lib-prefix.m4 \ $(top_srcdir)/build/m4/nls.m4 $(top_srcdir)/build/m4/po.m4 \ $(top_srcdir)/build/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = doc/version.xml CONFIG_CLEAN_VPATH_FILES = am__EXEEXT_1 = am__EXEEXT_2 = test-dn-util$(EXEEXT) test-ini-config$(EXEEXT) \ test-sssd-config$(EXEEXT) test-safe-format$(EXEEXT) \ test-login-name$(EXEEXT) test-settings$(EXEEXT) \ $(am__EXEEXT_1) am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(privatedir)" \ "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man5dir)" \ "$(DESTDIR)$(man8dir)" "$(DESTDIR)$(dbusservicedir)" \ "$(DESTDIR)$(polkit_policydir)" "$(DESTDIR)$(privatedir)" \ "$(DESTDIR)$(servicedir)" "$(DESTDIR)$(systemdunitdir)" PROGRAMS = $(libexec_PROGRAMS) $(noinst_PROGRAMS) $(private_PROGRAMS) \ $(sbin_PROGRAMS) LIBRARIES = $(noinst_LIBRARIES) AR = ar ARFLAGS = cru AM_V_AR = $(am__v_AR_@AM_V@) am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) am__v_AR_0 = @echo " AR " $@; am__v_AR_1 = librealm_dbus_a_AR = $(AR) $(ARFLAGS) librealm_dbus_a_LIBADD = am__objects_1 = am_librealm_dbus_a_OBJECTS = $(am__objects_1) am__objects_2 = librealm_dbus_a-realm-dbus-generated.$(OBJEXT) \ $(am__objects_1) nodist_librealm_dbus_a_OBJECTS = $(am__objects_2) $(am__objects_1) librealm_dbus_a_OBJECTS = $(am_librealm_dbus_a_OBJECTS) \ $(nodist_librealm_dbus_a_OBJECTS) am__dirstamp = $(am__leading_dot)dirstamp am_frob_install_packages_OBJECTS = \ tests/frob_install_packages-frob-install-packages.$(OBJEXT) \ service/frob_install_packages-realm-packages.$(OBJEXT) \ service/frob_install_packages-realm-settings.$(OBJEXT) \ service/frob_install_packages-realm-errors.$(OBJEXT) \ $(am__objects_1) frob_install_packages_OBJECTS = $(am_frob_install_packages_OBJECTS) am__DEPENDENCIES_1 = am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) frob_install_packages_DEPENDENCIES = $(am__DEPENDENCIES_2) \ $(am__DEPENDENCIES_1) frob_install_packages_LINK = $(CCLD) $(frob_install_packages_CFLAGS) \ $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ am_realm_OBJECTS = tools/realm-realm.$(OBJEXT) \ tools/realm-realm-client.$(OBJEXT) \ tools/realm-realm-discover.$(OBJEXT) \ tools/realm-realm-join.$(OBJEXT) \ tools/realm-realm-leave.$(OBJEXT) \ tools/realm-realm-logins.$(OBJEXT) $(am__objects_1) realm_OBJECTS = $(am_realm_OBJECTS) realm_DEPENDENCIES = librealm-dbus.a $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) realm_LINK = $(CCLD) $(realm_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ am_realmd_OBJECTS = service/realmd-realm-adcli-enroll.$(OBJEXT) \ service/realmd-realm-all-provider.$(OBJEXT) \ service/realmd-realm-command.$(OBJEXT) \ service/realmd-realm-credential.$(OBJEXT) \ service/realmd-realm-daemon.$(OBJEXT) \ service/realmd-realm-diagnostics.$(OBJEXT) \ service/realmd-realm-disco.$(OBJEXT) \ service/realmd-realm-disco-dns.$(OBJEXT) \ service/realmd-realm-disco-domain.$(OBJEXT) \ service/realmd-realm-disco-mscldap.$(OBJEXT) \ service/realmd-realm-disco-rootdse.$(OBJEXT) \ service/realmd-realm-dn-util.$(OBJEXT) \ service/realmd-realm-errors.$(OBJEXT) \ service/realmd-realm-example.$(OBJEXT) \ service/realmd-realm-example-provider.$(OBJEXT) \ service/realmd-realm-ini-config.$(OBJEXT) \ service/realmd-realm-invocation.$(OBJEXT) \ service/realmd-realm-kerberos.$(OBJEXT) \ service/realmd-realm-kerberos-config.$(OBJEXT) \ service/realmd-realm-kerberos-membership.$(OBJEXT) \ service/realmd-realm-kerberos-provider.$(OBJEXT) \ service/realmd-realm-ldap.$(OBJEXT) \ service/realmd-realm-login-name.$(OBJEXT) \ service/realmd-realm-network.$(OBJEXT) \ service/realmd-realm-options.$(OBJEXT) \ service/realmd-realm-packages.$(OBJEXT) \ service/realmd-realm-provider.$(OBJEXT) \ service/realmd-realm-samba.$(OBJEXT) \ service/realmd-realm-samba-config.$(OBJEXT) \ service/realmd-realm-samba-enroll.$(OBJEXT) \ service/realmd-realm-samba-provider.$(OBJEXT) \ service/realmd-realm-samba-winbind.$(OBJEXT) \ service/realmd-realm-service.$(OBJEXT) \ service/realmd-realm-settings.$(OBJEXT) \ service/realmd-realm-sssd.$(OBJEXT) \ service/realmd-realm-sssd-ad.$(OBJEXT) \ service/realmd-realm-sssd-provider.$(OBJEXT) \ service/realmd-realm-sssd-config.$(OBJEXT) \ service/realmd-realm-sssd-ipa.$(OBJEXT) \ service/realmd-realm-usleep-async.$(OBJEXT) \ service/realmd-safe-format-string.$(OBJEXT) $(am__objects_1) realmd_OBJECTS = $(am_realmd_OBJECTS) realmd_DEPENDENCIES = librealm-dbus.a $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) realmd_LINK = $(CCLD) $(realmd_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ am_test_dn_util_OBJECTS = tests/test_dn_util-test-dn-util.$(OBJEXT) \ service/test_dn_util-realm-dn-util.$(OBJEXT) $(am__objects_1) test_dn_util_OBJECTS = $(am_test_dn_util_OBJECTS) test_dn_util_DEPENDENCIES = $(am__DEPENDENCIES_2) test_dn_util_LINK = $(CCLD) $(test_dn_util_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ am_test_ini_config_OBJECTS = \ tests/test_ini_config-test-ini-config.$(OBJEXT) \ service/test_ini_config-realm-ini-config.$(OBJEXT) \ service/test_ini_config-realm-samba-config.$(OBJEXT) \ service/test_ini_config-realm-settings.$(OBJEXT) \ $(am__objects_1) test_ini_config_OBJECTS = $(am_test_ini_config_OBJECTS) test_ini_config_DEPENDENCIES = $(am__DEPENDENCIES_2) test_ini_config_LINK = $(CCLD) $(test_ini_config_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ am_test_login_name_OBJECTS = \ tests/test_login_name-test-login-name.$(OBJEXT) \ service/test_login_name-realm-login-name.$(OBJEXT) \ $(am__objects_1) test_login_name_OBJECTS = $(am_test_login_name_OBJECTS) test_login_name_DEPENDENCIES = $(am__DEPENDENCIES_2) test_login_name_LINK = $(CCLD) $(test_login_name_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ am_test_safe_format_OBJECTS = \ tests/test_safe_format-test-safe-format.$(OBJEXT) \ service/test_safe_format-safe-format-string.$(OBJEXT) \ $(am__objects_1) test_safe_format_OBJECTS = $(am_test_safe_format_OBJECTS) test_safe_format_DEPENDENCIES = $(am__DEPENDENCIES_2) test_safe_format_LINK = $(CCLD) $(test_safe_format_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ am_test_settings_OBJECTS = \ tests/test_settings-test-settings.$(OBJEXT) \ service/test_settings-realm-settings.$(OBJEXT) \ $(am__objects_1) test_settings_OBJECTS = $(am_test_settings_OBJECTS) test_settings_DEPENDENCIES = $(am__DEPENDENCIES_2) test_settings_LINK = $(CCLD) $(test_settings_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ am_test_sssd_config_OBJECTS = \ tests/test_sssd_config-test-sssd-config.$(OBJEXT) \ service/test_sssd_config-realm-ini-config.$(OBJEXT) \ service/test_sssd_config-realm-sssd-config.$(OBJEXT) \ service/test_sssd_config-realm-settings.$(OBJEXT) \ $(am__objects_1) test_sssd_config_OBJECTS = $(am_test_sssd_config_OBJECTS) test_sssd_config_DEPENDENCIES = $(am__DEPENDENCIES_2) test_sssd_config_LINK = $(CCLD) $(test_sssd_config_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/build/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = \ ./$(DEPDIR)/librealm_dbus_a-realm-dbus-generated.Po \ service/$(DEPDIR)/frob_install_packages-realm-errors.Po \ service/$(DEPDIR)/frob_install_packages-realm-packages.Po \ service/$(DEPDIR)/frob_install_packages-realm-settings.Po \ service/$(DEPDIR)/realmd-realm-adcli-enroll.Po \ service/$(DEPDIR)/realmd-realm-all-provider.Po \ service/$(DEPDIR)/realmd-realm-command.Po \ service/$(DEPDIR)/realmd-realm-credential.Po \ service/$(DEPDIR)/realmd-realm-daemon.Po \ service/$(DEPDIR)/realmd-realm-diagnostics.Po \ service/$(DEPDIR)/realmd-realm-disco-dns.Po \ service/$(DEPDIR)/realmd-realm-disco-domain.Po \ service/$(DEPDIR)/realmd-realm-disco-mscldap.Po \ service/$(DEPDIR)/realmd-realm-disco-rootdse.Po \ service/$(DEPDIR)/realmd-realm-disco.Po \ service/$(DEPDIR)/realmd-realm-dn-util.Po \ service/$(DEPDIR)/realmd-realm-errors.Po \ service/$(DEPDIR)/realmd-realm-example-provider.Po \ service/$(DEPDIR)/realmd-realm-example.Po \ service/$(DEPDIR)/realmd-realm-ini-config.Po \ service/$(DEPDIR)/realmd-realm-invocation.Po \ service/$(DEPDIR)/realmd-realm-kerberos-config.Po \ service/$(DEPDIR)/realmd-realm-kerberos-membership.Po \ service/$(DEPDIR)/realmd-realm-kerberos-provider.Po \ service/$(DEPDIR)/realmd-realm-kerberos.Po \ service/$(DEPDIR)/realmd-realm-ldap.Po \ service/$(DEPDIR)/realmd-realm-login-name.Po \ service/$(DEPDIR)/realmd-realm-network.Po \ service/$(DEPDIR)/realmd-realm-options.Po \ service/$(DEPDIR)/realmd-realm-packages.Po \ service/$(DEPDIR)/realmd-realm-provider.Po \ service/$(DEPDIR)/realmd-realm-samba-config.Po \ service/$(DEPDIR)/realmd-realm-samba-enroll.Po \ service/$(DEPDIR)/realmd-realm-samba-provider.Po \ service/$(DEPDIR)/realmd-realm-samba-winbind.Po \ service/$(DEPDIR)/realmd-realm-samba.Po \ service/$(DEPDIR)/realmd-realm-service.Po \ service/$(DEPDIR)/realmd-realm-settings.Po \ service/$(DEPDIR)/realmd-realm-sssd-ad.Po \ service/$(DEPDIR)/realmd-realm-sssd-config.Po \ service/$(DEPDIR)/realmd-realm-sssd-ipa.Po \ service/$(DEPDIR)/realmd-realm-sssd-provider.Po \ service/$(DEPDIR)/realmd-realm-sssd.Po \ service/$(DEPDIR)/realmd-realm-usleep-async.Po \ service/$(DEPDIR)/realmd-safe-format-string.Po \ service/$(DEPDIR)/test_dn_util-realm-dn-util.Po \ service/$(DEPDIR)/test_ini_config-realm-ini-config.Po \ service/$(DEPDIR)/test_ini_config-realm-samba-config.Po \ service/$(DEPDIR)/test_ini_config-realm-settings.Po \ service/$(DEPDIR)/test_login_name-realm-login-name.Po \ service/$(DEPDIR)/test_safe_format-safe-format-string.Po \ service/$(DEPDIR)/test_settings-realm-settings.Po \ service/$(DEPDIR)/test_sssd_config-realm-ini-config.Po \ service/$(DEPDIR)/test_sssd_config-realm-settings.Po \ service/$(DEPDIR)/test_sssd_config-realm-sssd-config.Po \ tests/$(DEPDIR)/frob_install_packages-frob-install-packages.Po \ tests/$(DEPDIR)/test_dn_util-test-dn-util.Po \ tests/$(DEPDIR)/test_ini_config-test-ini-config.Po \ tests/$(DEPDIR)/test_login_name-test-login-name.Po \ tests/$(DEPDIR)/test_safe_format-test-safe-format.Po \ tests/$(DEPDIR)/test_settings-test-settings.Po \ tests/$(DEPDIR)/test_sssd_config-test-sssd-config.Po \ tools/$(DEPDIR)/realm-realm-client.Po \ tools/$(DEPDIR)/realm-realm-discover.Po \ tools/$(DEPDIR)/realm-realm-join.Po \ tools/$(DEPDIR)/realm-realm-leave.Po \ tools/$(DEPDIR)/realm-realm-logins.Po \ tools/$(DEPDIR)/realm-realm.Po am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(librealm_dbus_a_SOURCES) $(nodist_librealm_dbus_a_SOURCES) \ $(frob_install_packages_SOURCES) $(realm_SOURCES) \ $(realmd_SOURCES) $(test_dn_util_SOURCES) \ $(test_ini_config_SOURCES) $(test_login_name_SOURCES) \ $(test_safe_format_SOURCES) $(test_settings_SOURCES) \ $(test_sssd_config_SOURCES) DIST_SOURCES = $(librealm_dbus_a_SOURCES) \ $(frob_install_packages_SOURCES) $(realm_SOURCES) \ $(realmd_SOURCES) $(test_dn_util_SOURCES) \ $(test_ini_config_SOURCES) $(test_login_name_SOURCES) \ $(test_safe_format_SOURCES) $(test_settings_SOURCES) \ $(test_sssd_config_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man5dir = $(mandir)/man5 man8dir = $(mandir)/man8 NROFF = nroff MANS = $(man5_MANS) $(man8_MANS) DATA = $(dbusservice_DATA) $(polkit_policy_DATA) $(private_DATA) \ $(service_DATA) $(systemdunit_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope check recheck distdir distdir-am dist dist-all \ distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \ config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` am__tty_colors_dummy = \ mgn= red= grn= lgn= blu= brg= std=; \ am__color_tests=no am__tty_colors = { \ $(am__tty_colors_dummy); \ if test "X$(AM_COLOR_TESTS)" = Xno; then \ am__color_tests=no; \ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ am__color_tests=yes; \ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ am__color_tests=yes; \ fi; \ if test $$am__color_tests = yes; then \ red=''; \ grn=''; \ lgn=''; \ blu=''; \ mgn=''; \ brg=''; \ std=''; \ fi; \ } am__recheck_rx = ^[ ]*:recheck:[ ]* am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* # A command that, given a newline-separated list of test names on the # standard input, print the name of the tests that are to be re-run # upon "make recheck". am__list_recheck_tests = $(AWK) '{ \ recheck = 1; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ { \ if ((getline line2 < ($$0 ".log")) < 0) \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ { \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ { \ break; \ } \ }; \ if (recheck) \ print $$0; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # A command that, given a newline-separated list of test names on the # standard input, create the global log from their .trs and .log files. am__create_global_log = $(AWK) ' \ function fatal(msg) \ { \ print "fatal: making $@: " msg | "cat >&2"; \ exit 1; \ } \ function rst_section(header) \ { \ print header; \ len = length(header); \ for (i = 1; i <= len; i = i + 1) \ printf "="; \ printf "\n\n"; \ } \ { \ copy_in_global_log = 1; \ global_test_result = "RUN"; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".trs"); \ if (line ~ /$(am__global_test_result_rx)/) \ { \ sub("$(am__global_test_result_rx)", "", line); \ sub("[ ]*$$", "", line); \ global_test_result = line; \ } \ else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ copy_in_global_log = 0; \ }; \ if (copy_in_global_log) \ { \ rst_section(global_test_result ": " $$0); \ while ((rc = (getline line < ($$0 ".log"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".log"); \ print line; \ }; \ printf "\n"; \ }; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # Restructured Text title. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } # Solaris 10 'make', and several other traditional 'make' implementations, # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it # by disabling -e (using the XSI extension "set +e") if it's set. am__sh_e_setup = case $$- in *e*) set +e;; esac # Default flags passed to test drivers. am__common_driver_flags = \ --color-tests "$$am__color_tests" \ --enable-hard-errors "$$am__enable_hard_errors" \ --expect-failure "$$am__expect_failure" # To be inserted before the command running the test. Creates the # directory for the log if needed. Stores in $dir the directory # containing $f, in $tst the test, in $log the log. Executes the # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and # passes TESTS_ENVIRONMENT. Set up options for the wrapper that # will run the test scripts (or their associated LOG_COMPILER, if # thy have one). am__check_pre = \ $(am__sh_e_setup); \ $(am__vpath_adj_setup) $(am__vpath_adj) \ $(am__tty_colors); \ srcdir=$(srcdir); export srcdir; \ case "$@" in \ */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ *) am__odir=.;; \ esac; \ test "x$$am__odir" = x"." || test -d "$$am__odir" \ || $(MKDIR_P) "$$am__odir" || exit $$?; \ if test -f "./$$f"; then dir=./; \ elif test -f "$$f"; then dir=; \ else dir="$(srcdir)/"; fi; \ tst=$$dir$$f; log='$@'; \ if test -n '$(DISABLE_HARD_ERRORS)'; then \ am__enable_hard_errors=no; \ else \ am__enable_hard_errors=yes; \ fi; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ am__expect_failure=yes;; \ *) \ am__expect_failure=no;; \ esac; \ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) # A shell command to get the names of the tests scripts with any registered # extension removed (i.e., equivalently, the names of the test logs, with # the '.log' extension removed). The result is saved in the shell variable # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", # since that might cause problem with VPATH rewrites for suffix-less tests. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. am__set_TESTS_bases = \ bases='$(TEST_LOGS)'; \ bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ bases=`echo $$bases` AM_TESTSUITE_SUMMARY_HEADER = ' for $(PACKAGE_STRING)' RECHECK_LOGS = $(TEST_LOGS) TEST_SUITE_LOG = test-suite.log TEST_EXTENSIONS = @EXEEXT@ .test LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) am__set_b = \ case '$@' in \ */*) \ case '$*' in \ */*) b='$*';; \ *) b=`echo '$@' | sed 's/\.log$$//'`; \ esac;; \ *) \ b='$*';; \ esac am__test_logs1 = $(TESTS:=.log) am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) TEST_LOGS = $(am__test_logs2:.test.log=.log) TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(srcdir)/dbus/Makefile.am $(srcdir)/doc/internals/Makefile.am \ $(srcdir)/doc/manual/Makefile.am \ $(srcdir)/doc/website/Makefile.am \ $(srcdir)/service/Makefile.am $(srcdir)/tests/Makefile.am \ $(srcdir)/tools/Makefile.am $(top_srcdir)/build/compile \ $(top_srcdir)/build/config.guess \ $(top_srcdir)/build/config.rpath \ $(top_srcdir)/build/config.sub $(top_srcdir)/build/depcomp \ $(top_srcdir)/build/install-sh $(top_srcdir)/build/missing \ $(top_srcdir)/build/test-driver \ $(top_srcdir)/doc/version.xml.in ABOUT-NLS AUTHORS COPYING \ ChangeLog INSTALL NEWS README build/compile build/config.guess \ build/config.rpath build/config.sub build/depcomp \ build/install-sh build/missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip # Exists only to be overridden by the user if desired. AM_DISTCHECK_DVI_TARGET = dvi distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CSCOPE = @CSCOPE@ CTAGS = @CTAGS@ CYGPATH_W = @CYGPATH_W@ DBUS_POLICY_DIR = @DBUS_POLICY_DIR@ DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISTRO = @DISTRO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ GCOV = @GCOV@ GENHTML = @GENHTML@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ KRB5_CFLAGS = @KRB5_CFLAGS@ KRB5_CONFIG = @KRB5_CONFIG@ KRB5_LIBS = @KRB5_LIBS@ LCOV = @LCOV@ LDAP_CFLAGS = @LDAP_CFLAGS@ LDAP_LIBS = @LDAP_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POLKIT_ACTION_DIR = @POLKIT_ACTION_DIR@ POLKIT_CFLAGS = @POLKIT_CFLAGS@ POLKIT_LIBS = @POLKIT_LIBS@ POSUB = @POSUB@ RANLIB = @RANLIB@ SAMBA_NET = @SAMBA_NET@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SYSTEMD_JOURNAL_CFLAGS = @SYSTEMD_JOURNAL_CFLAGS@ SYSTEMD_JOURNAL_LIBS = @SYSTEMD_JOURNAL_LIBS@ SYSTEMD_UNIT_DIR = @SYSTEMD_UNIT_DIR@ TEST_MODE = @TEST_MODE@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ XMLTO = @XMLTO@ XSLTPROC = @XSLTPROC@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ cachedir = @cachedir@ datadir = @datadir@ datarootdir = @datarootdir@ dbus_systemd_service = @dbus_systemd_service@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ privatedir = @privatedir@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ NULL = ACLOCAL_AMFLAGS = -I build/m4 ${ACLOCAL_FLAGS} SUBDIRS = . po DISTCHECK_CONFIGURE_FLAGS = \ --enable-debug=yes \ --disable-coverage \ --disable-silent-rules \ --with-systemd-unit-dir=$(abs_srcdir)/$(top_distdir)/_inst/ \ --enable-doc V_SED = $(V_SED_$(V)) V_SED_ = $(V_SED_$(AM_DEFAULT_VERBOSITY)) V_SED_0 = @echo " SED " $@; SED_SUBST = sed \ -e 's,[@]datadir[@],$(datadir),g' \ -e 's,[@]libexecdir[@],$(libexecdir),g' \ -e 's,[@]libdir[@],$(libdir),g' \ -e 's,[@]includedir[@],$(includedir),g' \ -e 's,[@]datarootdir[@],$(datarootdir),g' \ -e 's,[@]sysconfdir[@],$(sysconfdir),g' \ -e 's,[@]bindir[@],$(bindir),g' \ -e 's,[@]exec_prefix[@],$(exec_prefix),g' \ -e 's,[@]prefix[@],$(prefix),g' \ -e 's,[@]abs_srcdir[@],$(abs_srcdir),g' \ -e 's,[@]srcdir[@],$(srcdir),g' \ -e 's,[@]privatedir[@],$(privatedir),g' \ -e 's,[@]dbus_systemd_service[@],$(dbus_systemd_service),g' \ -e 's,[@]PACKAGE[@],$(PACKAGE),g' \ -e 's,[@]VERSION[@],$(VERSION),g' \ $(NULL) SUFFIXES = .conf .conf.in .service .service.in BUILT_SOURCES = realm-dbus-generated.c realm-dbus-generated.h $(NULL) DISTCLEANFILES = $(am__append_5) man5_MANS = $(am__append_2) man8_MANS = $(am__append_1) noinst_LIBRARIES = librealm-dbus.a private_DATA = service/realmd-defaults.conf CLEANFILES = $(BUILT_SOURCES) $(DBUS_GENERATED) $(service_DATA) \ $(systemdunit_DATA) $(NULL) $(polkit_policy_DATA) $(NULL) \ $(am__append_4) # ------------------------------------------------------------------ # ------------------------------------------------------------------ EXTRA_DIST = $(DBUS_XML_DEFINITIONS) $(dbusservice_DATA) \ $(provider_DATA) $(service_in_files) $(systemdunit_in_files) \ $(NULL) $(polkit_policy_in_files) $(REALMD_CONFIGS) \ $(private_DATA) $(provider_DATA) $(NULL) tests/files \ $(PY_TESTS) $(NULL) $(am__append_3) $(LOG_DRIVER) \ $(VALGRIND_SUPPRESSIONS) $(NULL) dbusservicedir = $(DBUS_POLICY_DIR) dbusservice_DATA = \ dbus/org.freedesktop.realmd.conf servicedir = $(DBUS_SERVICES_DIR) service_in_files = \ dbus/org.freedesktop.realmd.service.in service_DATA = $(service_in_files:.service.in=.service) librealm_dbus_a_SOURCES = \ dbus/realm-dbus-constants.h \ $(NULL) nodist_librealm_dbus_a_SOURCES = \ $(BUILT_SOURCES) \ $(NULL) librealm_dbus_a_CFLAGS = \ $(GLIB_CFLAGS) \ $(NULL) DBUS_XML_DEFINITIONS = \ dbus/org.freedesktop.realmd.xml DBUS_GENERATED = \ realm-dbus-generated.c \ realm-dbus-generated.h \ $(NULL) systemdunit_in_files = dbus/realmd.service.in @WITH_SYSTEMD_TRUE@systemdunitdir = $(SYSTEMD_UNIT_DIR) @WITH_SYSTEMD_TRUE@systemdunit_DATA = $(systemdunit_in_files:.service.in=.service) REALMD_CONFIGS = \ service/realmd-defaults.conf \ service/realmd-redhat.conf \ service/realmd-debian.conf \ service/realmd-suse.conf \ $(NULL) polkit_policydir = $(POLKIT_ACTION_DIR) polkit_policy_in_files = service/org.freedesktop.realmd.policy.in polkit_policy_DATA = $(polkit_policy_in_files:.policy.in=.policy) realmd_SOURCES = \ service/realm-adcli-enroll.c \ service/realm-adcli-enroll.h \ service/realm-all-provider.c \ service/realm-all-provider.h \ service/realm-command.c \ service/realm-command.h \ service/realm-credential.c \ service/realm-credential.h \ service/realm-daemon.c \ service/realm-daemon.h \ service/realm-diagnostics.c \ service/realm-diagnostics.h \ service/realm-disco.c \ service/realm-disco.h \ service/realm-disco-dns.c \ service/realm-disco-dns.h \ service/realm-disco-domain.c \ service/realm-disco-domain.h \ service/realm-disco-mscldap.c \ service/realm-disco-mscldap.h \ service/realm-disco-rootdse.c \ service/realm-disco-rootdse.h \ service/realm-dn-util.c \ service/realm-dn-util.h \ service/realm-errors.c \ service/realm-errors.h \ service/realm-example.c \ service/realm-example.h \ service/realm-example-provider.c \ service/realm-example-provider.h \ service/realm-ini-config.c \ service/realm-ini-config.h \ service/realm-invocation.c \ service/realm-invocation.h \ service/realm-kerberos.c \ service/realm-kerberos.h \ service/realm-kerberos-config.c \ service/realm-kerberos-config.h \ service/realm-kerberos-membership.c \ service/realm-kerberos-membership.h \ service/realm-kerberos-provider.c \ service/realm-kerberos-provider.h \ service/realm-ldap.c \ service/realm-ldap.h \ service/realm-login-name.c \ service/realm-login-name.h \ service/realm-network.c \ service/realm-network.h \ service/realm-options.c \ service/realm-options.h \ service/realm-packages.c \ service/realm-packages.h \ service/realm-provider.c \ service/realm-provider.h \ service/realm-samba.c \ service/realm-samba.h \ service/realm-samba-config.c \ service/realm-samba-config.h \ service/realm-samba-enroll.c \ service/realm-samba-enroll.h \ service/realm-samba-provider.c \ service/realm-samba-provider.h \ service/realm-samba-winbind.c \ service/realm-samba-winbind.h \ service/realm-service.c \ service/realm-service.h \ service/realm-settings.c \ service/realm-settings.h \ service/realm-sssd.c \ service/realm-sssd.h \ service/realm-sssd-ad.c \ service/realm-sssd-ad.h \ service/realm-sssd-provider.c \ service/realm-sssd-provider.h \ service/realm-sssd-config.c \ service/realm-sssd-config.h \ service/realm-sssd-ipa.c \ service/realm-sssd-ipa.h \ service/realm-usleep-async.c \ service/realm-usleep-async.h \ service/safe-format-string.c \ service/safe-format-string.h \ $(NULL) realmd_CFLAGS = \ -I$(top_srcdir)/dbus \ -I$(top_srcdir)/build \ -DPRIVATE_DIR="\"$(privatedir)\"" \ -DSYSCONF_DIR="\"$(sysconfdir)\"" \ -DPROVIDER_DIR="\"$(privatedir)/provider.d\"" \ -DLOCALEDIR=\""$(datadir)/locale"\" \ -DSTATE_DIR="\"$(localstatedir)/lib/realmd\"" \ -DCACHEDIR="\"$(cachedir)\"" \ $(PACKAGEKIT_CFLAGS) \ $(POLKIT_CFLAGS) \ $(SYSTEMD_JOURNAL_CFLAGS) \ $(GLIB_CFLAGS) \ $(KRB5_CFLAGS) \ $(LDAP_CFLAGS) \ $(NULL) realmd_LDADD = \ librealm-dbus.a \ $(PACKAGEKIT_LIBS) \ $(POLKIT_LIBS) \ $(SYSTEMD_JOURNAL_LIBS) \ $(GLIB_LIBS) \ $(KRB5_LIBS) \ $(LDAP_LIBS) \ $(NULL) TEST_CFLAGS = \ -I$(top_srcdir) \ -DTESTFILE_DIR="\"@abs_srcdir@/tests/files\"" \ -DSYSCONF_DIR="\"/tmp/realmd-etc\"" \ -DPRIVATE_DIR="\"@abs_srcdir@/tests/files\"" \ $(GLIB_CFLAGS) \ $(POLKIT_CFLAGS) \ $(NULL) TEST_LIBS = \ $(GLIB_LIBS) TEST_PROGS = \ test-dn-util \ test-ini-config \ test-sssd-config \ test-safe-format \ test-login-name \ test-settings \ $(NULL) test_dn_util_SOURCES = \ tests/test-dn-util.c \ service/realm-dn-util.c \ $(NULL) test_dn_util_LDADD = $(TEST_LIBS) test_dn_util_CFLAGS = $(TEST_CFLAGS) test_ini_config_SOURCES = \ tests/test-ini-config.c \ service/realm-ini-config.c \ service/realm-samba-config.c \ service/realm-settings.c \ $(NULL) test_ini_config_LDADD = $(TEST_LIBS) test_ini_config_CFLAGS = $(TEST_CFLAGS) test_sssd_config_SOURCES = \ tests/test-sssd-config.c \ service/realm-ini-config.c \ service/realm-sssd-config.c \ service/realm-settings.c \ $(NULL) test_sssd_config_LDADD = $(TEST_LIBS) test_sssd_config_CFLAGS = $(TEST_CFLAGS) test_safe_format_SOURCES = \ tests/test-safe-format.c \ service/safe-format-string.c \ $(NULL) test_safe_format_LDADD = $(TEST_LIBS) test_safe_format_CFLAGS = $(TEST_CFLAGS) test_login_name_SOURCES = \ tests/test-login-name.c \ service/realm-login-name.c \ $(NULL) test_login_name_LDADD = $(TEST_LIBS) test_login_name_CFLAGS = $(TEST_CFLAGS) test_settings_SOURCES = \ tests/test-settings.c \ service/realm-settings.c \ $(NULL) test_settings_LDADD = $(TEST_LIBS) test_settings_CFLAGS = $(TEST_CFLAGS) frob_install_packages_SOURCES = \ tests/frob-install-packages.c \ service/realm-packages.c \ service/realm-settings.c \ service/realm-errors.c \ $(NULL) frob_install_packages_CFLAGS = \ -I$(srcdir)/dbus \ $(TEST_CFLAGS) \ $(NULL) frob_install_packages_LDADD = \ $(TEST_LIBS) \ $(NULL) realm_SOURCES = \ tools/realm.c \ tools/realm.h \ tools/realm-client.h \ tools/realm-client.c \ tools/realm-discover.c \ tools/realm-join.c \ tools/realm-leave.c \ tools/realm-logins.c \ $(NULL) realm_CFLAGS = \ -I$(top_srcdir)/dbus \ -I$(top_srcdir)/build \ -DLOCALEDIR=\""$(datadir)/locale"\" \ -DREALMD_EXECUTABLE=\""$(libexecdir)/realmd"\" \ $(GLIB_CFLAGS) \ $(KRB5_CFLAGS) \ $(NULL) realm_LDADD = \ librealm-dbus.a \ $(GLIB_LIBS) \ $(KRB5_LIBS) \ $(NULL) @ENABLE_DOC_TRUE@XSLTPROC_FLAGS = --path $(abs_builddir):$(abs_srcdir):$(abs_builddir)/doc @ENABLE_DOC_TRUE@MAN_IN_FILES = \ @ENABLE_DOC_TRUE@ $(man8_MANS:.8=.xml) \ @ENABLE_DOC_TRUE@ $(man5_MANS:.5=.xml) \ @ENABLE_DOC_TRUE@ $(NULL) @ENABLE_DOC_TRUE@MANUAL_DOCBOOK = doc/manual/realmd-docs.xml @ENABLE_DOC_TRUE@MANUAL_INCLUDES = \ @ENABLE_DOC_TRUE@ doc/manual/realmd-guide-active-directory.xml \ @ENABLE_DOC_TRUE@ doc/manual/realmd-guide-ipa.xml \ @ENABLE_DOC_TRUE@ doc/manual/realmd-guide-kerberos.xml \ @ENABLE_DOC_TRUE@ $(NULL) @ENABLE_DOC_TRUE@MANUAL_STATIC = \ @ENABLE_DOC_TRUE@ doc/manual/static/gtk-doc.css \ @ENABLE_DOC_TRUE@ doc/manual/static/style.css \ @ENABLE_DOC_TRUE@ $(NULL) @ENABLE_DOC_TRUE@DBUS_INTERFACE = dbus/org.freedesktop.realmd.xml @ENABLE_DOC_TRUE@DBUS_ESCAPED = realmd-org.freedesktop.realmd.xml @ENABLE_DOC_TRUE@DBUS_DOC_GENERATED = \ @ENABLE_DOC_TRUE@ realmd-org.freedesktop.realmd.Kerberos.xml \ @ENABLE_DOC_TRUE@ realmd-org.freedesktop.realmd.KerberosMembership.xml \ @ENABLE_DOC_TRUE@ realmd-org.freedesktop.realmd.Provider.xml \ @ENABLE_DOC_TRUE@ realmd-org.freedesktop.realmd.Realm.xml \ @ENABLE_DOC_TRUE@ realmd-org.freedesktop.realmd.Service.xml @ENABLE_DOC_TRUE@MANUAL_XSLT = \ @ENABLE_DOC_TRUE@ doc/manual/escape-xml-to-text.xsl \ @ENABLE_DOC_TRUE@ doc/manual/gdbus-fix-bugs.xsl \ @ENABLE_DOC_TRUE@ doc/manual/gtk-doc.xsl \ @ENABLE_DOC_TRUE@ doc/manual/version-greater-or-equal.xsl \ @ENABLE_DOC_TRUE@ doc/manual/devhelp2.xsl \ @ENABLE_DOC_TRUE@ $(NULL) @ENABLE_DOC_TRUE@INTERNAL_DOCBOOK = doc/internals/realmd-internals.xml @ENABLE_DOC_TRUE@INTERNAL_PARAMS = doc/internals/docbook-params.xsl @ENABLE_DOC_TRUE@INTERNAL_STATIC = \ @ENABLE_DOC_TRUE@ $(NULL) @ENABLE_DOC_TRUE@INTERNAL_INCLUDES = \ @ENABLE_DOC_TRUE@ $(NULL) @ENABLE_DOC_TRUE@SVG_IMAGES = \ @ENABLE_DOC_TRUE@ doc/internals/discover-method.svg \ @ENABLE_DOC_TRUE@ doc/internals/join-method.svg \ @ENABLE_DOC_TRUE@ $(NULL) # ------------------------------------------------------------ # Testing # LOG_DRIVER = $(top_srcdir)/build/tap-driver LOG_COMPILER = sh -c '"$$0" "$$@" --tap' VALGRIND_ARGS = --trace-children=no --quiet --error-exitcode=33 \ --suppressions=valgrind-suppressions --gen-suppressions=all \ --num-callers=16 VALGRIND_SUPPRESSIONS = \ build/glib.supp \ $(NULL) all: $(BUILT_SOURCES) config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .conf .conf.in .service .service.in .5 .8 .c .log .o .obj .test .test$(EXEEXT) .trs .xml am--refresh: Makefile @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/dbus/Makefile.am $(srcdir)/service/Makefile.am $(srcdir)/tests/Makefile.am $(srcdir)/tools/Makefile.am $(srcdir)/doc/manual/Makefile.am $(srcdir)/doc/internals/Makefile.am $(srcdir)/doc/website/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(srcdir)/dbus/Makefile.am $(srcdir)/service/Makefile.am $(srcdir)/tests/Makefile.am $(srcdir)/tools/Makefile.am $(srcdir)/doc/manual/Makefile.am $(srcdir)/doc/internals/Makefile.am $(srcdir)/doc/website/Makefile.am $(am__empty): $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 doc/version.xml: $(top_builddir)/config.status $(top_srcdir)/doc/version.xml.in cd $(top_builddir) && $(SHELL) ./config.status $@ clean-checkPROGRAMS: -test -z "$(check_PROGRAMS)" || rm -f $(check_PROGRAMS) install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ } \ ; done uninstall-libexecPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(libexecdir)" && rm -f $$files clean-libexecPROGRAMS: -test -z "$(libexec_PROGRAMS)" || rm -f $(libexec_PROGRAMS) clean-noinstPROGRAMS: -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) install-privatePROGRAMS: $(private_PROGRAMS) @$(NORMAL_INSTALL) @list='$(private_PROGRAMS)'; test -n "$(privatedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(privatedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(privatedir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(privatedir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(privatedir)$$dir" || exit $$?; \ } \ ; done uninstall-privatePROGRAMS: @$(NORMAL_UNINSTALL) @list='$(private_PROGRAMS)'; test -n "$(privatedir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(privatedir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(privatedir)" && rm -f $$files clean-privatePROGRAMS: -test -z "$(private_PROGRAMS)" || rm -f $(private_PROGRAMS) install-sbinPROGRAMS: $(sbin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(sbindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(sbindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \ } \ ; done uninstall-sbinPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(sbindir)" && rm -f $$files clean-sbinPROGRAMS: -test -z "$(sbin_PROGRAMS)" || rm -f $(sbin_PROGRAMS) clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) librealm-dbus.a: $(librealm_dbus_a_OBJECTS) $(librealm_dbus_a_DEPENDENCIES) $(EXTRA_librealm_dbus_a_DEPENDENCIES) $(AM_V_at)-rm -f librealm-dbus.a $(AM_V_AR)$(librealm_dbus_a_AR) librealm-dbus.a $(librealm_dbus_a_OBJECTS) $(librealm_dbus_a_LIBADD) $(AM_V_at)$(RANLIB) librealm-dbus.a tests/$(am__dirstamp): @$(MKDIR_P) tests @: > tests/$(am__dirstamp) tests/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) tests/$(DEPDIR) @: > tests/$(DEPDIR)/$(am__dirstamp) tests/frob_install_packages-frob-install-packages.$(OBJEXT): \ tests/$(am__dirstamp) tests/$(DEPDIR)/$(am__dirstamp) service/$(am__dirstamp): @$(MKDIR_P) service @: > service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) service/$(DEPDIR) @: > service/$(DEPDIR)/$(am__dirstamp) service/frob_install_packages-realm-packages.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) service/frob_install_packages-realm-settings.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) service/frob_install_packages-realm-errors.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) frob-install-packages$(EXEEXT): $(frob_install_packages_OBJECTS) $(frob_install_packages_DEPENDENCIES) $(EXTRA_frob_install_packages_DEPENDENCIES) @rm -f frob-install-packages$(EXEEXT) $(AM_V_CCLD)$(frob_install_packages_LINK) $(frob_install_packages_OBJECTS) $(frob_install_packages_LDADD) $(LIBS) tools/$(am__dirstamp): @$(MKDIR_P) tools @: > tools/$(am__dirstamp) tools/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) tools/$(DEPDIR) @: > tools/$(DEPDIR)/$(am__dirstamp) tools/realm-realm.$(OBJEXT): tools/$(am__dirstamp) \ tools/$(DEPDIR)/$(am__dirstamp) tools/realm-realm-client.$(OBJEXT): tools/$(am__dirstamp) \ tools/$(DEPDIR)/$(am__dirstamp) tools/realm-realm-discover.$(OBJEXT): tools/$(am__dirstamp) \ tools/$(DEPDIR)/$(am__dirstamp) tools/realm-realm-join.$(OBJEXT): tools/$(am__dirstamp) \ tools/$(DEPDIR)/$(am__dirstamp) tools/realm-realm-leave.$(OBJEXT): tools/$(am__dirstamp) \ tools/$(DEPDIR)/$(am__dirstamp) tools/realm-realm-logins.$(OBJEXT): tools/$(am__dirstamp) \ tools/$(DEPDIR)/$(am__dirstamp) realm$(EXEEXT): $(realm_OBJECTS) $(realm_DEPENDENCIES) $(EXTRA_realm_DEPENDENCIES) @rm -f realm$(EXEEXT) $(AM_V_CCLD)$(realm_LINK) $(realm_OBJECTS) $(realm_LDADD) $(LIBS) service/realmd-realm-adcli-enroll.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-all-provider.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-command.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-credential.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-daemon.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-diagnostics.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-disco.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-disco-dns.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-disco-domain.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-disco-mscldap.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-disco-rootdse.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-dn-util.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-errors.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-example.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-example-provider.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-ini-config.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-invocation.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-kerberos.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-kerberos-config.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-kerberos-membership.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-kerberos-provider.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-ldap.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-login-name.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-network.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-options.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-packages.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-provider.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-samba.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-samba-config.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-samba-enroll.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-samba-provider.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-samba-winbind.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-service.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-settings.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-sssd.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-sssd-ad.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-sssd-provider.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-sssd-config.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-sssd-ipa.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-realm-usleep-async.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) service/realmd-safe-format-string.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) realmd$(EXEEXT): $(realmd_OBJECTS) $(realmd_DEPENDENCIES) $(EXTRA_realmd_DEPENDENCIES) @rm -f realmd$(EXEEXT) $(AM_V_CCLD)$(realmd_LINK) $(realmd_OBJECTS) $(realmd_LDADD) $(LIBS) tests/test_dn_util-test-dn-util.$(OBJEXT): tests/$(am__dirstamp) \ tests/$(DEPDIR)/$(am__dirstamp) service/test_dn_util-realm-dn-util.$(OBJEXT): service/$(am__dirstamp) \ service/$(DEPDIR)/$(am__dirstamp) test-dn-util$(EXEEXT): $(test_dn_util_OBJECTS) $(test_dn_util_DEPENDENCIES) $(EXTRA_test_dn_util_DEPENDENCIES) @rm -f test-dn-util$(EXEEXT) $(AM_V_CCLD)$(test_dn_util_LINK) $(test_dn_util_OBJECTS) $(test_dn_util_LDADD) $(LIBS) tests/test_ini_config-test-ini-config.$(OBJEXT): \ tests/$(am__dirstamp) tests/$(DEPDIR)/$(am__dirstamp) service/test_ini_config-realm-ini-config.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) service/test_ini_config-realm-samba-config.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) service/test_ini_config-realm-settings.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) test-ini-config$(EXEEXT): $(test_ini_config_OBJECTS) $(test_ini_config_DEPENDENCIES) $(EXTRA_test_ini_config_DEPENDENCIES) @rm -f test-ini-config$(EXEEXT) $(AM_V_CCLD)$(test_ini_config_LINK) $(test_ini_config_OBJECTS) $(test_ini_config_LDADD) $(LIBS) tests/test_login_name-test-login-name.$(OBJEXT): \ tests/$(am__dirstamp) tests/$(DEPDIR)/$(am__dirstamp) service/test_login_name-realm-login-name.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) test-login-name$(EXEEXT): $(test_login_name_OBJECTS) $(test_login_name_DEPENDENCIES) $(EXTRA_test_login_name_DEPENDENCIES) @rm -f test-login-name$(EXEEXT) $(AM_V_CCLD)$(test_login_name_LINK) $(test_login_name_OBJECTS) $(test_login_name_LDADD) $(LIBS) tests/test_safe_format-test-safe-format.$(OBJEXT): \ tests/$(am__dirstamp) tests/$(DEPDIR)/$(am__dirstamp) service/test_safe_format-safe-format-string.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) test-safe-format$(EXEEXT): $(test_safe_format_OBJECTS) $(test_safe_format_DEPENDENCIES) $(EXTRA_test_safe_format_DEPENDENCIES) @rm -f test-safe-format$(EXEEXT) $(AM_V_CCLD)$(test_safe_format_LINK) $(test_safe_format_OBJECTS) $(test_safe_format_LDADD) $(LIBS) tests/test_settings-test-settings.$(OBJEXT): tests/$(am__dirstamp) \ tests/$(DEPDIR)/$(am__dirstamp) service/test_settings-realm-settings.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) test-settings$(EXEEXT): $(test_settings_OBJECTS) $(test_settings_DEPENDENCIES) $(EXTRA_test_settings_DEPENDENCIES) @rm -f test-settings$(EXEEXT) $(AM_V_CCLD)$(test_settings_LINK) $(test_settings_OBJECTS) $(test_settings_LDADD) $(LIBS) tests/test_sssd_config-test-sssd-config.$(OBJEXT): \ tests/$(am__dirstamp) tests/$(DEPDIR)/$(am__dirstamp) service/test_sssd_config-realm-ini-config.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) service/test_sssd_config-realm-sssd-config.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) service/test_sssd_config-realm-settings.$(OBJEXT): \ service/$(am__dirstamp) service/$(DEPDIR)/$(am__dirstamp) test-sssd-config$(EXEEXT): $(test_sssd_config_OBJECTS) $(test_sssd_config_DEPENDENCIES) $(EXTRA_test_sssd_config_DEPENDENCIES) @rm -f test-sssd-config$(EXEEXT) $(AM_V_CCLD)$(test_sssd_config_LINK) $(test_sssd_config_OBJECTS) $(test_sssd_config_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f service/*.$(OBJEXT) -rm -f tests/*.$(OBJEXT) -rm -f tools/*.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/librealm_dbus_a-realm-dbus-generated.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/frob_install_packages-realm-errors.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/frob_install_packages-realm-packages.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/frob_install_packages-realm-settings.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-adcli-enroll.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-all-provider.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-command.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-credential.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-daemon.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-diagnostics.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-disco-dns.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-disco-domain.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-disco-mscldap.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-disco-rootdse.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-disco.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-dn-util.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-errors.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-example-provider.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-example.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-ini-config.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-invocation.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-kerberos-config.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-kerberos-membership.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-kerberos-provider.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-kerberos.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-ldap.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-login-name.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-network.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-options.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-packages.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-provider.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-samba-config.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-samba-enroll.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-samba-provider.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-samba-winbind.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-samba.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-service.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-settings.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-sssd-ad.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-sssd-config.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-sssd-ipa.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-sssd-provider.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-sssd.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-realm-usleep-async.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/realmd-safe-format-string.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/test_dn_util-realm-dn-util.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/test_ini_config-realm-ini-config.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/test_ini_config-realm-samba-config.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/test_ini_config-realm-settings.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/test_login_name-realm-login-name.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/test_safe_format-safe-format-string.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/test_settings-realm-settings.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/test_sssd_config-realm-ini-config.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/test_sssd_config-realm-settings.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@service/$(DEPDIR)/test_sssd_config-realm-sssd-config.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/frob_install_packages-frob-install-packages.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_dn_util-test-dn-util.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_ini_config-test-ini-config.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_login_name-test-login-name.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_safe_format-test-safe-format.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_settings-test-settings.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_sssd_config-test-sssd-config.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/realm-realm-client.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/realm-realm-discover.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/realm-realm-join.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/realm-realm-leave.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/realm-realm-logins.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/realm-realm.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` librealm_dbus_a-realm-dbus-generated.o: realm-dbus-generated.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librealm_dbus_a_CFLAGS) $(CFLAGS) -MT librealm_dbus_a-realm-dbus-generated.o -MD -MP -MF $(DEPDIR)/librealm_dbus_a-realm-dbus-generated.Tpo -c -o librealm_dbus_a-realm-dbus-generated.o `test -f 'realm-dbus-generated.c' || echo '$(srcdir)/'`realm-dbus-generated.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/librealm_dbus_a-realm-dbus-generated.Tpo $(DEPDIR)/librealm_dbus_a-realm-dbus-generated.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='realm-dbus-generated.c' object='librealm_dbus_a-realm-dbus-generated.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librealm_dbus_a_CFLAGS) $(CFLAGS) -c -o librealm_dbus_a-realm-dbus-generated.o `test -f 'realm-dbus-generated.c' || echo '$(srcdir)/'`realm-dbus-generated.c librealm_dbus_a-realm-dbus-generated.obj: realm-dbus-generated.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librealm_dbus_a_CFLAGS) $(CFLAGS) -MT librealm_dbus_a-realm-dbus-generated.obj -MD -MP -MF $(DEPDIR)/librealm_dbus_a-realm-dbus-generated.Tpo -c -o librealm_dbus_a-realm-dbus-generated.obj `if test -f 'realm-dbus-generated.c'; then $(CYGPATH_W) 'realm-dbus-generated.c'; else $(CYGPATH_W) '$(srcdir)/realm-dbus-generated.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/librealm_dbus_a-realm-dbus-generated.Tpo $(DEPDIR)/librealm_dbus_a-realm-dbus-generated.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='realm-dbus-generated.c' object='librealm_dbus_a-realm-dbus-generated.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librealm_dbus_a_CFLAGS) $(CFLAGS) -c -o librealm_dbus_a-realm-dbus-generated.obj `if test -f 'realm-dbus-generated.c'; then $(CYGPATH_W) 'realm-dbus-generated.c'; else $(CYGPATH_W) '$(srcdir)/realm-dbus-generated.c'; fi` tests/frob_install_packages-frob-install-packages.o: tests/frob-install-packages.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -MT tests/frob_install_packages-frob-install-packages.o -MD -MP -MF tests/$(DEPDIR)/frob_install_packages-frob-install-packages.Tpo -c -o tests/frob_install_packages-frob-install-packages.o `test -f 'tests/frob-install-packages.c' || echo '$(srcdir)/'`tests/frob-install-packages.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/frob_install_packages-frob-install-packages.Tpo tests/$(DEPDIR)/frob_install_packages-frob-install-packages.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/frob-install-packages.c' object='tests/frob_install_packages-frob-install-packages.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -c -o tests/frob_install_packages-frob-install-packages.o `test -f 'tests/frob-install-packages.c' || echo '$(srcdir)/'`tests/frob-install-packages.c tests/frob_install_packages-frob-install-packages.obj: tests/frob-install-packages.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -MT tests/frob_install_packages-frob-install-packages.obj -MD -MP -MF tests/$(DEPDIR)/frob_install_packages-frob-install-packages.Tpo -c -o tests/frob_install_packages-frob-install-packages.obj `if test -f 'tests/frob-install-packages.c'; then $(CYGPATH_W) 'tests/frob-install-packages.c'; else $(CYGPATH_W) '$(srcdir)/tests/frob-install-packages.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/frob_install_packages-frob-install-packages.Tpo tests/$(DEPDIR)/frob_install_packages-frob-install-packages.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/frob-install-packages.c' object='tests/frob_install_packages-frob-install-packages.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -c -o tests/frob_install_packages-frob-install-packages.obj `if test -f 'tests/frob-install-packages.c'; then $(CYGPATH_W) 'tests/frob-install-packages.c'; else $(CYGPATH_W) '$(srcdir)/tests/frob-install-packages.c'; fi` service/frob_install_packages-realm-packages.o: service/realm-packages.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -MT service/frob_install_packages-realm-packages.o -MD -MP -MF service/$(DEPDIR)/frob_install_packages-realm-packages.Tpo -c -o service/frob_install_packages-realm-packages.o `test -f 'service/realm-packages.c' || echo '$(srcdir)/'`service/realm-packages.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/frob_install_packages-realm-packages.Tpo service/$(DEPDIR)/frob_install_packages-realm-packages.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-packages.c' object='service/frob_install_packages-realm-packages.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -c -o service/frob_install_packages-realm-packages.o `test -f 'service/realm-packages.c' || echo '$(srcdir)/'`service/realm-packages.c service/frob_install_packages-realm-packages.obj: service/realm-packages.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -MT service/frob_install_packages-realm-packages.obj -MD -MP -MF service/$(DEPDIR)/frob_install_packages-realm-packages.Tpo -c -o service/frob_install_packages-realm-packages.obj `if test -f 'service/realm-packages.c'; then $(CYGPATH_W) 'service/realm-packages.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-packages.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/frob_install_packages-realm-packages.Tpo service/$(DEPDIR)/frob_install_packages-realm-packages.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-packages.c' object='service/frob_install_packages-realm-packages.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -c -o service/frob_install_packages-realm-packages.obj `if test -f 'service/realm-packages.c'; then $(CYGPATH_W) 'service/realm-packages.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-packages.c'; fi` service/frob_install_packages-realm-settings.o: service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -MT service/frob_install_packages-realm-settings.o -MD -MP -MF service/$(DEPDIR)/frob_install_packages-realm-settings.Tpo -c -o service/frob_install_packages-realm-settings.o `test -f 'service/realm-settings.c' || echo '$(srcdir)/'`service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/frob_install_packages-realm-settings.Tpo service/$(DEPDIR)/frob_install_packages-realm-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-settings.c' object='service/frob_install_packages-realm-settings.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -c -o service/frob_install_packages-realm-settings.o `test -f 'service/realm-settings.c' || echo '$(srcdir)/'`service/realm-settings.c service/frob_install_packages-realm-settings.obj: service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -MT service/frob_install_packages-realm-settings.obj -MD -MP -MF service/$(DEPDIR)/frob_install_packages-realm-settings.Tpo -c -o service/frob_install_packages-realm-settings.obj `if test -f 'service/realm-settings.c'; then $(CYGPATH_W) 'service/realm-settings.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-settings.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/frob_install_packages-realm-settings.Tpo service/$(DEPDIR)/frob_install_packages-realm-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-settings.c' object='service/frob_install_packages-realm-settings.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -c -o service/frob_install_packages-realm-settings.obj `if test -f 'service/realm-settings.c'; then $(CYGPATH_W) 'service/realm-settings.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-settings.c'; fi` service/frob_install_packages-realm-errors.o: service/realm-errors.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -MT service/frob_install_packages-realm-errors.o -MD -MP -MF service/$(DEPDIR)/frob_install_packages-realm-errors.Tpo -c -o service/frob_install_packages-realm-errors.o `test -f 'service/realm-errors.c' || echo '$(srcdir)/'`service/realm-errors.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/frob_install_packages-realm-errors.Tpo service/$(DEPDIR)/frob_install_packages-realm-errors.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-errors.c' object='service/frob_install_packages-realm-errors.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -c -o service/frob_install_packages-realm-errors.o `test -f 'service/realm-errors.c' || echo '$(srcdir)/'`service/realm-errors.c service/frob_install_packages-realm-errors.obj: service/realm-errors.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -MT service/frob_install_packages-realm-errors.obj -MD -MP -MF service/$(DEPDIR)/frob_install_packages-realm-errors.Tpo -c -o service/frob_install_packages-realm-errors.obj `if test -f 'service/realm-errors.c'; then $(CYGPATH_W) 'service/realm-errors.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-errors.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/frob_install_packages-realm-errors.Tpo service/$(DEPDIR)/frob_install_packages-realm-errors.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-errors.c' object='service/frob_install_packages-realm-errors.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(frob_install_packages_CFLAGS) $(CFLAGS) -c -o service/frob_install_packages-realm-errors.obj `if test -f 'service/realm-errors.c'; then $(CYGPATH_W) 'service/realm-errors.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-errors.c'; fi` tools/realm-realm.o: tools/realm.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm.o -MD -MP -MF tools/$(DEPDIR)/realm-realm.Tpo -c -o tools/realm-realm.o `test -f 'tools/realm.c' || echo '$(srcdir)/'`tools/realm.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm.Tpo tools/$(DEPDIR)/realm-realm.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm.c' object='tools/realm-realm.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm.o `test -f 'tools/realm.c' || echo '$(srcdir)/'`tools/realm.c tools/realm-realm.obj: tools/realm.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm.obj -MD -MP -MF tools/$(DEPDIR)/realm-realm.Tpo -c -o tools/realm-realm.obj `if test -f 'tools/realm.c'; then $(CYGPATH_W) 'tools/realm.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm.Tpo tools/$(DEPDIR)/realm-realm.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm.c' object='tools/realm-realm.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm.obj `if test -f 'tools/realm.c'; then $(CYGPATH_W) 'tools/realm.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm.c'; fi` tools/realm-realm-client.o: tools/realm-client.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm-client.o -MD -MP -MF tools/$(DEPDIR)/realm-realm-client.Tpo -c -o tools/realm-realm-client.o `test -f 'tools/realm-client.c' || echo '$(srcdir)/'`tools/realm-client.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm-client.Tpo tools/$(DEPDIR)/realm-realm-client.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm-client.c' object='tools/realm-realm-client.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm-client.o `test -f 'tools/realm-client.c' || echo '$(srcdir)/'`tools/realm-client.c tools/realm-realm-client.obj: tools/realm-client.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm-client.obj -MD -MP -MF tools/$(DEPDIR)/realm-realm-client.Tpo -c -o tools/realm-realm-client.obj `if test -f 'tools/realm-client.c'; then $(CYGPATH_W) 'tools/realm-client.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm-client.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm-client.Tpo tools/$(DEPDIR)/realm-realm-client.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm-client.c' object='tools/realm-realm-client.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm-client.obj `if test -f 'tools/realm-client.c'; then $(CYGPATH_W) 'tools/realm-client.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm-client.c'; fi` tools/realm-realm-discover.o: tools/realm-discover.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm-discover.o -MD -MP -MF tools/$(DEPDIR)/realm-realm-discover.Tpo -c -o tools/realm-realm-discover.o `test -f 'tools/realm-discover.c' || echo '$(srcdir)/'`tools/realm-discover.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm-discover.Tpo tools/$(DEPDIR)/realm-realm-discover.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm-discover.c' object='tools/realm-realm-discover.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm-discover.o `test -f 'tools/realm-discover.c' || echo '$(srcdir)/'`tools/realm-discover.c tools/realm-realm-discover.obj: tools/realm-discover.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm-discover.obj -MD -MP -MF tools/$(DEPDIR)/realm-realm-discover.Tpo -c -o tools/realm-realm-discover.obj `if test -f 'tools/realm-discover.c'; then $(CYGPATH_W) 'tools/realm-discover.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm-discover.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm-discover.Tpo tools/$(DEPDIR)/realm-realm-discover.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm-discover.c' object='tools/realm-realm-discover.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm-discover.obj `if test -f 'tools/realm-discover.c'; then $(CYGPATH_W) 'tools/realm-discover.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm-discover.c'; fi` tools/realm-realm-join.o: tools/realm-join.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm-join.o -MD -MP -MF tools/$(DEPDIR)/realm-realm-join.Tpo -c -o tools/realm-realm-join.o `test -f 'tools/realm-join.c' || echo '$(srcdir)/'`tools/realm-join.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm-join.Tpo tools/$(DEPDIR)/realm-realm-join.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm-join.c' object='tools/realm-realm-join.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm-join.o `test -f 'tools/realm-join.c' || echo '$(srcdir)/'`tools/realm-join.c tools/realm-realm-join.obj: tools/realm-join.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm-join.obj -MD -MP -MF tools/$(DEPDIR)/realm-realm-join.Tpo -c -o tools/realm-realm-join.obj `if test -f 'tools/realm-join.c'; then $(CYGPATH_W) 'tools/realm-join.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm-join.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm-join.Tpo tools/$(DEPDIR)/realm-realm-join.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm-join.c' object='tools/realm-realm-join.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm-join.obj `if test -f 'tools/realm-join.c'; then $(CYGPATH_W) 'tools/realm-join.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm-join.c'; fi` tools/realm-realm-leave.o: tools/realm-leave.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm-leave.o -MD -MP -MF tools/$(DEPDIR)/realm-realm-leave.Tpo -c -o tools/realm-realm-leave.o `test -f 'tools/realm-leave.c' || echo '$(srcdir)/'`tools/realm-leave.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm-leave.Tpo tools/$(DEPDIR)/realm-realm-leave.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm-leave.c' object='tools/realm-realm-leave.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm-leave.o `test -f 'tools/realm-leave.c' || echo '$(srcdir)/'`tools/realm-leave.c tools/realm-realm-leave.obj: tools/realm-leave.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm-leave.obj -MD -MP -MF tools/$(DEPDIR)/realm-realm-leave.Tpo -c -o tools/realm-realm-leave.obj `if test -f 'tools/realm-leave.c'; then $(CYGPATH_W) 'tools/realm-leave.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm-leave.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm-leave.Tpo tools/$(DEPDIR)/realm-realm-leave.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm-leave.c' object='tools/realm-realm-leave.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm-leave.obj `if test -f 'tools/realm-leave.c'; then $(CYGPATH_W) 'tools/realm-leave.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm-leave.c'; fi` tools/realm-realm-logins.o: tools/realm-logins.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm-logins.o -MD -MP -MF tools/$(DEPDIR)/realm-realm-logins.Tpo -c -o tools/realm-realm-logins.o `test -f 'tools/realm-logins.c' || echo '$(srcdir)/'`tools/realm-logins.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm-logins.Tpo tools/$(DEPDIR)/realm-realm-logins.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm-logins.c' object='tools/realm-realm-logins.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm-logins.o `test -f 'tools/realm-logins.c' || echo '$(srcdir)/'`tools/realm-logins.c tools/realm-realm-logins.obj: tools/realm-logins.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -MT tools/realm-realm-logins.obj -MD -MP -MF tools/$(DEPDIR)/realm-realm-logins.Tpo -c -o tools/realm-realm-logins.obj `if test -f 'tools/realm-logins.c'; then $(CYGPATH_W) 'tools/realm-logins.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm-logins.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tools/$(DEPDIR)/realm-realm-logins.Tpo tools/$(DEPDIR)/realm-realm-logins.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools/realm-logins.c' object='tools/realm-realm-logins.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realm_CFLAGS) $(CFLAGS) -c -o tools/realm-realm-logins.obj `if test -f 'tools/realm-logins.c'; then $(CYGPATH_W) 'tools/realm-logins.c'; else $(CYGPATH_W) '$(srcdir)/tools/realm-logins.c'; fi` service/realmd-realm-adcli-enroll.o: service/realm-adcli-enroll.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-adcli-enroll.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-adcli-enroll.Tpo -c -o service/realmd-realm-adcli-enroll.o `test -f 'service/realm-adcli-enroll.c' || echo '$(srcdir)/'`service/realm-adcli-enroll.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-adcli-enroll.Tpo service/$(DEPDIR)/realmd-realm-adcli-enroll.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-adcli-enroll.c' object='service/realmd-realm-adcli-enroll.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-adcli-enroll.o `test -f 'service/realm-adcli-enroll.c' || echo '$(srcdir)/'`service/realm-adcli-enroll.c service/realmd-realm-adcli-enroll.obj: service/realm-adcli-enroll.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-adcli-enroll.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-adcli-enroll.Tpo -c -o service/realmd-realm-adcli-enroll.obj `if test -f 'service/realm-adcli-enroll.c'; then $(CYGPATH_W) 'service/realm-adcli-enroll.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-adcli-enroll.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-adcli-enroll.Tpo service/$(DEPDIR)/realmd-realm-adcli-enroll.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-adcli-enroll.c' object='service/realmd-realm-adcli-enroll.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-adcli-enroll.obj `if test -f 'service/realm-adcli-enroll.c'; then $(CYGPATH_W) 'service/realm-adcli-enroll.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-adcli-enroll.c'; fi` service/realmd-realm-all-provider.o: service/realm-all-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-all-provider.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-all-provider.Tpo -c -o service/realmd-realm-all-provider.o `test -f 'service/realm-all-provider.c' || echo '$(srcdir)/'`service/realm-all-provider.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-all-provider.Tpo service/$(DEPDIR)/realmd-realm-all-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-all-provider.c' object='service/realmd-realm-all-provider.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-all-provider.o `test -f 'service/realm-all-provider.c' || echo '$(srcdir)/'`service/realm-all-provider.c service/realmd-realm-all-provider.obj: service/realm-all-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-all-provider.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-all-provider.Tpo -c -o service/realmd-realm-all-provider.obj `if test -f 'service/realm-all-provider.c'; then $(CYGPATH_W) 'service/realm-all-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-all-provider.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-all-provider.Tpo service/$(DEPDIR)/realmd-realm-all-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-all-provider.c' object='service/realmd-realm-all-provider.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-all-provider.obj `if test -f 'service/realm-all-provider.c'; then $(CYGPATH_W) 'service/realm-all-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-all-provider.c'; fi` service/realmd-realm-command.o: service/realm-command.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-command.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-command.Tpo -c -o service/realmd-realm-command.o `test -f 'service/realm-command.c' || echo '$(srcdir)/'`service/realm-command.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-command.Tpo service/$(DEPDIR)/realmd-realm-command.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-command.c' object='service/realmd-realm-command.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-command.o `test -f 'service/realm-command.c' || echo '$(srcdir)/'`service/realm-command.c service/realmd-realm-command.obj: service/realm-command.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-command.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-command.Tpo -c -o service/realmd-realm-command.obj `if test -f 'service/realm-command.c'; then $(CYGPATH_W) 'service/realm-command.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-command.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-command.Tpo service/$(DEPDIR)/realmd-realm-command.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-command.c' object='service/realmd-realm-command.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-command.obj `if test -f 'service/realm-command.c'; then $(CYGPATH_W) 'service/realm-command.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-command.c'; fi` service/realmd-realm-credential.o: service/realm-credential.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-credential.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-credential.Tpo -c -o service/realmd-realm-credential.o `test -f 'service/realm-credential.c' || echo '$(srcdir)/'`service/realm-credential.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-credential.Tpo service/$(DEPDIR)/realmd-realm-credential.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-credential.c' object='service/realmd-realm-credential.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-credential.o `test -f 'service/realm-credential.c' || echo '$(srcdir)/'`service/realm-credential.c service/realmd-realm-credential.obj: service/realm-credential.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-credential.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-credential.Tpo -c -o service/realmd-realm-credential.obj `if test -f 'service/realm-credential.c'; then $(CYGPATH_W) 'service/realm-credential.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-credential.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-credential.Tpo service/$(DEPDIR)/realmd-realm-credential.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-credential.c' object='service/realmd-realm-credential.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-credential.obj `if test -f 'service/realm-credential.c'; then $(CYGPATH_W) 'service/realm-credential.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-credential.c'; fi` service/realmd-realm-daemon.o: service/realm-daemon.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-daemon.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-daemon.Tpo -c -o service/realmd-realm-daemon.o `test -f 'service/realm-daemon.c' || echo '$(srcdir)/'`service/realm-daemon.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-daemon.Tpo service/$(DEPDIR)/realmd-realm-daemon.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-daemon.c' object='service/realmd-realm-daemon.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-daemon.o `test -f 'service/realm-daemon.c' || echo '$(srcdir)/'`service/realm-daemon.c service/realmd-realm-daemon.obj: service/realm-daemon.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-daemon.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-daemon.Tpo -c -o service/realmd-realm-daemon.obj `if test -f 'service/realm-daemon.c'; then $(CYGPATH_W) 'service/realm-daemon.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-daemon.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-daemon.Tpo service/$(DEPDIR)/realmd-realm-daemon.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-daemon.c' object='service/realmd-realm-daemon.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-daemon.obj `if test -f 'service/realm-daemon.c'; then $(CYGPATH_W) 'service/realm-daemon.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-daemon.c'; fi` service/realmd-realm-diagnostics.o: service/realm-diagnostics.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-diagnostics.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-diagnostics.Tpo -c -o service/realmd-realm-diagnostics.o `test -f 'service/realm-diagnostics.c' || echo '$(srcdir)/'`service/realm-diagnostics.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-diagnostics.Tpo service/$(DEPDIR)/realmd-realm-diagnostics.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-diagnostics.c' object='service/realmd-realm-diagnostics.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-diagnostics.o `test -f 'service/realm-diagnostics.c' || echo '$(srcdir)/'`service/realm-diagnostics.c service/realmd-realm-diagnostics.obj: service/realm-diagnostics.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-diagnostics.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-diagnostics.Tpo -c -o service/realmd-realm-diagnostics.obj `if test -f 'service/realm-diagnostics.c'; then $(CYGPATH_W) 'service/realm-diagnostics.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-diagnostics.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-diagnostics.Tpo service/$(DEPDIR)/realmd-realm-diagnostics.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-diagnostics.c' object='service/realmd-realm-diagnostics.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-diagnostics.obj `if test -f 'service/realm-diagnostics.c'; then $(CYGPATH_W) 'service/realm-diagnostics.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-diagnostics.c'; fi` service/realmd-realm-disco.o: service/realm-disco.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-disco.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-disco.Tpo -c -o service/realmd-realm-disco.o `test -f 'service/realm-disco.c' || echo '$(srcdir)/'`service/realm-disco.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-disco.Tpo service/$(DEPDIR)/realmd-realm-disco.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-disco.c' object='service/realmd-realm-disco.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-disco.o `test -f 'service/realm-disco.c' || echo '$(srcdir)/'`service/realm-disco.c service/realmd-realm-disco.obj: service/realm-disco.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-disco.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-disco.Tpo -c -o service/realmd-realm-disco.obj `if test -f 'service/realm-disco.c'; then $(CYGPATH_W) 'service/realm-disco.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-disco.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-disco.Tpo service/$(DEPDIR)/realmd-realm-disco.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-disco.c' object='service/realmd-realm-disco.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-disco.obj `if test -f 'service/realm-disco.c'; then $(CYGPATH_W) 'service/realm-disco.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-disco.c'; fi` service/realmd-realm-disco-dns.o: service/realm-disco-dns.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-disco-dns.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-disco-dns.Tpo -c -o service/realmd-realm-disco-dns.o `test -f 'service/realm-disco-dns.c' || echo '$(srcdir)/'`service/realm-disco-dns.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-disco-dns.Tpo service/$(DEPDIR)/realmd-realm-disco-dns.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-disco-dns.c' object='service/realmd-realm-disco-dns.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-disco-dns.o `test -f 'service/realm-disco-dns.c' || echo '$(srcdir)/'`service/realm-disco-dns.c service/realmd-realm-disco-dns.obj: service/realm-disco-dns.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-disco-dns.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-disco-dns.Tpo -c -o service/realmd-realm-disco-dns.obj `if test -f 'service/realm-disco-dns.c'; then $(CYGPATH_W) 'service/realm-disco-dns.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-disco-dns.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-disco-dns.Tpo service/$(DEPDIR)/realmd-realm-disco-dns.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-disco-dns.c' object='service/realmd-realm-disco-dns.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-disco-dns.obj `if test -f 'service/realm-disco-dns.c'; then $(CYGPATH_W) 'service/realm-disco-dns.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-disco-dns.c'; fi` service/realmd-realm-disco-domain.o: service/realm-disco-domain.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-disco-domain.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-disco-domain.Tpo -c -o service/realmd-realm-disco-domain.o `test -f 'service/realm-disco-domain.c' || echo '$(srcdir)/'`service/realm-disco-domain.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-disco-domain.Tpo service/$(DEPDIR)/realmd-realm-disco-domain.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-disco-domain.c' object='service/realmd-realm-disco-domain.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-disco-domain.o `test -f 'service/realm-disco-domain.c' || echo '$(srcdir)/'`service/realm-disco-domain.c service/realmd-realm-disco-domain.obj: service/realm-disco-domain.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-disco-domain.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-disco-domain.Tpo -c -o service/realmd-realm-disco-domain.obj `if test -f 'service/realm-disco-domain.c'; then $(CYGPATH_W) 'service/realm-disco-domain.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-disco-domain.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-disco-domain.Tpo service/$(DEPDIR)/realmd-realm-disco-domain.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-disco-domain.c' object='service/realmd-realm-disco-domain.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-disco-domain.obj `if test -f 'service/realm-disco-domain.c'; then $(CYGPATH_W) 'service/realm-disco-domain.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-disco-domain.c'; fi` service/realmd-realm-disco-mscldap.o: service/realm-disco-mscldap.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-disco-mscldap.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-disco-mscldap.Tpo -c -o service/realmd-realm-disco-mscldap.o `test -f 'service/realm-disco-mscldap.c' || echo '$(srcdir)/'`service/realm-disco-mscldap.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-disco-mscldap.Tpo service/$(DEPDIR)/realmd-realm-disco-mscldap.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-disco-mscldap.c' object='service/realmd-realm-disco-mscldap.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-disco-mscldap.o `test -f 'service/realm-disco-mscldap.c' || echo '$(srcdir)/'`service/realm-disco-mscldap.c service/realmd-realm-disco-mscldap.obj: service/realm-disco-mscldap.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-disco-mscldap.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-disco-mscldap.Tpo -c -o service/realmd-realm-disco-mscldap.obj `if test -f 'service/realm-disco-mscldap.c'; then $(CYGPATH_W) 'service/realm-disco-mscldap.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-disco-mscldap.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-disco-mscldap.Tpo service/$(DEPDIR)/realmd-realm-disco-mscldap.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-disco-mscldap.c' object='service/realmd-realm-disco-mscldap.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-disco-mscldap.obj `if test -f 'service/realm-disco-mscldap.c'; then $(CYGPATH_W) 'service/realm-disco-mscldap.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-disco-mscldap.c'; fi` service/realmd-realm-disco-rootdse.o: service/realm-disco-rootdse.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-disco-rootdse.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-disco-rootdse.Tpo -c -o service/realmd-realm-disco-rootdse.o `test -f 'service/realm-disco-rootdse.c' || echo '$(srcdir)/'`service/realm-disco-rootdse.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-disco-rootdse.Tpo service/$(DEPDIR)/realmd-realm-disco-rootdse.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-disco-rootdse.c' object='service/realmd-realm-disco-rootdse.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-disco-rootdse.o `test -f 'service/realm-disco-rootdse.c' || echo '$(srcdir)/'`service/realm-disco-rootdse.c service/realmd-realm-disco-rootdse.obj: service/realm-disco-rootdse.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-disco-rootdse.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-disco-rootdse.Tpo -c -o service/realmd-realm-disco-rootdse.obj `if test -f 'service/realm-disco-rootdse.c'; then $(CYGPATH_W) 'service/realm-disco-rootdse.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-disco-rootdse.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-disco-rootdse.Tpo service/$(DEPDIR)/realmd-realm-disco-rootdse.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-disco-rootdse.c' object='service/realmd-realm-disco-rootdse.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-disco-rootdse.obj `if test -f 'service/realm-disco-rootdse.c'; then $(CYGPATH_W) 'service/realm-disco-rootdse.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-disco-rootdse.c'; fi` service/realmd-realm-dn-util.o: service/realm-dn-util.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-dn-util.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-dn-util.Tpo -c -o service/realmd-realm-dn-util.o `test -f 'service/realm-dn-util.c' || echo '$(srcdir)/'`service/realm-dn-util.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-dn-util.Tpo service/$(DEPDIR)/realmd-realm-dn-util.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-dn-util.c' object='service/realmd-realm-dn-util.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-dn-util.o `test -f 'service/realm-dn-util.c' || echo '$(srcdir)/'`service/realm-dn-util.c service/realmd-realm-dn-util.obj: service/realm-dn-util.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-dn-util.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-dn-util.Tpo -c -o service/realmd-realm-dn-util.obj `if test -f 'service/realm-dn-util.c'; then $(CYGPATH_W) 'service/realm-dn-util.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-dn-util.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-dn-util.Tpo service/$(DEPDIR)/realmd-realm-dn-util.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-dn-util.c' object='service/realmd-realm-dn-util.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-dn-util.obj `if test -f 'service/realm-dn-util.c'; then $(CYGPATH_W) 'service/realm-dn-util.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-dn-util.c'; fi` service/realmd-realm-errors.o: service/realm-errors.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-errors.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-errors.Tpo -c -o service/realmd-realm-errors.o `test -f 'service/realm-errors.c' || echo '$(srcdir)/'`service/realm-errors.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-errors.Tpo service/$(DEPDIR)/realmd-realm-errors.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-errors.c' object='service/realmd-realm-errors.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-errors.o `test -f 'service/realm-errors.c' || echo '$(srcdir)/'`service/realm-errors.c service/realmd-realm-errors.obj: service/realm-errors.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-errors.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-errors.Tpo -c -o service/realmd-realm-errors.obj `if test -f 'service/realm-errors.c'; then $(CYGPATH_W) 'service/realm-errors.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-errors.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-errors.Tpo service/$(DEPDIR)/realmd-realm-errors.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-errors.c' object='service/realmd-realm-errors.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-errors.obj `if test -f 'service/realm-errors.c'; then $(CYGPATH_W) 'service/realm-errors.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-errors.c'; fi` service/realmd-realm-example.o: service/realm-example.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-example.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-example.Tpo -c -o service/realmd-realm-example.o `test -f 'service/realm-example.c' || echo '$(srcdir)/'`service/realm-example.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-example.Tpo service/$(DEPDIR)/realmd-realm-example.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-example.c' object='service/realmd-realm-example.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-example.o `test -f 'service/realm-example.c' || echo '$(srcdir)/'`service/realm-example.c service/realmd-realm-example.obj: service/realm-example.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-example.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-example.Tpo -c -o service/realmd-realm-example.obj `if test -f 'service/realm-example.c'; then $(CYGPATH_W) 'service/realm-example.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-example.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-example.Tpo service/$(DEPDIR)/realmd-realm-example.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-example.c' object='service/realmd-realm-example.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-example.obj `if test -f 'service/realm-example.c'; then $(CYGPATH_W) 'service/realm-example.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-example.c'; fi` service/realmd-realm-example-provider.o: service/realm-example-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-example-provider.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-example-provider.Tpo -c -o service/realmd-realm-example-provider.o `test -f 'service/realm-example-provider.c' || echo '$(srcdir)/'`service/realm-example-provider.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-example-provider.Tpo service/$(DEPDIR)/realmd-realm-example-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-example-provider.c' object='service/realmd-realm-example-provider.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-example-provider.o `test -f 'service/realm-example-provider.c' || echo '$(srcdir)/'`service/realm-example-provider.c service/realmd-realm-example-provider.obj: service/realm-example-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-example-provider.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-example-provider.Tpo -c -o service/realmd-realm-example-provider.obj `if test -f 'service/realm-example-provider.c'; then $(CYGPATH_W) 'service/realm-example-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-example-provider.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-example-provider.Tpo service/$(DEPDIR)/realmd-realm-example-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-example-provider.c' object='service/realmd-realm-example-provider.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-example-provider.obj `if test -f 'service/realm-example-provider.c'; then $(CYGPATH_W) 'service/realm-example-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-example-provider.c'; fi` service/realmd-realm-ini-config.o: service/realm-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-ini-config.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-ini-config.Tpo -c -o service/realmd-realm-ini-config.o `test -f 'service/realm-ini-config.c' || echo '$(srcdir)/'`service/realm-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-ini-config.Tpo service/$(DEPDIR)/realmd-realm-ini-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-ini-config.c' object='service/realmd-realm-ini-config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-ini-config.o `test -f 'service/realm-ini-config.c' || echo '$(srcdir)/'`service/realm-ini-config.c service/realmd-realm-ini-config.obj: service/realm-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-ini-config.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-ini-config.Tpo -c -o service/realmd-realm-ini-config.obj `if test -f 'service/realm-ini-config.c'; then $(CYGPATH_W) 'service/realm-ini-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-ini-config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-ini-config.Tpo service/$(DEPDIR)/realmd-realm-ini-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-ini-config.c' object='service/realmd-realm-ini-config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-ini-config.obj `if test -f 'service/realm-ini-config.c'; then $(CYGPATH_W) 'service/realm-ini-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-ini-config.c'; fi` service/realmd-realm-invocation.o: service/realm-invocation.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-invocation.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-invocation.Tpo -c -o service/realmd-realm-invocation.o `test -f 'service/realm-invocation.c' || echo '$(srcdir)/'`service/realm-invocation.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-invocation.Tpo service/$(DEPDIR)/realmd-realm-invocation.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-invocation.c' object='service/realmd-realm-invocation.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-invocation.o `test -f 'service/realm-invocation.c' || echo '$(srcdir)/'`service/realm-invocation.c service/realmd-realm-invocation.obj: service/realm-invocation.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-invocation.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-invocation.Tpo -c -o service/realmd-realm-invocation.obj `if test -f 'service/realm-invocation.c'; then $(CYGPATH_W) 'service/realm-invocation.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-invocation.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-invocation.Tpo service/$(DEPDIR)/realmd-realm-invocation.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-invocation.c' object='service/realmd-realm-invocation.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-invocation.obj `if test -f 'service/realm-invocation.c'; then $(CYGPATH_W) 'service/realm-invocation.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-invocation.c'; fi` service/realmd-realm-kerberos.o: service/realm-kerberos.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-kerberos.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-kerberos.Tpo -c -o service/realmd-realm-kerberos.o `test -f 'service/realm-kerberos.c' || echo '$(srcdir)/'`service/realm-kerberos.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-kerberos.Tpo service/$(DEPDIR)/realmd-realm-kerberos.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-kerberos.c' object='service/realmd-realm-kerberos.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-kerberos.o `test -f 'service/realm-kerberos.c' || echo '$(srcdir)/'`service/realm-kerberos.c service/realmd-realm-kerberos.obj: service/realm-kerberos.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-kerberos.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-kerberos.Tpo -c -o service/realmd-realm-kerberos.obj `if test -f 'service/realm-kerberos.c'; then $(CYGPATH_W) 'service/realm-kerberos.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-kerberos.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-kerberos.Tpo service/$(DEPDIR)/realmd-realm-kerberos.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-kerberos.c' object='service/realmd-realm-kerberos.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-kerberos.obj `if test -f 'service/realm-kerberos.c'; then $(CYGPATH_W) 'service/realm-kerberos.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-kerberos.c'; fi` service/realmd-realm-kerberos-config.o: service/realm-kerberos-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-kerberos-config.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-kerberos-config.Tpo -c -o service/realmd-realm-kerberos-config.o `test -f 'service/realm-kerberos-config.c' || echo '$(srcdir)/'`service/realm-kerberos-config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-kerberos-config.Tpo service/$(DEPDIR)/realmd-realm-kerberos-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-kerberos-config.c' object='service/realmd-realm-kerberos-config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-kerberos-config.o `test -f 'service/realm-kerberos-config.c' || echo '$(srcdir)/'`service/realm-kerberos-config.c service/realmd-realm-kerberos-config.obj: service/realm-kerberos-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-kerberos-config.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-kerberos-config.Tpo -c -o service/realmd-realm-kerberos-config.obj `if test -f 'service/realm-kerberos-config.c'; then $(CYGPATH_W) 'service/realm-kerberos-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-kerberos-config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-kerberos-config.Tpo service/$(DEPDIR)/realmd-realm-kerberos-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-kerberos-config.c' object='service/realmd-realm-kerberos-config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-kerberos-config.obj `if test -f 'service/realm-kerberos-config.c'; then $(CYGPATH_W) 'service/realm-kerberos-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-kerberos-config.c'; fi` service/realmd-realm-kerberos-membership.o: service/realm-kerberos-membership.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-kerberos-membership.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-kerberos-membership.Tpo -c -o service/realmd-realm-kerberos-membership.o `test -f 'service/realm-kerberos-membership.c' || echo '$(srcdir)/'`service/realm-kerberos-membership.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-kerberos-membership.Tpo service/$(DEPDIR)/realmd-realm-kerberos-membership.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-kerberos-membership.c' object='service/realmd-realm-kerberos-membership.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-kerberos-membership.o `test -f 'service/realm-kerberos-membership.c' || echo '$(srcdir)/'`service/realm-kerberos-membership.c service/realmd-realm-kerberos-membership.obj: service/realm-kerberos-membership.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-kerberos-membership.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-kerberos-membership.Tpo -c -o service/realmd-realm-kerberos-membership.obj `if test -f 'service/realm-kerberos-membership.c'; then $(CYGPATH_W) 'service/realm-kerberos-membership.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-kerberos-membership.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-kerberos-membership.Tpo service/$(DEPDIR)/realmd-realm-kerberos-membership.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-kerberos-membership.c' object='service/realmd-realm-kerberos-membership.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-kerberos-membership.obj `if test -f 'service/realm-kerberos-membership.c'; then $(CYGPATH_W) 'service/realm-kerberos-membership.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-kerberos-membership.c'; fi` service/realmd-realm-kerberos-provider.o: service/realm-kerberos-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-kerberos-provider.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-kerberos-provider.Tpo -c -o service/realmd-realm-kerberos-provider.o `test -f 'service/realm-kerberos-provider.c' || echo '$(srcdir)/'`service/realm-kerberos-provider.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-kerberos-provider.Tpo service/$(DEPDIR)/realmd-realm-kerberos-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-kerberos-provider.c' object='service/realmd-realm-kerberos-provider.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-kerberos-provider.o `test -f 'service/realm-kerberos-provider.c' || echo '$(srcdir)/'`service/realm-kerberos-provider.c service/realmd-realm-kerberos-provider.obj: service/realm-kerberos-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-kerberos-provider.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-kerberos-provider.Tpo -c -o service/realmd-realm-kerberos-provider.obj `if test -f 'service/realm-kerberos-provider.c'; then $(CYGPATH_W) 'service/realm-kerberos-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-kerberos-provider.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-kerberos-provider.Tpo service/$(DEPDIR)/realmd-realm-kerberos-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-kerberos-provider.c' object='service/realmd-realm-kerberos-provider.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-kerberos-provider.obj `if test -f 'service/realm-kerberos-provider.c'; then $(CYGPATH_W) 'service/realm-kerberos-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-kerberos-provider.c'; fi` service/realmd-realm-ldap.o: service/realm-ldap.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-ldap.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-ldap.Tpo -c -o service/realmd-realm-ldap.o `test -f 'service/realm-ldap.c' || echo '$(srcdir)/'`service/realm-ldap.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-ldap.Tpo service/$(DEPDIR)/realmd-realm-ldap.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-ldap.c' object='service/realmd-realm-ldap.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-ldap.o `test -f 'service/realm-ldap.c' || echo '$(srcdir)/'`service/realm-ldap.c service/realmd-realm-ldap.obj: service/realm-ldap.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-ldap.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-ldap.Tpo -c -o service/realmd-realm-ldap.obj `if test -f 'service/realm-ldap.c'; then $(CYGPATH_W) 'service/realm-ldap.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-ldap.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-ldap.Tpo service/$(DEPDIR)/realmd-realm-ldap.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-ldap.c' object='service/realmd-realm-ldap.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-ldap.obj `if test -f 'service/realm-ldap.c'; then $(CYGPATH_W) 'service/realm-ldap.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-ldap.c'; fi` service/realmd-realm-login-name.o: service/realm-login-name.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-login-name.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-login-name.Tpo -c -o service/realmd-realm-login-name.o `test -f 'service/realm-login-name.c' || echo '$(srcdir)/'`service/realm-login-name.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-login-name.Tpo service/$(DEPDIR)/realmd-realm-login-name.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-login-name.c' object='service/realmd-realm-login-name.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-login-name.o `test -f 'service/realm-login-name.c' || echo '$(srcdir)/'`service/realm-login-name.c service/realmd-realm-login-name.obj: service/realm-login-name.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-login-name.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-login-name.Tpo -c -o service/realmd-realm-login-name.obj `if test -f 'service/realm-login-name.c'; then $(CYGPATH_W) 'service/realm-login-name.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-login-name.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-login-name.Tpo service/$(DEPDIR)/realmd-realm-login-name.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-login-name.c' object='service/realmd-realm-login-name.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-login-name.obj `if test -f 'service/realm-login-name.c'; then $(CYGPATH_W) 'service/realm-login-name.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-login-name.c'; fi` service/realmd-realm-network.o: service/realm-network.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-network.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-network.Tpo -c -o service/realmd-realm-network.o `test -f 'service/realm-network.c' || echo '$(srcdir)/'`service/realm-network.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-network.Tpo service/$(DEPDIR)/realmd-realm-network.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-network.c' object='service/realmd-realm-network.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-network.o `test -f 'service/realm-network.c' || echo '$(srcdir)/'`service/realm-network.c service/realmd-realm-network.obj: service/realm-network.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-network.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-network.Tpo -c -o service/realmd-realm-network.obj `if test -f 'service/realm-network.c'; then $(CYGPATH_W) 'service/realm-network.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-network.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-network.Tpo service/$(DEPDIR)/realmd-realm-network.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-network.c' object='service/realmd-realm-network.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-network.obj `if test -f 'service/realm-network.c'; then $(CYGPATH_W) 'service/realm-network.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-network.c'; fi` service/realmd-realm-options.o: service/realm-options.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-options.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-options.Tpo -c -o service/realmd-realm-options.o `test -f 'service/realm-options.c' || echo '$(srcdir)/'`service/realm-options.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-options.Tpo service/$(DEPDIR)/realmd-realm-options.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-options.c' object='service/realmd-realm-options.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-options.o `test -f 'service/realm-options.c' || echo '$(srcdir)/'`service/realm-options.c service/realmd-realm-options.obj: service/realm-options.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-options.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-options.Tpo -c -o service/realmd-realm-options.obj `if test -f 'service/realm-options.c'; then $(CYGPATH_W) 'service/realm-options.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-options.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-options.Tpo service/$(DEPDIR)/realmd-realm-options.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-options.c' object='service/realmd-realm-options.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-options.obj `if test -f 'service/realm-options.c'; then $(CYGPATH_W) 'service/realm-options.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-options.c'; fi` service/realmd-realm-packages.o: service/realm-packages.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-packages.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-packages.Tpo -c -o service/realmd-realm-packages.o `test -f 'service/realm-packages.c' || echo '$(srcdir)/'`service/realm-packages.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-packages.Tpo service/$(DEPDIR)/realmd-realm-packages.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-packages.c' object='service/realmd-realm-packages.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-packages.o `test -f 'service/realm-packages.c' || echo '$(srcdir)/'`service/realm-packages.c service/realmd-realm-packages.obj: service/realm-packages.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-packages.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-packages.Tpo -c -o service/realmd-realm-packages.obj `if test -f 'service/realm-packages.c'; then $(CYGPATH_W) 'service/realm-packages.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-packages.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-packages.Tpo service/$(DEPDIR)/realmd-realm-packages.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-packages.c' object='service/realmd-realm-packages.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-packages.obj `if test -f 'service/realm-packages.c'; then $(CYGPATH_W) 'service/realm-packages.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-packages.c'; fi` service/realmd-realm-provider.o: service/realm-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-provider.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-provider.Tpo -c -o service/realmd-realm-provider.o `test -f 'service/realm-provider.c' || echo '$(srcdir)/'`service/realm-provider.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-provider.Tpo service/$(DEPDIR)/realmd-realm-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-provider.c' object='service/realmd-realm-provider.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-provider.o `test -f 'service/realm-provider.c' || echo '$(srcdir)/'`service/realm-provider.c service/realmd-realm-provider.obj: service/realm-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-provider.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-provider.Tpo -c -o service/realmd-realm-provider.obj `if test -f 'service/realm-provider.c'; then $(CYGPATH_W) 'service/realm-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-provider.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-provider.Tpo service/$(DEPDIR)/realmd-realm-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-provider.c' object='service/realmd-realm-provider.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-provider.obj `if test -f 'service/realm-provider.c'; then $(CYGPATH_W) 'service/realm-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-provider.c'; fi` service/realmd-realm-samba.o: service/realm-samba.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-samba.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-samba.Tpo -c -o service/realmd-realm-samba.o `test -f 'service/realm-samba.c' || echo '$(srcdir)/'`service/realm-samba.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-samba.Tpo service/$(DEPDIR)/realmd-realm-samba.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba.c' object='service/realmd-realm-samba.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-samba.o `test -f 'service/realm-samba.c' || echo '$(srcdir)/'`service/realm-samba.c service/realmd-realm-samba.obj: service/realm-samba.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-samba.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-samba.Tpo -c -o service/realmd-realm-samba.obj `if test -f 'service/realm-samba.c'; then $(CYGPATH_W) 'service/realm-samba.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-samba.Tpo service/$(DEPDIR)/realmd-realm-samba.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba.c' object='service/realmd-realm-samba.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-samba.obj `if test -f 'service/realm-samba.c'; then $(CYGPATH_W) 'service/realm-samba.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba.c'; fi` service/realmd-realm-samba-config.o: service/realm-samba-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-samba-config.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-samba-config.Tpo -c -o service/realmd-realm-samba-config.o `test -f 'service/realm-samba-config.c' || echo '$(srcdir)/'`service/realm-samba-config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-samba-config.Tpo service/$(DEPDIR)/realmd-realm-samba-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba-config.c' object='service/realmd-realm-samba-config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-samba-config.o `test -f 'service/realm-samba-config.c' || echo '$(srcdir)/'`service/realm-samba-config.c service/realmd-realm-samba-config.obj: service/realm-samba-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-samba-config.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-samba-config.Tpo -c -o service/realmd-realm-samba-config.obj `if test -f 'service/realm-samba-config.c'; then $(CYGPATH_W) 'service/realm-samba-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba-config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-samba-config.Tpo service/$(DEPDIR)/realmd-realm-samba-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba-config.c' object='service/realmd-realm-samba-config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-samba-config.obj `if test -f 'service/realm-samba-config.c'; then $(CYGPATH_W) 'service/realm-samba-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba-config.c'; fi` service/realmd-realm-samba-enroll.o: service/realm-samba-enroll.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-samba-enroll.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-samba-enroll.Tpo -c -o service/realmd-realm-samba-enroll.o `test -f 'service/realm-samba-enroll.c' || echo '$(srcdir)/'`service/realm-samba-enroll.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-samba-enroll.Tpo service/$(DEPDIR)/realmd-realm-samba-enroll.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba-enroll.c' object='service/realmd-realm-samba-enroll.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-samba-enroll.o `test -f 'service/realm-samba-enroll.c' || echo '$(srcdir)/'`service/realm-samba-enroll.c service/realmd-realm-samba-enroll.obj: service/realm-samba-enroll.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-samba-enroll.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-samba-enroll.Tpo -c -o service/realmd-realm-samba-enroll.obj `if test -f 'service/realm-samba-enroll.c'; then $(CYGPATH_W) 'service/realm-samba-enroll.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba-enroll.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-samba-enroll.Tpo service/$(DEPDIR)/realmd-realm-samba-enroll.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba-enroll.c' object='service/realmd-realm-samba-enroll.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-samba-enroll.obj `if test -f 'service/realm-samba-enroll.c'; then $(CYGPATH_W) 'service/realm-samba-enroll.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba-enroll.c'; fi` service/realmd-realm-samba-provider.o: service/realm-samba-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-samba-provider.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-samba-provider.Tpo -c -o service/realmd-realm-samba-provider.o `test -f 'service/realm-samba-provider.c' || echo '$(srcdir)/'`service/realm-samba-provider.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-samba-provider.Tpo service/$(DEPDIR)/realmd-realm-samba-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba-provider.c' object='service/realmd-realm-samba-provider.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-samba-provider.o `test -f 'service/realm-samba-provider.c' || echo '$(srcdir)/'`service/realm-samba-provider.c service/realmd-realm-samba-provider.obj: service/realm-samba-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-samba-provider.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-samba-provider.Tpo -c -o service/realmd-realm-samba-provider.obj `if test -f 'service/realm-samba-provider.c'; then $(CYGPATH_W) 'service/realm-samba-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba-provider.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-samba-provider.Tpo service/$(DEPDIR)/realmd-realm-samba-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba-provider.c' object='service/realmd-realm-samba-provider.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-samba-provider.obj `if test -f 'service/realm-samba-provider.c'; then $(CYGPATH_W) 'service/realm-samba-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba-provider.c'; fi` service/realmd-realm-samba-winbind.o: service/realm-samba-winbind.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-samba-winbind.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-samba-winbind.Tpo -c -o service/realmd-realm-samba-winbind.o `test -f 'service/realm-samba-winbind.c' || echo '$(srcdir)/'`service/realm-samba-winbind.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-samba-winbind.Tpo service/$(DEPDIR)/realmd-realm-samba-winbind.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba-winbind.c' object='service/realmd-realm-samba-winbind.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-samba-winbind.o `test -f 'service/realm-samba-winbind.c' || echo '$(srcdir)/'`service/realm-samba-winbind.c service/realmd-realm-samba-winbind.obj: service/realm-samba-winbind.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-samba-winbind.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-samba-winbind.Tpo -c -o service/realmd-realm-samba-winbind.obj `if test -f 'service/realm-samba-winbind.c'; then $(CYGPATH_W) 'service/realm-samba-winbind.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba-winbind.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-samba-winbind.Tpo service/$(DEPDIR)/realmd-realm-samba-winbind.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba-winbind.c' object='service/realmd-realm-samba-winbind.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-samba-winbind.obj `if test -f 'service/realm-samba-winbind.c'; then $(CYGPATH_W) 'service/realm-samba-winbind.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba-winbind.c'; fi` service/realmd-realm-service.o: service/realm-service.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-service.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-service.Tpo -c -o service/realmd-realm-service.o `test -f 'service/realm-service.c' || echo '$(srcdir)/'`service/realm-service.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-service.Tpo service/$(DEPDIR)/realmd-realm-service.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-service.c' object='service/realmd-realm-service.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-service.o `test -f 'service/realm-service.c' || echo '$(srcdir)/'`service/realm-service.c service/realmd-realm-service.obj: service/realm-service.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-service.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-service.Tpo -c -o service/realmd-realm-service.obj `if test -f 'service/realm-service.c'; then $(CYGPATH_W) 'service/realm-service.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-service.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-service.Tpo service/$(DEPDIR)/realmd-realm-service.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-service.c' object='service/realmd-realm-service.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-service.obj `if test -f 'service/realm-service.c'; then $(CYGPATH_W) 'service/realm-service.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-service.c'; fi` service/realmd-realm-settings.o: service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-settings.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-settings.Tpo -c -o service/realmd-realm-settings.o `test -f 'service/realm-settings.c' || echo '$(srcdir)/'`service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-settings.Tpo service/$(DEPDIR)/realmd-realm-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-settings.c' object='service/realmd-realm-settings.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-settings.o `test -f 'service/realm-settings.c' || echo '$(srcdir)/'`service/realm-settings.c service/realmd-realm-settings.obj: service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-settings.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-settings.Tpo -c -o service/realmd-realm-settings.obj `if test -f 'service/realm-settings.c'; then $(CYGPATH_W) 'service/realm-settings.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-settings.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-settings.Tpo service/$(DEPDIR)/realmd-realm-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-settings.c' object='service/realmd-realm-settings.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-settings.obj `if test -f 'service/realm-settings.c'; then $(CYGPATH_W) 'service/realm-settings.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-settings.c'; fi` service/realmd-realm-sssd.o: service/realm-sssd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-sssd.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-sssd.Tpo -c -o service/realmd-realm-sssd.o `test -f 'service/realm-sssd.c' || echo '$(srcdir)/'`service/realm-sssd.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-sssd.Tpo service/$(DEPDIR)/realmd-realm-sssd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd.c' object='service/realmd-realm-sssd.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-sssd.o `test -f 'service/realm-sssd.c' || echo '$(srcdir)/'`service/realm-sssd.c service/realmd-realm-sssd.obj: service/realm-sssd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-sssd.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-sssd.Tpo -c -o service/realmd-realm-sssd.obj `if test -f 'service/realm-sssd.c'; then $(CYGPATH_W) 'service/realm-sssd.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-sssd.Tpo service/$(DEPDIR)/realmd-realm-sssd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd.c' object='service/realmd-realm-sssd.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-sssd.obj `if test -f 'service/realm-sssd.c'; then $(CYGPATH_W) 'service/realm-sssd.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd.c'; fi` service/realmd-realm-sssd-ad.o: service/realm-sssd-ad.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-sssd-ad.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-sssd-ad.Tpo -c -o service/realmd-realm-sssd-ad.o `test -f 'service/realm-sssd-ad.c' || echo '$(srcdir)/'`service/realm-sssd-ad.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-sssd-ad.Tpo service/$(DEPDIR)/realmd-realm-sssd-ad.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd-ad.c' object='service/realmd-realm-sssd-ad.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-sssd-ad.o `test -f 'service/realm-sssd-ad.c' || echo '$(srcdir)/'`service/realm-sssd-ad.c service/realmd-realm-sssd-ad.obj: service/realm-sssd-ad.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-sssd-ad.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-sssd-ad.Tpo -c -o service/realmd-realm-sssd-ad.obj `if test -f 'service/realm-sssd-ad.c'; then $(CYGPATH_W) 'service/realm-sssd-ad.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd-ad.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-sssd-ad.Tpo service/$(DEPDIR)/realmd-realm-sssd-ad.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd-ad.c' object='service/realmd-realm-sssd-ad.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-sssd-ad.obj `if test -f 'service/realm-sssd-ad.c'; then $(CYGPATH_W) 'service/realm-sssd-ad.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd-ad.c'; fi` service/realmd-realm-sssd-provider.o: service/realm-sssd-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-sssd-provider.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-sssd-provider.Tpo -c -o service/realmd-realm-sssd-provider.o `test -f 'service/realm-sssd-provider.c' || echo '$(srcdir)/'`service/realm-sssd-provider.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-sssd-provider.Tpo service/$(DEPDIR)/realmd-realm-sssd-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd-provider.c' object='service/realmd-realm-sssd-provider.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-sssd-provider.o `test -f 'service/realm-sssd-provider.c' || echo '$(srcdir)/'`service/realm-sssd-provider.c service/realmd-realm-sssd-provider.obj: service/realm-sssd-provider.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-sssd-provider.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-sssd-provider.Tpo -c -o service/realmd-realm-sssd-provider.obj `if test -f 'service/realm-sssd-provider.c'; then $(CYGPATH_W) 'service/realm-sssd-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd-provider.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-sssd-provider.Tpo service/$(DEPDIR)/realmd-realm-sssd-provider.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd-provider.c' object='service/realmd-realm-sssd-provider.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-sssd-provider.obj `if test -f 'service/realm-sssd-provider.c'; then $(CYGPATH_W) 'service/realm-sssd-provider.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd-provider.c'; fi` service/realmd-realm-sssd-config.o: service/realm-sssd-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-sssd-config.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-sssd-config.Tpo -c -o service/realmd-realm-sssd-config.o `test -f 'service/realm-sssd-config.c' || echo '$(srcdir)/'`service/realm-sssd-config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-sssd-config.Tpo service/$(DEPDIR)/realmd-realm-sssd-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd-config.c' object='service/realmd-realm-sssd-config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-sssd-config.o `test -f 'service/realm-sssd-config.c' || echo '$(srcdir)/'`service/realm-sssd-config.c service/realmd-realm-sssd-config.obj: service/realm-sssd-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-sssd-config.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-sssd-config.Tpo -c -o service/realmd-realm-sssd-config.obj `if test -f 'service/realm-sssd-config.c'; then $(CYGPATH_W) 'service/realm-sssd-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd-config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-sssd-config.Tpo service/$(DEPDIR)/realmd-realm-sssd-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd-config.c' object='service/realmd-realm-sssd-config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-sssd-config.obj `if test -f 'service/realm-sssd-config.c'; then $(CYGPATH_W) 'service/realm-sssd-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd-config.c'; fi` service/realmd-realm-sssd-ipa.o: service/realm-sssd-ipa.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-sssd-ipa.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-sssd-ipa.Tpo -c -o service/realmd-realm-sssd-ipa.o `test -f 'service/realm-sssd-ipa.c' || echo '$(srcdir)/'`service/realm-sssd-ipa.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-sssd-ipa.Tpo service/$(DEPDIR)/realmd-realm-sssd-ipa.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd-ipa.c' object='service/realmd-realm-sssd-ipa.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-sssd-ipa.o `test -f 'service/realm-sssd-ipa.c' || echo '$(srcdir)/'`service/realm-sssd-ipa.c service/realmd-realm-sssd-ipa.obj: service/realm-sssd-ipa.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-sssd-ipa.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-sssd-ipa.Tpo -c -o service/realmd-realm-sssd-ipa.obj `if test -f 'service/realm-sssd-ipa.c'; then $(CYGPATH_W) 'service/realm-sssd-ipa.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd-ipa.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-sssd-ipa.Tpo service/$(DEPDIR)/realmd-realm-sssd-ipa.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd-ipa.c' object='service/realmd-realm-sssd-ipa.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-sssd-ipa.obj `if test -f 'service/realm-sssd-ipa.c'; then $(CYGPATH_W) 'service/realm-sssd-ipa.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd-ipa.c'; fi` service/realmd-realm-usleep-async.o: service/realm-usleep-async.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-usleep-async.o -MD -MP -MF service/$(DEPDIR)/realmd-realm-usleep-async.Tpo -c -o service/realmd-realm-usleep-async.o `test -f 'service/realm-usleep-async.c' || echo '$(srcdir)/'`service/realm-usleep-async.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-usleep-async.Tpo service/$(DEPDIR)/realmd-realm-usleep-async.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-usleep-async.c' object='service/realmd-realm-usleep-async.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-usleep-async.o `test -f 'service/realm-usleep-async.c' || echo '$(srcdir)/'`service/realm-usleep-async.c service/realmd-realm-usleep-async.obj: service/realm-usleep-async.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-realm-usleep-async.obj -MD -MP -MF service/$(DEPDIR)/realmd-realm-usleep-async.Tpo -c -o service/realmd-realm-usleep-async.obj `if test -f 'service/realm-usleep-async.c'; then $(CYGPATH_W) 'service/realm-usleep-async.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-usleep-async.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-realm-usleep-async.Tpo service/$(DEPDIR)/realmd-realm-usleep-async.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-usleep-async.c' object='service/realmd-realm-usleep-async.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-realm-usleep-async.obj `if test -f 'service/realm-usleep-async.c'; then $(CYGPATH_W) 'service/realm-usleep-async.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-usleep-async.c'; fi` service/realmd-safe-format-string.o: service/safe-format-string.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-safe-format-string.o -MD -MP -MF service/$(DEPDIR)/realmd-safe-format-string.Tpo -c -o service/realmd-safe-format-string.o `test -f 'service/safe-format-string.c' || echo '$(srcdir)/'`service/safe-format-string.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-safe-format-string.Tpo service/$(DEPDIR)/realmd-safe-format-string.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/safe-format-string.c' object='service/realmd-safe-format-string.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-safe-format-string.o `test -f 'service/safe-format-string.c' || echo '$(srcdir)/'`service/safe-format-string.c service/realmd-safe-format-string.obj: service/safe-format-string.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -MT service/realmd-safe-format-string.obj -MD -MP -MF service/$(DEPDIR)/realmd-safe-format-string.Tpo -c -o service/realmd-safe-format-string.obj `if test -f 'service/safe-format-string.c'; then $(CYGPATH_W) 'service/safe-format-string.c'; else $(CYGPATH_W) '$(srcdir)/service/safe-format-string.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/realmd-safe-format-string.Tpo service/$(DEPDIR)/realmd-safe-format-string.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/safe-format-string.c' object='service/realmd-safe-format-string.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(realmd_CFLAGS) $(CFLAGS) -c -o service/realmd-safe-format-string.obj `if test -f 'service/safe-format-string.c'; then $(CYGPATH_W) 'service/safe-format-string.c'; else $(CYGPATH_W) '$(srcdir)/service/safe-format-string.c'; fi` tests/test_dn_util-test-dn-util.o: tests/test-dn-util.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_dn_util_CFLAGS) $(CFLAGS) -MT tests/test_dn_util-test-dn-util.o -MD -MP -MF tests/$(DEPDIR)/test_dn_util-test-dn-util.Tpo -c -o tests/test_dn_util-test-dn-util.o `test -f 'tests/test-dn-util.c' || echo '$(srcdir)/'`tests/test-dn-util.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_dn_util-test-dn-util.Tpo tests/$(DEPDIR)/test_dn_util-test-dn-util.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-dn-util.c' object='tests/test_dn_util-test-dn-util.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_dn_util_CFLAGS) $(CFLAGS) -c -o tests/test_dn_util-test-dn-util.o `test -f 'tests/test-dn-util.c' || echo '$(srcdir)/'`tests/test-dn-util.c tests/test_dn_util-test-dn-util.obj: tests/test-dn-util.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_dn_util_CFLAGS) $(CFLAGS) -MT tests/test_dn_util-test-dn-util.obj -MD -MP -MF tests/$(DEPDIR)/test_dn_util-test-dn-util.Tpo -c -o tests/test_dn_util-test-dn-util.obj `if test -f 'tests/test-dn-util.c'; then $(CYGPATH_W) 'tests/test-dn-util.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-dn-util.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_dn_util-test-dn-util.Tpo tests/$(DEPDIR)/test_dn_util-test-dn-util.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-dn-util.c' object='tests/test_dn_util-test-dn-util.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_dn_util_CFLAGS) $(CFLAGS) -c -o tests/test_dn_util-test-dn-util.obj `if test -f 'tests/test-dn-util.c'; then $(CYGPATH_W) 'tests/test-dn-util.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-dn-util.c'; fi` service/test_dn_util-realm-dn-util.o: service/realm-dn-util.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_dn_util_CFLAGS) $(CFLAGS) -MT service/test_dn_util-realm-dn-util.o -MD -MP -MF service/$(DEPDIR)/test_dn_util-realm-dn-util.Tpo -c -o service/test_dn_util-realm-dn-util.o `test -f 'service/realm-dn-util.c' || echo '$(srcdir)/'`service/realm-dn-util.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_dn_util-realm-dn-util.Tpo service/$(DEPDIR)/test_dn_util-realm-dn-util.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-dn-util.c' object='service/test_dn_util-realm-dn-util.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_dn_util_CFLAGS) $(CFLAGS) -c -o service/test_dn_util-realm-dn-util.o `test -f 'service/realm-dn-util.c' || echo '$(srcdir)/'`service/realm-dn-util.c service/test_dn_util-realm-dn-util.obj: service/realm-dn-util.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_dn_util_CFLAGS) $(CFLAGS) -MT service/test_dn_util-realm-dn-util.obj -MD -MP -MF service/$(DEPDIR)/test_dn_util-realm-dn-util.Tpo -c -o service/test_dn_util-realm-dn-util.obj `if test -f 'service/realm-dn-util.c'; then $(CYGPATH_W) 'service/realm-dn-util.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-dn-util.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_dn_util-realm-dn-util.Tpo service/$(DEPDIR)/test_dn_util-realm-dn-util.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-dn-util.c' object='service/test_dn_util-realm-dn-util.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_dn_util_CFLAGS) $(CFLAGS) -c -o service/test_dn_util-realm-dn-util.obj `if test -f 'service/realm-dn-util.c'; then $(CYGPATH_W) 'service/realm-dn-util.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-dn-util.c'; fi` tests/test_ini_config-test-ini-config.o: tests/test-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -MT tests/test_ini_config-test-ini-config.o -MD -MP -MF tests/$(DEPDIR)/test_ini_config-test-ini-config.Tpo -c -o tests/test_ini_config-test-ini-config.o `test -f 'tests/test-ini-config.c' || echo '$(srcdir)/'`tests/test-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_ini_config-test-ini-config.Tpo tests/$(DEPDIR)/test_ini_config-test-ini-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-ini-config.c' object='tests/test_ini_config-test-ini-config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -c -o tests/test_ini_config-test-ini-config.o `test -f 'tests/test-ini-config.c' || echo '$(srcdir)/'`tests/test-ini-config.c tests/test_ini_config-test-ini-config.obj: tests/test-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -MT tests/test_ini_config-test-ini-config.obj -MD -MP -MF tests/$(DEPDIR)/test_ini_config-test-ini-config.Tpo -c -o tests/test_ini_config-test-ini-config.obj `if test -f 'tests/test-ini-config.c'; then $(CYGPATH_W) 'tests/test-ini-config.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-ini-config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_ini_config-test-ini-config.Tpo tests/$(DEPDIR)/test_ini_config-test-ini-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-ini-config.c' object='tests/test_ini_config-test-ini-config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -c -o tests/test_ini_config-test-ini-config.obj `if test -f 'tests/test-ini-config.c'; then $(CYGPATH_W) 'tests/test-ini-config.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-ini-config.c'; fi` service/test_ini_config-realm-ini-config.o: service/realm-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -MT service/test_ini_config-realm-ini-config.o -MD -MP -MF service/$(DEPDIR)/test_ini_config-realm-ini-config.Tpo -c -o service/test_ini_config-realm-ini-config.o `test -f 'service/realm-ini-config.c' || echo '$(srcdir)/'`service/realm-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_ini_config-realm-ini-config.Tpo service/$(DEPDIR)/test_ini_config-realm-ini-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-ini-config.c' object='service/test_ini_config-realm-ini-config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -c -o service/test_ini_config-realm-ini-config.o `test -f 'service/realm-ini-config.c' || echo '$(srcdir)/'`service/realm-ini-config.c service/test_ini_config-realm-ini-config.obj: service/realm-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -MT service/test_ini_config-realm-ini-config.obj -MD -MP -MF service/$(DEPDIR)/test_ini_config-realm-ini-config.Tpo -c -o service/test_ini_config-realm-ini-config.obj `if test -f 'service/realm-ini-config.c'; then $(CYGPATH_W) 'service/realm-ini-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-ini-config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_ini_config-realm-ini-config.Tpo service/$(DEPDIR)/test_ini_config-realm-ini-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-ini-config.c' object='service/test_ini_config-realm-ini-config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -c -o service/test_ini_config-realm-ini-config.obj `if test -f 'service/realm-ini-config.c'; then $(CYGPATH_W) 'service/realm-ini-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-ini-config.c'; fi` service/test_ini_config-realm-samba-config.o: service/realm-samba-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -MT service/test_ini_config-realm-samba-config.o -MD -MP -MF service/$(DEPDIR)/test_ini_config-realm-samba-config.Tpo -c -o service/test_ini_config-realm-samba-config.o `test -f 'service/realm-samba-config.c' || echo '$(srcdir)/'`service/realm-samba-config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_ini_config-realm-samba-config.Tpo service/$(DEPDIR)/test_ini_config-realm-samba-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba-config.c' object='service/test_ini_config-realm-samba-config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -c -o service/test_ini_config-realm-samba-config.o `test -f 'service/realm-samba-config.c' || echo '$(srcdir)/'`service/realm-samba-config.c service/test_ini_config-realm-samba-config.obj: service/realm-samba-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -MT service/test_ini_config-realm-samba-config.obj -MD -MP -MF service/$(DEPDIR)/test_ini_config-realm-samba-config.Tpo -c -o service/test_ini_config-realm-samba-config.obj `if test -f 'service/realm-samba-config.c'; then $(CYGPATH_W) 'service/realm-samba-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba-config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_ini_config-realm-samba-config.Tpo service/$(DEPDIR)/test_ini_config-realm-samba-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-samba-config.c' object='service/test_ini_config-realm-samba-config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -c -o service/test_ini_config-realm-samba-config.obj `if test -f 'service/realm-samba-config.c'; then $(CYGPATH_W) 'service/realm-samba-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-samba-config.c'; fi` service/test_ini_config-realm-settings.o: service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -MT service/test_ini_config-realm-settings.o -MD -MP -MF service/$(DEPDIR)/test_ini_config-realm-settings.Tpo -c -o service/test_ini_config-realm-settings.o `test -f 'service/realm-settings.c' || echo '$(srcdir)/'`service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_ini_config-realm-settings.Tpo service/$(DEPDIR)/test_ini_config-realm-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-settings.c' object='service/test_ini_config-realm-settings.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -c -o service/test_ini_config-realm-settings.o `test -f 'service/realm-settings.c' || echo '$(srcdir)/'`service/realm-settings.c service/test_ini_config-realm-settings.obj: service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -MT service/test_ini_config-realm-settings.obj -MD -MP -MF service/$(DEPDIR)/test_ini_config-realm-settings.Tpo -c -o service/test_ini_config-realm-settings.obj `if test -f 'service/realm-settings.c'; then $(CYGPATH_W) 'service/realm-settings.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-settings.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_ini_config-realm-settings.Tpo service/$(DEPDIR)/test_ini_config-realm-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-settings.c' object='service/test_ini_config-realm-settings.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_ini_config_CFLAGS) $(CFLAGS) -c -o service/test_ini_config-realm-settings.obj `if test -f 'service/realm-settings.c'; then $(CYGPATH_W) 'service/realm-settings.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-settings.c'; fi` tests/test_login_name-test-login-name.o: tests/test-login-name.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_login_name_CFLAGS) $(CFLAGS) -MT tests/test_login_name-test-login-name.o -MD -MP -MF tests/$(DEPDIR)/test_login_name-test-login-name.Tpo -c -o tests/test_login_name-test-login-name.o `test -f 'tests/test-login-name.c' || echo '$(srcdir)/'`tests/test-login-name.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_login_name-test-login-name.Tpo tests/$(DEPDIR)/test_login_name-test-login-name.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-login-name.c' object='tests/test_login_name-test-login-name.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_login_name_CFLAGS) $(CFLAGS) -c -o tests/test_login_name-test-login-name.o `test -f 'tests/test-login-name.c' || echo '$(srcdir)/'`tests/test-login-name.c tests/test_login_name-test-login-name.obj: tests/test-login-name.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_login_name_CFLAGS) $(CFLAGS) -MT tests/test_login_name-test-login-name.obj -MD -MP -MF tests/$(DEPDIR)/test_login_name-test-login-name.Tpo -c -o tests/test_login_name-test-login-name.obj `if test -f 'tests/test-login-name.c'; then $(CYGPATH_W) 'tests/test-login-name.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-login-name.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_login_name-test-login-name.Tpo tests/$(DEPDIR)/test_login_name-test-login-name.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-login-name.c' object='tests/test_login_name-test-login-name.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_login_name_CFLAGS) $(CFLAGS) -c -o tests/test_login_name-test-login-name.obj `if test -f 'tests/test-login-name.c'; then $(CYGPATH_W) 'tests/test-login-name.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-login-name.c'; fi` service/test_login_name-realm-login-name.o: service/realm-login-name.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_login_name_CFLAGS) $(CFLAGS) -MT service/test_login_name-realm-login-name.o -MD -MP -MF service/$(DEPDIR)/test_login_name-realm-login-name.Tpo -c -o service/test_login_name-realm-login-name.o `test -f 'service/realm-login-name.c' || echo '$(srcdir)/'`service/realm-login-name.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_login_name-realm-login-name.Tpo service/$(DEPDIR)/test_login_name-realm-login-name.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-login-name.c' object='service/test_login_name-realm-login-name.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_login_name_CFLAGS) $(CFLAGS) -c -o service/test_login_name-realm-login-name.o `test -f 'service/realm-login-name.c' || echo '$(srcdir)/'`service/realm-login-name.c service/test_login_name-realm-login-name.obj: service/realm-login-name.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_login_name_CFLAGS) $(CFLAGS) -MT service/test_login_name-realm-login-name.obj -MD -MP -MF service/$(DEPDIR)/test_login_name-realm-login-name.Tpo -c -o service/test_login_name-realm-login-name.obj `if test -f 'service/realm-login-name.c'; then $(CYGPATH_W) 'service/realm-login-name.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-login-name.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_login_name-realm-login-name.Tpo service/$(DEPDIR)/test_login_name-realm-login-name.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-login-name.c' object='service/test_login_name-realm-login-name.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_login_name_CFLAGS) $(CFLAGS) -c -o service/test_login_name-realm-login-name.obj `if test -f 'service/realm-login-name.c'; then $(CYGPATH_W) 'service/realm-login-name.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-login-name.c'; fi` tests/test_safe_format-test-safe-format.o: tests/test-safe-format.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_safe_format_CFLAGS) $(CFLAGS) -MT tests/test_safe_format-test-safe-format.o -MD -MP -MF tests/$(DEPDIR)/test_safe_format-test-safe-format.Tpo -c -o tests/test_safe_format-test-safe-format.o `test -f 'tests/test-safe-format.c' || echo '$(srcdir)/'`tests/test-safe-format.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_safe_format-test-safe-format.Tpo tests/$(DEPDIR)/test_safe_format-test-safe-format.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-safe-format.c' object='tests/test_safe_format-test-safe-format.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_safe_format_CFLAGS) $(CFLAGS) -c -o tests/test_safe_format-test-safe-format.o `test -f 'tests/test-safe-format.c' || echo '$(srcdir)/'`tests/test-safe-format.c tests/test_safe_format-test-safe-format.obj: tests/test-safe-format.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_safe_format_CFLAGS) $(CFLAGS) -MT tests/test_safe_format-test-safe-format.obj -MD -MP -MF tests/$(DEPDIR)/test_safe_format-test-safe-format.Tpo -c -o tests/test_safe_format-test-safe-format.obj `if test -f 'tests/test-safe-format.c'; then $(CYGPATH_W) 'tests/test-safe-format.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-safe-format.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_safe_format-test-safe-format.Tpo tests/$(DEPDIR)/test_safe_format-test-safe-format.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-safe-format.c' object='tests/test_safe_format-test-safe-format.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_safe_format_CFLAGS) $(CFLAGS) -c -o tests/test_safe_format-test-safe-format.obj `if test -f 'tests/test-safe-format.c'; then $(CYGPATH_W) 'tests/test-safe-format.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-safe-format.c'; fi` service/test_safe_format-safe-format-string.o: service/safe-format-string.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_safe_format_CFLAGS) $(CFLAGS) -MT service/test_safe_format-safe-format-string.o -MD -MP -MF service/$(DEPDIR)/test_safe_format-safe-format-string.Tpo -c -o service/test_safe_format-safe-format-string.o `test -f 'service/safe-format-string.c' || echo '$(srcdir)/'`service/safe-format-string.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_safe_format-safe-format-string.Tpo service/$(DEPDIR)/test_safe_format-safe-format-string.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/safe-format-string.c' object='service/test_safe_format-safe-format-string.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_safe_format_CFLAGS) $(CFLAGS) -c -o service/test_safe_format-safe-format-string.o `test -f 'service/safe-format-string.c' || echo '$(srcdir)/'`service/safe-format-string.c service/test_safe_format-safe-format-string.obj: service/safe-format-string.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_safe_format_CFLAGS) $(CFLAGS) -MT service/test_safe_format-safe-format-string.obj -MD -MP -MF service/$(DEPDIR)/test_safe_format-safe-format-string.Tpo -c -o service/test_safe_format-safe-format-string.obj `if test -f 'service/safe-format-string.c'; then $(CYGPATH_W) 'service/safe-format-string.c'; else $(CYGPATH_W) '$(srcdir)/service/safe-format-string.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_safe_format-safe-format-string.Tpo service/$(DEPDIR)/test_safe_format-safe-format-string.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/safe-format-string.c' object='service/test_safe_format-safe-format-string.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_safe_format_CFLAGS) $(CFLAGS) -c -o service/test_safe_format-safe-format-string.obj `if test -f 'service/safe-format-string.c'; then $(CYGPATH_W) 'service/safe-format-string.c'; else $(CYGPATH_W) '$(srcdir)/service/safe-format-string.c'; fi` tests/test_settings-test-settings.o: tests/test-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_settings_CFLAGS) $(CFLAGS) -MT tests/test_settings-test-settings.o -MD -MP -MF tests/$(DEPDIR)/test_settings-test-settings.Tpo -c -o tests/test_settings-test-settings.o `test -f 'tests/test-settings.c' || echo '$(srcdir)/'`tests/test-settings.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_settings-test-settings.Tpo tests/$(DEPDIR)/test_settings-test-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-settings.c' object='tests/test_settings-test-settings.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_settings_CFLAGS) $(CFLAGS) -c -o tests/test_settings-test-settings.o `test -f 'tests/test-settings.c' || echo '$(srcdir)/'`tests/test-settings.c tests/test_settings-test-settings.obj: tests/test-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_settings_CFLAGS) $(CFLAGS) -MT tests/test_settings-test-settings.obj -MD -MP -MF tests/$(DEPDIR)/test_settings-test-settings.Tpo -c -o tests/test_settings-test-settings.obj `if test -f 'tests/test-settings.c'; then $(CYGPATH_W) 'tests/test-settings.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-settings.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_settings-test-settings.Tpo tests/$(DEPDIR)/test_settings-test-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-settings.c' object='tests/test_settings-test-settings.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_settings_CFLAGS) $(CFLAGS) -c -o tests/test_settings-test-settings.obj `if test -f 'tests/test-settings.c'; then $(CYGPATH_W) 'tests/test-settings.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-settings.c'; fi` service/test_settings-realm-settings.o: service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_settings_CFLAGS) $(CFLAGS) -MT service/test_settings-realm-settings.o -MD -MP -MF service/$(DEPDIR)/test_settings-realm-settings.Tpo -c -o service/test_settings-realm-settings.o `test -f 'service/realm-settings.c' || echo '$(srcdir)/'`service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_settings-realm-settings.Tpo service/$(DEPDIR)/test_settings-realm-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-settings.c' object='service/test_settings-realm-settings.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_settings_CFLAGS) $(CFLAGS) -c -o service/test_settings-realm-settings.o `test -f 'service/realm-settings.c' || echo '$(srcdir)/'`service/realm-settings.c service/test_settings-realm-settings.obj: service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_settings_CFLAGS) $(CFLAGS) -MT service/test_settings-realm-settings.obj -MD -MP -MF service/$(DEPDIR)/test_settings-realm-settings.Tpo -c -o service/test_settings-realm-settings.obj `if test -f 'service/realm-settings.c'; then $(CYGPATH_W) 'service/realm-settings.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-settings.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_settings-realm-settings.Tpo service/$(DEPDIR)/test_settings-realm-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-settings.c' object='service/test_settings-realm-settings.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_settings_CFLAGS) $(CFLAGS) -c -o service/test_settings-realm-settings.obj `if test -f 'service/realm-settings.c'; then $(CYGPATH_W) 'service/realm-settings.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-settings.c'; fi` tests/test_sssd_config-test-sssd-config.o: tests/test-sssd-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -MT tests/test_sssd_config-test-sssd-config.o -MD -MP -MF tests/$(DEPDIR)/test_sssd_config-test-sssd-config.Tpo -c -o tests/test_sssd_config-test-sssd-config.o `test -f 'tests/test-sssd-config.c' || echo '$(srcdir)/'`tests/test-sssd-config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_sssd_config-test-sssd-config.Tpo tests/$(DEPDIR)/test_sssd_config-test-sssd-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-sssd-config.c' object='tests/test_sssd_config-test-sssd-config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -c -o tests/test_sssd_config-test-sssd-config.o `test -f 'tests/test-sssd-config.c' || echo '$(srcdir)/'`tests/test-sssd-config.c tests/test_sssd_config-test-sssd-config.obj: tests/test-sssd-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -MT tests/test_sssd_config-test-sssd-config.obj -MD -MP -MF tests/$(DEPDIR)/test_sssd_config-test-sssd-config.Tpo -c -o tests/test_sssd_config-test-sssd-config.obj `if test -f 'tests/test-sssd-config.c'; then $(CYGPATH_W) 'tests/test-sssd-config.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-sssd-config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/test_sssd_config-test-sssd-config.Tpo tests/$(DEPDIR)/test_sssd_config-test-sssd-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/test-sssd-config.c' object='tests/test_sssd_config-test-sssd-config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -c -o tests/test_sssd_config-test-sssd-config.obj `if test -f 'tests/test-sssd-config.c'; then $(CYGPATH_W) 'tests/test-sssd-config.c'; else $(CYGPATH_W) '$(srcdir)/tests/test-sssd-config.c'; fi` service/test_sssd_config-realm-ini-config.o: service/realm-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -MT service/test_sssd_config-realm-ini-config.o -MD -MP -MF service/$(DEPDIR)/test_sssd_config-realm-ini-config.Tpo -c -o service/test_sssd_config-realm-ini-config.o `test -f 'service/realm-ini-config.c' || echo '$(srcdir)/'`service/realm-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_sssd_config-realm-ini-config.Tpo service/$(DEPDIR)/test_sssd_config-realm-ini-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-ini-config.c' object='service/test_sssd_config-realm-ini-config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -c -o service/test_sssd_config-realm-ini-config.o `test -f 'service/realm-ini-config.c' || echo '$(srcdir)/'`service/realm-ini-config.c service/test_sssd_config-realm-ini-config.obj: service/realm-ini-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -MT service/test_sssd_config-realm-ini-config.obj -MD -MP -MF service/$(DEPDIR)/test_sssd_config-realm-ini-config.Tpo -c -o service/test_sssd_config-realm-ini-config.obj `if test -f 'service/realm-ini-config.c'; then $(CYGPATH_W) 'service/realm-ini-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-ini-config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_sssd_config-realm-ini-config.Tpo service/$(DEPDIR)/test_sssd_config-realm-ini-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-ini-config.c' object='service/test_sssd_config-realm-ini-config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -c -o service/test_sssd_config-realm-ini-config.obj `if test -f 'service/realm-ini-config.c'; then $(CYGPATH_W) 'service/realm-ini-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-ini-config.c'; fi` service/test_sssd_config-realm-sssd-config.o: service/realm-sssd-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -MT service/test_sssd_config-realm-sssd-config.o -MD -MP -MF service/$(DEPDIR)/test_sssd_config-realm-sssd-config.Tpo -c -o service/test_sssd_config-realm-sssd-config.o `test -f 'service/realm-sssd-config.c' || echo '$(srcdir)/'`service/realm-sssd-config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_sssd_config-realm-sssd-config.Tpo service/$(DEPDIR)/test_sssd_config-realm-sssd-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd-config.c' object='service/test_sssd_config-realm-sssd-config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -c -o service/test_sssd_config-realm-sssd-config.o `test -f 'service/realm-sssd-config.c' || echo '$(srcdir)/'`service/realm-sssd-config.c service/test_sssd_config-realm-sssd-config.obj: service/realm-sssd-config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -MT service/test_sssd_config-realm-sssd-config.obj -MD -MP -MF service/$(DEPDIR)/test_sssd_config-realm-sssd-config.Tpo -c -o service/test_sssd_config-realm-sssd-config.obj `if test -f 'service/realm-sssd-config.c'; then $(CYGPATH_W) 'service/realm-sssd-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd-config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_sssd_config-realm-sssd-config.Tpo service/$(DEPDIR)/test_sssd_config-realm-sssd-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-sssd-config.c' object='service/test_sssd_config-realm-sssd-config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -c -o service/test_sssd_config-realm-sssd-config.obj `if test -f 'service/realm-sssd-config.c'; then $(CYGPATH_W) 'service/realm-sssd-config.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-sssd-config.c'; fi` service/test_sssd_config-realm-settings.o: service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -MT service/test_sssd_config-realm-settings.o -MD -MP -MF service/$(DEPDIR)/test_sssd_config-realm-settings.Tpo -c -o service/test_sssd_config-realm-settings.o `test -f 'service/realm-settings.c' || echo '$(srcdir)/'`service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_sssd_config-realm-settings.Tpo service/$(DEPDIR)/test_sssd_config-realm-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-settings.c' object='service/test_sssd_config-realm-settings.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -c -o service/test_sssd_config-realm-settings.o `test -f 'service/realm-settings.c' || echo '$(srcdir)/'`service/realm-settings.c service/test_sssd_config-realm-settings.obj: service/realm-settings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -MT service/test_sssd_config-realm-settings.obj -MD -MP -MF service/$(DEPDIR)/test_sssd_config-realm-settings.Tpo -c -o service/test_sssd_config-realm-settings.obj `if test -f 'service/realm-settings.c'; then $(CYGPATH_W) 'service/realm-settings.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-settings.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) service/$(DEPDIR)/test_sssd_config-realm-settings.Tpo service/$(DEPDIR)/test_sssd_config-realm-settings.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='service/realm-settings.c' object='service/test_sssd_config-realm-settings.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sssd_config_CFLAGS) $(CFLAGS) -c -o service/test_sssd_config-realm-settings.obj `if test -f 'service/realm-settings.c'; then $(CYGPATH_W) 'service/realm-settings.c'; else $(CYGPATH_W) '$(srcdir)/service/realm-settings.c'; fi` install-man5: $(man5_MANS) @$(NORMAL_INSTALL) @list1='$(man5_MANS)'; \ list2=''; \ test -n "$(man5dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man5dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man5dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.5[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man5dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \ done; } uninstall-man5: @$(NORMAL_UNINSTALL) @list='$(man5_MANS)'; test -n "$(man5dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man5dir)'; $(am__uninstall_files_from_dir) install-man8: $(man8_MANS) @$(NORMAL_INSTALL) @list1='$(man8_MANS)'; \ list2=''; \ test -n "$(man8dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man8dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man8dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.8[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man8dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man8dir)" || exit $$?; }; \ done; } uninstall-man8: @$(NORMAL_UNINSTALL) @list='$(man8_MANS)'; test -n "$(man8dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man8dir)'; $(am__uninstall_files_from_dir) install-dbusserviceDATA: $(dbusservice_DATA) @$(NORMAL_INSTALL) @list='$(dbusservice_DATA)'; test -n "$(dbusservicedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(dbusservicedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(dbusservicedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dbusservicedir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(dbusservicedir)" || exit $$?; \ done uninstall-dbusserviceDATA: @$(NORMAL_UNINSTALL) @list='$(dbusservice_DATA)'; test -n "$(dbusservicedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(dbusservicedir)'; $(am__uninstall_files_from_dir) install-polkit_policyDATA: $(polkit_policy_DATA) @$(NORMAL_INSTALL) @list='$(polkit_policy_DATA)'; test -n "$(polkit_policydir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(polkit_policydir)'"; \ $(MKDIR_P) "$(DESTDIR)$(polkit_policydir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(polkit_policydir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(polkit_policydir)" || exit $$?; \ done uninstall-polkit_policyDATA: @$(NORMAL_UNINSTALL) @list='$(polkit_policy_DATA)'; test -n "$(polkit_policydir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(polkit_policydir)'; $(am__uninstall_files_from_dir) install-privateDATA: $(private_DATA) @$(NORMAL_INSTALL) @list='$(private_DATA)'; test -n "$(privatedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(privatedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(privatedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(privatedir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(privatedir)" || exit $$?; \ done uninstall-privateDATA: @$(NORMAL_UNINSTALL) @list='$(private_DATA)'; test -n "$(privatedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(privatedir)'; $(am__uninstall_files_from_dir) install-serviceDATA: $(service_DATA) @$(NORMAL_INSTALL) @list='$(service_DATA)'; test -n "$(servicedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(servicedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(servicedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(servicedir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(servicedir)" || exit $$?; \ done uninstall-serviceDATA: @$(NORMAL_UNINSTALL) @list='$(service_DATA)'; test -n "$(servicedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(servicedir)'; $(am__uninstall_files_from_dir) install-systemdunitDATA: $(systemdunit_DATA) @$(NORMAL_INSTALL) @list='$(systemdunit_DATA)'; test -n "$(systemdunitdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(systemdunitdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(systemdunitdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(systemdunitdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(systemdunitdir)" || exit $$?; \ done uninstall-systemdunitDATA: @$(NORMAL_UNINSTALL) @list='$(systemdunit_DATA)'; test -n "$(systemdunitdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(systemdunitdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files # Recover from deleted '.trs' file; this should ensure that # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells # to avoid problems with "make -n". .log.trs: rm -f $< $@ $(MAKE) $(AM_MAKEFLAGS) $< # Leading 'am--fnord' is there to ensure the list of targets does not # expand to empty, as could happen e.g. with make check TESTS=''. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) am--force-recheck: @: $(TEST_SUITE_LOG): $(TEST_LOGS) @$(am__set_TESTS_bases); \ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ redo_bases=`for i in $$bases; do \ am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ done`; \ if test -n "$$redo_bases"; then \ redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ if $(am__make_dryrun); then :; else \ rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ fi; \ fi; \ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ elif test -n "$$redo_logs"; then \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ st=0; \ errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ for i in $$redo_bases; do \ test -f $$i.trs && test -r $$i.trs \ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ test -f $$i.log && test -r $$i.log \ || { echo "$$errmsg $$i.log" >&2; st=1; }; \ done; \ test $$st -eq 0 || exit 1; \ fi @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ ws='[ ]'; \ results=`for b in $$bases; do echo $$b.trs; done`; \ test -n "$$results" || results=/dev/null; \ all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ if test `expr $$fail + $$xpass + $$error` -eq 0; then \ success=true; \ else \ success=false; \ fi; \ br='==================='; br=$$br$$br$$br$$br; \ result_count () \ { \ if test x"$$1" = x"--maybe-color"; then \ maybe_colorize=yes; \ elif test x"$$1" = x"--no-color"; then \ maybe_colorize=no; \ else \ echo "$@: invalid 'result_count' usage" >&2; exit 4; \ fi; \ shift; \ desc=$$1 count=$$2; \ if test $$maybe_colorize = yes && test $$count -gt 0; then \ color_start=$$3 color_end=$$std; \ else \ color_start= color_end=; \ fi; \ echo "$${color_start}# $$desc $$count$${color_end}"; \ }; \ create_testsuite_report () \ { \ result_count $$1 "TOTAL:" $$all "$$brg"; \ result_count $$1 "PASS: " $$pass "$$grn"; \ result_count $$1 "SKIP: " $$skip "$$blu"; \ result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ result_count $$1 "FAIL: " $$fail "$$red"; \ result_count $$1 "XPASS:" $$xpass "$$red"; \ result_count $$1 "ERROR:" $$error "$$mgn"; \ }; \ { \ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ $(am__rst_title); \ create_testsuite_report --no-color; \ echo; \ echo ".. contents:: :depth: 2"; \ echo; \ for b in $$bases; do echo $$b; done \ | $(am__create_global_log); \ } >$(TEST_SUITE_LOG).tmp || exit 1; \ mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ if $$success; then \ col="$$grn"; \ else \ col="$$red"; \ test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ fi; \ echo "$${col}$$br$${std}"; \ echo "$${col}Testsuite summary"$(AM_TESTSUITE_SUMMARY_HEADER)"$${std}"; \ echo "$${col}$$br$${std}"; \ create_testsuite_report --maybe-color; \ echo "$$col$$br$$std"; \ if $$success; then :; else \ echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ if test -n "$(PACKAGE_BUGREPORT)"; then \ echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ fi; \ echo "$$col$$br$$std"; \ fi; \ $$success || exit 1 check-TESTS: $(check_PROGRAMS) @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ log_list=`for i in $$bases; do echo $$i.log; done`; \ trs_list=`for i in $$bases; do echo $$i.trs; done`; \ log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ exit $$?; recheck: all $(check_PROGRAMS) @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ bases=`for i in $$bases; do echo $$i; done \ | $(am__list_recheck_tests)` || exit 1; \ log_list=`for i in $$bases; do echo $$i.log; done`; \ log_list=`echo $$log_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ am__force_recheck=am--force-recheck \ TEST_LOGS="$$log_list"; \ exit $$? test-dn-util.log: test-dn-util$(EXEEXT) @p='test-dn-util$(EXEEXT)'; \ b='test-dn-util'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test-ini-config.log: test-ini-config$(EXEEXT) @p='test-ini-config$(EXEEXT)'; \ b='test-ini-config'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test-sssd-config.log: test-sssd-config$(EXEEXT) @p='test-sssd-config$(EXEEXT)'; \ b='test-sssd-config'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test-safe-format.log: test-safe-format$(EXEEXT) @p='test-safe-format$(EXEEXT)'; \ b='test-safe-format'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test-login-name.log: test-login-name$(EXEEXT) @p='test-login-name$(EXEEXT)'; \ b='test-login-name'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test-settings.log: test-settings$(EXEEXT) @p='test-settings$(EXEEXT)'; \ b='test-settings'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) .test.log: @p='$<'; \ $(am__set_b); \ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) @am__EXEEXT_TRUE@.test$(EXEEXT).log: @am__EXEEXT_TRUE@ @p='$<'; \ @am__EXEEXT_TRUE@ $(am__set_b); \ @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-zstd: distdir tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ *.tar.zst*) \ zstd -dc $(distdir).tar.zst | $(am__untar) ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && $(MAKE) $(AM_MAKEFLAGS) distcheck-hook \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-recursive @ENABLE_DOC_FALSE@all-local: all-am: Makefile $(PROGRAMS) $(LIBRARIES) $(MANS) $(DATA) config.h \ all-local installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(privatedir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(man8dir)" "$(DESTDIR)$(dbusservicedir)" "$(DESTDIR)$(polkit_policydir)" "$(DESTDIR)$(privatedir)" "$(DESTDIR)$(servicedir)" "$(DESTDIR)$(systemdunitdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-recursive install-exec: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -rm -f service/$(DEPDIR)/$(am__dirstamp) -rm -f service/$(am__dirstamp) -rm -f tests/$(DEPDIR)/$(am__dirstamp) -rm -f tests/$(am__dirstamp) -rm -f tools/$(DEPDIR)/$(am__dirstamp) -rm -f tools/$(am__dirstamp) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-recursive clean-am: clean-checkPROGRAMS clean-generic clean-libexecPROGRAMS \ clean-local clean-noinstLIBRARIES clean-noinstPROGRAMS \ clean-privatePROGRAMS clean-sbinPROGRAMS mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f ./$(DEPDIR)/librealm_dbus_a-realm-dbus-generated.Po -rm -f service/$(DEPDIR)/frob_install_packages-realm-errors.Po -rm -f service/$(DEPDIR)/frob_install_packages-realm-packages.Po -rm -f service/$(DEPDIR)/frob_install_packages-realm-settings.Po -rm -f service/$(DEPDIR)/realmd-realm-adcli-enroll.Po -rm -f service/$(DEPDIR)/realmd-realm-all-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-command.Po -rm -f service/$(DEPDIR)/realmd-realm-credential.Po -rm -f service/$(DEPDIR)/realmd-realm-daemon.Po -rm -f service/$(DEPDIR)/realmd-realm-diagnostics.Po -rm -f service/$(DEPDIR)/realmd-realm-disco-dns.Po -rm -f service/$(DEPDIR)/realmd-realm-disco-domain.Po -rm -f service/$(DEPDIR)/realmd-realm-disco-mscldap.Po -rm -f service/$(DEPDIR)/realmd-realm-disco-rootdse.Po -rm -f service/$(DEPDIR)/realmd-realm-disco.Po -rm -f service/$(DEPDIR)/realmd-realm-dn-util.Po -rm -f service/$(DEPDIR)/realmd-realm-errors.Po -rm -f service/$(DEPDIR)/realmd-realm-example-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-example.Po -rm -f service/$(DEPDIR)/realmd-realm-ini-config.Po -rm -f service/$(DEPDIR)/realmd-realm-invocation.Po -rm -f service/$(DEPDIR)/realmd-realm-kerberos-config.Po -rm -f service/$(DEPDIR)/realmd-realm-kerberos-membership.Po -rm -f service/$(DEPDIR)/realmd-realm-kerberos-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-kerberos.Po -rm -f service/$(DEPDIR)/realmd-realm-ldap.Po -rm -f service/$(DEPDIR)/realmd-realm-login-name.Po -rm -f service/$(DEPDIR)/realmd-realm-network.Po -rm -f service/$(DEPDIR)/realmd-realm-options.Po -rm -f service/$(DEPDIR)/realmd-realm-packages.Po -rm -f service/$(DEPDIR)/realmd-realm-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-samba-config.Po -rm -f service/$(DEPDIR)/realmd-realm-samba-enroll.Po -rm -f service/$(DEPDIR)/realmd-realm-samba-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-samba-winbind.Po -rm -f service/$(DEPDIR)/realmd-realm-samba.Po -rm -f service/$(DEPDIR)/realmd-realm-service.Po -rm -f service/$(DEPDIR)/realmd-realm-settings.Po -rm -f service/$(DEPDIR)/realmd-realm-sssd-ad.Po -rm -f service/$(DEPDIR)/realmd-realm-sssd-config.Po -rm -f service/$(DEPDIR)/realmd-realm-sssd-ipa.Po -rm -f service/$(DEPDIR)/realmd-realm-sssd-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-sssd.Po -rm -f service/$(DEPDIR)/realmd-realm-usleep-async.Po -rm -f service/$(DEPDIR)/realmd-safe-format-string.Po -rm -f service/$(DEPDIR)/test_dn_util-realm-dn-util.Po -rm -f service/$(DEPDIR)/test_ini_config-realm-ini-config.Po -rm -f service/$(DEPDIR)/test_ini_config-realm-samba-config.Po -rm -f service/$(DEPDIR)/test_ini_config-realm-settings.Po -rm -f service/$(DEPDIR)/test_login_name-realm-login-name.Po -rm -f service/$(DEPDIR)/test_safe_format-safe-format-string.Po -rm -f service/$(DEPDIR)/test_settings-realm-settings.Po -rm -f service/$(DEPDIR)/test_sssd_config-realm-ini-config.Po -rm -f service/$(DEPDIR)/test_sssd_config-realm-settings.Po -rm -f service/$(DEPDIR)/test_sssd_config-realm-sssd-config.Po -rm -f tests/$(DEPDIR)/frob_install_packages-frob-install-packages.Po -rm -f tests/$(DEPDIR)/test_dn_util-test-dn-util.Po -rm -f tests/$(DEPDIR)/test_ini_config-test-ini-config.Po -rm -f tests/$(DEPDIR)/test_login_name-test-login-name.Po -rm -f tests/$(DEPDIR)/test_safe_format-test-safe-format.Po -rm -f tests/$(DEPDIR)/test_settings-test-settings.Po -rm -f tests/$(DEPDIR)/test_sssd_config-test-sssd-config.Po -rm -f tools/$(DEPDIR)/realm-realm-client.Po -rm -f tools/$(DEPDIR)/realm-realm-discover.Po -rm -f tools/$(DEPDIR)/realm-realm-join.Po -rm -f tools/$(DEPDIR)/realm-realm-leave.Po -rm -f tools/$(DEPDIR)/realm-realm-logins.Po -rm -f tools/$(DEPDIR)/realm-realm.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-data-local install-dbusserviceDATA \ install-man install-polkit_policyDATA install-privateDATA \ install-privatePROGRAMS install-serviceDATA \ install-systemdunitDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-libexecPROGRAMS install-sbinPROGRAMS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-man5 install-man8 install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f ./$(DEPDIR)/librealm_dbus_a-realm-dbus-generated.Po -rm -f service/$(DEPDIR)/frob_install_packages-realm-errors.Po -rm -f service/$(DEPDIR)/frob_install_packages-realm-packages.Po -rm -f service/$(DEPDIR)/frob_install_packages-realm-settings.Po -rm -f service/$(DEPDIR)/realmd-realm-adcli-enroll.Po -rm -f service/$(DEPDIR)/realmd-realm-all-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-command.Po -rm -f service/$(DEPDIR)/realmd-realm-credential.Po -rm -f service/$(DEPDIR)/realmd-realm-daemon.Po -rm -f service/$(DEPDIR)/realmd-realm-diagnostics.Po -rm -f service/$(DEPDIR)/realmd-realm-disco-dns.Po -rm -f service/$(DEPDIR)/realmd-realm-disco-domain.Po -rm -f service/$(DEPDIR)/realmd-realm-disco-mscldap.Po -rm -f service/$(DEPDIR)/realmd-realm-disco-rootdse.Po -rm -f service/$(DEPDIR)/realmd-realm-disco.Po -rm -f service/$(DEPDIR)/realmd-realm-dn-util.Po -rm -f service/$(DEPDIR)/realmd-realm-errors.Po -rm -f service/$(DEPDIR)/realmd-realm-example-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-example.Po -rm -f service/$(DEPDIR)/realmd-realm-ini-config.Po -rm -f service/$(DEPDIR)/realmd-realm-invocation.Po -rm -f service/$(DEPDIR)/realmd-realm-kerberos-config.Po -rm -f service/$(DEPDIR)/realmd-realm-kerberos-membership.Po -rm -f service/$(DEPDIR)/realmd-realm-kerberos-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-kerberos.Po -rm -f service/$(DEPDIR)/realmd-realm-ldap.Po -rm -f service/$(DEPDIR)/realmd-realm-login-name.Po -rm -f service/$(DEPDIR)/realmd-realm-network.Po -rm -f service/$(DEPDIR)/realmd-realm-options.Po -rm -f service/$(DEPDIR)/realmd-realm-packages.Po -rm -f service/$(DEPDIR)/realmd-realm-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-samba-config.Po -rm -f service/$(DEPDIR)/realmd-realm-samba-enroll.Po -rm -f service/$(DEPDIR)/realmd-realm-samba-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-samba-winbind.Po -rm -f service/$(DEPDIR)/realmd-realm-samba.Po -rm -f service/$(DEPDIR)/realmd-realm-service.Po -rm -f service/$(DEPDIR)/realmd-realm-settings.Po -rm -f service/$(DEPDIR)/realmd-realm-sssd-ad.Po -rm -f service/$(DEPDIR)/realmd-realm-sssd-config.Po -rm -f service/$(DEPDIR)/realmd-realm-sssd-ipa.Po -rm -f service/$(DEPDIR)/realmd-realm-sssd-provider.Po -rm -f service/$(DEPDIR)/realmd-realm-sssd.Po -rm -f service/$(DEPDIR)/realmd-realm-usleep-async.Po -rm -f service/$(DEPDIR)/realmd-safe-format-string.Po -rm -f service/$(DEPDIR)/test_dn_util-realm-dn-util.Po -rm -f service/$(DEPDIR)/test_ini_config-realm-ini-config.Po -rm -f service/$(DEPDIR)/test_ini_config-realm-samba-config.Po -rm -f service/$(DEPDIR)/test_ini_config-realm-settings.Po -rm -f service/$(DEPDIR)/test_login_name-realm-login-name.Po -rm -f service/$(DEPDIR)/test_safe_format-safe-format-string.Po -rm -f service/$(DEPDIR)/test_settings-realm-settings.Po -rm -f service/$(DEPDIR)/test_sssd_config-realm-ini-config.Po -rm -f service/$(DEPDIR)/test_sssd_config-realm-settings.Po -rm -f service/$(DEPDIR)/test_sssd_config-realm-sssd-config.Po -rm -f tests/$(DEPDIR)/frob_install_packages-frob-install-packages.Po -rm -f tests/$(DEPDIR)/test_dn_util-test-dn-util.Po -rm -f tests/$(DEPDIR)/test_ini_config-test-ini-config.Po -rm -f tests/$(DEPDIR)/test_login_name-test-login-name.Po -rm -f tests/$(DEPDIR)/test_safe_format-test-safe-format.Po -rm -f tests/$(DEPDIR)/test_settings-test-settings.Po -rm -f tests/$(DEPDIR)/test_sssd_config-test-sssd-config.Po -rm -f tools/$(DEPDIR)/realm-realm-client.Po -rm -f tools/$(DEPDIR)/realm-realm-discover.Po -rm -f tools/$(DEPDIR)/realm-realm-join.Po -rm -f tools/$(DEPDIR)/realm-realm-leave.Po -rm -f tools/$(DEPDIR)/realm-realm-logins.Po -rm -f tools/$(DEPDIR)/realm-realm.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-dbusserviceDATA uninstall-libexecPROGRAMS \ uninstall-local uninstall-man uninstall-polkit_policyDATA \ uninstall-privateDATA uninstall-privatePROGRAMS \ uninstall-sbinPROGRAMS uninstall-serviceDATA \ uninstall-systemdunitDATA uninstall-man: uninstall-man5 uninstall-man8 .MAKE: $(am__recursive_targets) all check check-am install install-am \ install-exec install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ am--depfiles am--refresh check check-TESTS check-am clean \ clean-checkPROGRAMS clean-cscope clean-generic \ clean-libexecPROGRAMS clean-local clean-noinstLIBRARIES \ clean-noinstPROGRAMS clean-privatePROGRAMS clean-sbinPROGRAMS \ cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \ dist-gzip dist-hook dist-lzip dist-shar dist-tarZ dist-xz \ dist-zip dist-zstd distcheck distclean distclean-compile \ distclean-generic distclean-hdr distclean-tags distcleancheck \ distdir distuninstallcheck dvi dvi-am html html-am info \ info-am install install-am install-data install-data-am \ install-data-local install-dbusserviceDATA install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libexecPROGRAMS install-man install-man5 install-man8 \ install-pdf install-pdf-am install-polkit_policyDATA \ install-privateDATA install-privatePROGRAMS install-ps \ install-ps-am install-sbinPROGRAMS install-serviceDATA \ install-strip install-systemdunitDATA installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am recheck tags tags-am \ uninstall uninstall-am uninstall-dbusserviceDATA \ uninstall-libexecPROGRAMS uninstall-local uninstall-man \ uninstall-man5 uninstall-man8 uninstall-polkit_policyDATA \ uninstall-privateDATA uninstall-privatePROGRAMS \ uninstall-sbinPROGRAMS uninstall-serviceDATA \ uninstall-systemdunitDATA .PRECIOUS: Makefile dist-hook: dist-doc-hook @if test -d "$(srcdir)/.git"; \ then \ echo Creating ChangeLog && \ ( cd "$(top_srcdir)" && \ echo '# Generate automatically. Do not edit.'; echo; \ $(top_srcdir)/missing --run git log --stat --date=short ) > ChangeLog.tmp \ && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \ || ( rm -f ChangeLog.tmp ; \ echo Failed to generate ChangeLog >&2 ); \ else \ echo A git clone is required to generate a ChangeLog >&2; \ fi upload-release: $(DIST_ARCHIVES) gpg --detach-sign --local-user 'stef@thewalter.net' $(DIST_ARCHIVES) scp $(DIST_ARCHIVES) $(DIST_ARCHIVES).sig anarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/realmd/releases transifex: po/realmd.pot sh $(srcdir)/build/tx-update $< .service.in.service: $(V_SED) $(MKDIR_P) $(dir $@) && $(SED_SUBST) $< > $@ .conf.in.conf: $(V_SED) $(MKDIR_P) $(dir $@) && $(SED_SUBST) $< > $@ $(DBUS_GENERATED): dbus/org.freedesktop.realmd.xml $(AM_V_GEN) gdbus-codegen --interface-prefix org.freedesktop.realmd. \ --generate-c-code realm-dbus-generated \ --c-namespace RealmDbus $< service/%.policy: service/%.policy.in $(AM_V_GEN)$(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@ # Install and uninstall the config for this distro install-service: $(INSTALL_PROGRAM) -d $(DESTDIR)$(privatedir) $(INSTALL_PROGRAM) -d $(DESTDIR)$(localstatedir)/lib/realmd $(INSTALL_PROGRAM) -d $(DESTDIR)$(cachedir) $(INSTALL_DATA) $(srcdir)/service/realmd-$(DISTRO).conf $(DESTDIR)$(privatedir)/realmd-distro.conf uninstall-service: rm -f $(DESTDIR)$(privatedir)/realmd-distro.conf install-data-local: install-service install-doc @true uninstall-local: uninstall-service uninstall-doc @true clean-local: clean-doc find $(builddir) -name '*.gc??' -delete @ENABLE_DOC_TRUE@$(man5_MANS): doc/privatedir.xml @ENABLE_DOC_TRUE@doc/privatedir.xml: doc/privatedir.xml.in @ENABLE_DOC_TRUE@ $(V_SED) $(MKDIR_P) $(dir $@) && $(SED_SUBST) $< > $@ @ENABLE_DOC_TRUE@.xml.8: @ENABLE_DOC_TRUE@ $(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_FLAGS) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< @ENABLE_DOC_TRUE@.xml.5: @ENABLE_DOC_TRUE@ $(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_FLAGS) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< @ENABLE_DOC_TRUE@realmd-org.freedesktop.realmd.generated: $(DBUS_INTERFACE) doc/manual/gdbus-fix-bugs.xsl @ENABLE_DOC_TRUE@ $(AM_V_GEN) gdbus-codegen --interface-prefix org.freedesktop.realmd. \ @ENABLE_DOC_TRUE@ --generate-docbook realmd $< && \ @ENABLE_DOC_TRUE@ (for f in $(DBUS_DOC_GENERATED); do \ @ENABLE_DOC_TRUE@ $(XSLTPROC) --output $$f.tmp $(srcdir)/doc/manual/gdbus-fix-bugs.xsl $$f && mv $$f.tmp $$f; \ @ENABLE_DOC_TRUE@ done) && \ @ENABLE_DOC_TRUE@ touch realmd-org.freedesktop.realmd.generated @ENABLE_DOC_TRUE@$(DBUS_DOC_GENERATED): realmd-org.freedesktop.realmd.generated @ENABLE_DOC_TRUE@$(DBUS_ESCAPED): $(DBUS_INTERFACE) doc/manual/escape-xml-to-text.xsl @ENABLE_DOC_TRUE@ $(AM_V_GEN) $(XSLTPROC) --nonet --novalid --output $(DBUS_ESCAPED) \ @ENABLE_DOC_TRUE@ $(srcdir)/doc/manual/escape-xml-to-text.xsl $< && \ @ENABLE_DOC_TRUE@ sed -i '/^[ ]*$$/d' $(DBUS_ESCAPED) @ENABLE_DOC_TRUE@manual/index.html: $(DBUS_DOC_GENERATED) $(MANUAL_DOCBOOK) $(MANUAL_INCLUDES) $(MAN_IN_FILES) $(DBUS_ESCAPED) $(MANUAL_STATIC) doc/privatedir.xml @ENABLE_DOC_TRUE@ $(AM_V_GEN) mkdir -p manual && cp $(srcdir)/doc/manual/static/* manual/ && \ @ENABLE_DOC_TRUE@ $(XMLTO) html -m $(srcdir)/doc/manual/gtk-doc.xsl -o manual \ @ENABLE_DOC_TRUE@ --searchpath $(abs_builddir):$(abs_srcdir):$(abs_builddir)/doc \ @ENABLE_DOC_TRUE@ $(srcdir)/$(MANUAL_DOCBOOK) @ENABLE_DOC_TRUE@internals/realmd-internals.html: $(INTERNAL_DOCBOOK) $(INTERNAL_INCLUDES) $(INTERNAL_STATIC) @ENABLE_DOC_TRUE@ $(AM_V_GEN) mkdir -p internals && cp $(srcdir)/doc/internals/static/* internals/ && \ @ENABLE_DOC_TRUE@ $(XMLTO) html-nochunks -m $(srcdir)/$(INTERNAL_PARAMS) -o internals \ @ENABLE_DOC_TRUE@ --searchpath $(abs_builddir):$(abs_srcdir) $(srcdir)/$(INTERNAL_DOCBOOK) @ENABLE_DOC_TRUE@render-images: @ENABLE_DOC_TRUE@ for i in $(SVG_IMAGES:.svg=); do \ @ENABLE_DOC_TRUE@ inkscape --export-png=static/$$i.png $$i.svg; \ @ENABLE_DOC_TRUE@ done @ENABLE_DOC_TRUE@website: @ENABLE_DOC_TRUE@ SRCDIR=$(srcdir) BUILDDIR=$(builddir) python $(srcdir)/doc/website/jinja2-build.py @ENABLE_DOC_TRUE@upload-website: website manual/index.html internals/realmd-internals.html @ENABLE_DOC_TRUE@ rsync -Hvax manual/./ anarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/realmd/docs/./ @ENABLE_DOC_TRUE@ rsync -Hvax internals/./ anarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/realmd/internals/./ @ENABLE_DOC_TRUE@ rsync -Hvax --exclude docs --exclude internals --exclude releases \ @ENABLE_DOC_TRUE@ html/* anarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/realmd/ @ENABLE_DOC_TRUE@dist-doc-hook: manual/index.html @ENABLE_DOC_TRUE@ @mkdir $(distdir)/manual @ENABLE_DOC_TRUE@ @cp ./manual/* $(distdir)/manual @ENABLE_DOC_TRUE@all-local: manual/index.html internals/realmd-internals.html @ENABLE_DOC_TRUE@clean-doc: @ENABLE_DOC_TRUE@ @rm -rf *.tmp manual/ internals/ @ENABLE_DOC_TRUE@install-doc: @ENABLE_DOC_TRUE@ $(MKDIR_P) $(DESTDIR)$(htmldir) @ENABLE_DOC_TRUE@ $(INSTALL_DATA) $(builddir)/manual/* $(DESTDIR)$(htmldir) @ENABLE_DOC_TRUE@uninstall-doc: @ENABLE_DOC_TRUE@ rm -rf $(DESTDIR)$(htmldir) @ENABLE_DOC_TRUE@distcheck-hook: @ENABLE_DOC_TRUE@ @true @ENABLE_DOC_FALSE@upload: @ENABLE_DOC_FALSE@ @echo "*** doc must be enabled (and --enable-doc) in order to make upload" @ENABLE_DOC_FALSE@ @false @ENABLE_DOC_FALSE@distcheck-hook: @ENABLE_DOC_FALSE@ @echo "*** doc must be enabled (and --enable-doc) in order to make distcheck" @ENABLE_DOC_FALSE@ @false @ENABLE_DOC_FALSE@dist-doc-hook: @ENABLE_DOC_FALSE@ @echo "*** doc must be enabled (and --enable-doc) in order to make dist" @ENABLE_DOC_FALSE@ @false @ENABLE_DOC_FALSE@clean-doc: @ENABLE_DOC_FALSE@ @true @ENABLE_DOC_FALSE@install-doc: @ENABLE_DOC_FALSE@ @true @ENABLE_DOC_FALSE@uninstall-doc: @ENABLE_DOC_FALSE@ @true valgrind-suppressions: $(VALGRIND_SUPPRESSIONS) $(AM_V_GEN) cat $^ > $@ check-memory: valgrind-suppressions $(MAKE) LOG_FLAGS="-- libtool --mode=execute valgrind $(VALGRIND_ARGS)" \ $(AM_MAKEFLAGS) check recheck-memory: valgrind-suppressions $(MAKE) LOG_FLAGS="-- libtool --mode=execute valgrind $(VALGRIND_ARGS)" \ $(AM_MAKEFLAGS) recheck @WITH_COVERAGE_TRUE@coverage: @WITH_COVERAGE_TRUE@ mkdir -p $(top_builddir)/build/coverage @WITH_COVERAGE_TRUE@ $(LCOV) --directory . --capture --output-file $(top_builddir)/build/coverage.info @WITH_COVERAGE_TRUE@ $(GENHTML) --output-directory $(top_builddir)/build/coverage $(top_builddir)/build/coverage.info @WITH_COVERAGE_TRUE@ $(LCOV) --directory . --zerocounters @WITH_COVERAGE_TRUE@ @echo "file://$(abs_top_builddir)/build/coverage/index.html" @WITH_COVERAGE_TRUE@clear-coverage: @WITH_COVERAGE_TRUE@ $(LCOV) --directory . --zerocounters # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: realmd-0.17.1/aclocal.m40000644003225100322510000015716014315276772015244 0ustar00sbosesbose00000000000000# generated automatically by aclocal 1.16.5 -*- Autoconf -*- # Copyright (C) 1996-2021 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.71],, [m4_warning([this file was generated for autoconf 2.71. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 11 (pkg-config-0.29.1) dnl Copyright © 2004 Scott James Remnant . dnl Copyright © 2012-2015 Dan Nicholson dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2 of the License, or dnl (at your option) any later version. dnl dnl This program is distributed in the hope that it will be useful, but dnl WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA dnl 02111-1307, USA. dnl dnl As a special exception to the GNU General Public License, if you dnl distribute this file as part of a program that contains a dnl configuration script generated by Autoconf, you may include it under dnl the same distribution terms that you use for the rest of that dnl program. dnl PKG_PREREQ(MIN-VERSION) dnl ----------------------- dnl Since: 0.29 dnl dnl Verify that the version of the pkg-config macros are at least dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's dnl installed version of pkg-config, this checks the developer's version dnl of pkg.m4 when generating configure. dnl dnl To ensure that this macro is defined, also add: dnl m4_ifndef([PKG_PREREQ], dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) dnl dnl See the "Since" comment for each macro you use to see what version dnl of the macros you require. m4_defun([PKG_PREREQ], [m4_define([PKG_MACROS_VERSION], [0.29.1]) m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) ])dnl PKG_PREREQ dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) dnl ---------------------------------- dnl Since: 0.16 dnl dnl Search for the pkg-config tool and set the PKG_CONFIG variable to dnl first found in the path. Checks that the version of pkg-config found dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is dnl used since that's the first version where most current features of dnl pkg-config existed. AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])dnl PKG_PROG_PKG_CONFIG dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------------------------------- dnl Since: 0.18 dnl dnl Check to see whether a particular set of modules exists. Similar to dnl PKG_CHECK_MODULES(), but does not set variables or print errors. dnl dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) dnl only at the first occurence in configure.ac, so if the first place dnl it's called might be skipped (such as if it is within an "if", you dnl have to call PKG_CHECK_EXISTS manually AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) dnl --------------------------------------------- dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting dnl pkg_failed based on the result. m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])dnl _PKG_CONFIG dnl _PKG_SHORT_ERRORS_SUPPORTED dnl --------------------------- dnl Internal check to see if pkg-config supports short errors. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])dnl _PKG_SHORT_ERRORS_SUPPORTED dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl -------------------------------------------------------------- dnl Since: 0.4.0 dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES might not happen, you should be sure to include an dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])dnl PKG_CHECK_MODULES dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl --------------------------------------------------------------------- dnl Since: 0.29 dnl dnl Checks for existence of MODULES and gathers its build flags with dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags dnl and VARIABLE-PREFIX_LIBS from --libs. dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to dnl include an explicit call to PKG_PROG_PKG_CONFIG in your dnl configure.ac. AC_DEFUN([PKG_CHECK_MODULES_STATIC], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl _save_PKG_CONFIG=$PKG_CONFIG PKG_CONFIG="$PKG_CONFIG --static" PKG_CHECK_MODULES($@) PKG_CONFIG=$_save_PKG_CONFIG[]dnl ])dnl PKG_CHECK_MODULES_STATIC dnl PKG_INSTALLDIR([DIRECTORY]) dnl ------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable pkgconfigdir as the location where a module dnl should install pkg-config .pc files. By default the directory is dnl $libdir/pkgconfig, but the default can be changed by passing dnl DIRECTORY. The user can override through the --with-pkgconfigdir dnl parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([pkgconfigdir], [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, [with_pkgconfigdir=]pkg_default) AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_INSTALLDIR dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) dnl -------------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable noarch_pkgconfigdir as the location where a dnl module should install arch-independent pkg-config .pc files. By dnl default the directory is $datadir/pkgconfig, but the default can be dnl changed by passing DIRECTORY. The user can override through the dnl --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([noarch-pkgconfigdir], [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, [with_noarch_pkgconfigdir=]pkg_default) AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_NOARCH_INSTALLDIR dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------- dnl Since: 0.28 dnl dnl Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl _PKG_CONFIG([$1], [variable="][$3]["], [$2]) AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl ])dnl PKG_CHECK_VAR dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES, dnl [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND], dnl [DESCRIPTION], [DEFAULT]) dnl ------------------------------------------ dnl dnl Prepare a "--with-" configure option using the lowercase dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and dnl PKG_CHECK_MODULES in a single macro. AC_DEFUN([PKG_WITH_MODULES], [ m4_pushdef([with_arg], m4_tolower([$1])) m4_pushdef([description], [m4_default([$5], [build with ]with_arg[ support])]) m4_pushdef([def_arg], [m4_default([$6], [auto])]) m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes]) m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no]) m4_case(def_arg, [yes],[m4_pushdef([with_without], [--without-]with_arg)], [m4_pushdef([with_without],[--with-]with_arg)]) AC_ARG_WITH(with_arg, AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),, [AS_TR_SH([with_]with_arg)=def_arg]) AS_CASE([$AS_TR_SH([with_]with_arg)], [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)], [auto],[PKG_CHECK_MODULES([$1],[$2], [m4_n([def_action_if_found]) $3], [m4_n([def_action_if_not_found]) $4])]) m4_popdef([with_arg]) m4_popdef([description]) m4_popdef([def_arg]) ])dnl PKG_WITH_MODULES dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES, dnl [DESCRIPTION], [DEFAULT]) dnl ----------------------------------------------- dnl dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES dnl check._[VARIABLE-PREFIX] is exported as make variable. AC_DEFUN([PKG_HAVE_WITH_MODULES], [ PKG_WITH_MODULES([$1],[$2],,,[$3],[$4]) AM_CONDITIONAL([HAVE_][$1], [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"]) ])dnl PKG_HAVE_WITH_MODULES dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES, dnl [DESCRIPTION], [DEFAULT]) dnl ------------------------------------------------------ dnl dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make dnl and preprocessor variable. AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES], [ PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4]) AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"], [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])]) ])dnl PKG_HAVE_DEFINE_WITH_MODULES # Copyright (C) 2002-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.16' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.16.5], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.16.5])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. AS_CASE([$CONFIG_FILES], [*\'*], [eval set x "$CONFIG_FILES"], [*], [set x $CONFIG_FILES]) shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`AS_DIRNAME(["$am_mf"])` am_filepart=`AS_BASENAME(["$am_mf"])` AM_RUN_LOG([cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles]) || am_rc=$? done if test $am_rc -ne 0; then AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments for automatic dependency tracking. If GNU make was not used, consider re-running the configure script with MAKE="gmake" (or whatever is necessary). You can also try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking).]) fi AS_UNSET([am_dirpart]) AS_UNSET([am_filepart]) AS_UNSET([am_mf]) AS_UNSET([am_rc]) rm -f conftest-deps.mk } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking is enabled. # This creates each '.Po' and '.Plo' makefile fragment that we'll need in # order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl m4_ifdef([_$0_ALREADY_INIT], [m4_fatal([$0 expanded multiple times ]m4_defn([_$0_ALREADY_INIT]))], [m4_define([_$0_ALREADY_INIT], m4_expansion_stack)])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifset([AC_PACKAGE_NAME], [ok]):m4_ifset([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) # Variables for tags utilities; see am/tags.am if test -z "$CTAGS"; then CTAGS=ctags fi AC_SUBST([CTAGS]) if test -z "$ETAGS"; then ETAGS=etags fi AC_SUBST([ETAGS]) if test -z "$CSCOPE"; then CSCOPE=cscope fi AC_SUBST([CSCOPE]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless 'enable' is passed literally. # For symmetry, 'disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], am_maintainer_other[ make rules and dependencies not useful (and sometimes confusing) to the casual installer])], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check whether make has an 'include' directive that can support all # the idioms we need for our automatic dependency tracking code. AC_DEFUN([AM_MAKE_INCLUDE], [AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) AS_CASE([$?:`cat confinc.out 2>/dev/null`], ['0:this is the am__doit target'], [AS_CASE([$s], [BSD], [am__include='.include' am__quote='"'], [am__include='include' am__quote=''])]) if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* AC_MSG_RESULT([${_am_result}]) AC_SUBST([am__include])]) AC_SUBST([am__quote])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([build/m4/gettext.m4]) m4_include([build/m4/iconv.m4]) m4_include([build/m4/intlmacosx.m4]) m4_include([build/m4/lib-ld.m4]) m4_include([build/m4/lib-link.m4]) m4_include([build/m4/lib-prefix.m4]) m4_include([build/m4/nls.m4]) m4_include([build/m4/po.m4]) m4_include([build/m4/progtest.m4]) realmd-0.17.1/dbus/0000755003225100322510000000000014315277002014312 5ustar00sbosesbose00000000000000realmd-0.17.1/dbus/org.freedesktop.realmd.xml0000644003225100322510000007265414046520517021421 0ustar00sbosesbose00000000000000 realmd-0.17.1/dbus/realm-dbus-constants.h0000644003225100322510000001063514311053251020527 0ustar00sbosesbose00000000000000/* realmd -- Realm configuration service * * Copyright 2012 Red Hat Inc * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #ifndef __REALM_DBUS_CONSTANTS_H__ #define __REALM_DBUS_CONSTANTS_H__ #include G_BEGIN_DECLS #define REALM_DBUS_BUS_NAME "org.freedesktop.realmd" #define REALM_DBUS_SERVICE_PATH "/org/freedesktop/realmd" #define DBUS_PEER_INTERFACE "org.freedesktop.DBus.Peer" #define DBUS_PROPERTIES_INTERFACE "org.freedesktop.DBus.Properties" #define DBUS_INTROSPECTABLE_INTERFACE "org.freedesktop.DBus.Introspectable" #define REALM_DBUS_PROVIDER_INTERFACE "org.freedesktop.realmd.Provider" #define REALM_DBUS_REALM_INTERFACE "org.freedesktop.realmd.Realm" #define REALM_DBUS_KERBEROS_INTERFACE "org.freedesktop.realmd.Kerberos" #define REALM_DBUS_KERBEROS_MEMBERSHIP_INTERFACE "org.freedesktop.realmd.KerberosMembership" #define REALM_DBUS_SERVICE_INTERFACE "org.freedesktop.realmd.Service" #define REALM_DBUS_DIAGNOSTICS_SIGNAL "Diagnostics" #define REALM_DBUS_ERROR_INTERNAL "org.freedesktop.realmd.Error.Internal" #define REALM_DBUS_ERROR_FAILED "org.freedesktop.realmd.Error.Failed" #define REALM_DBUS_ERROR_BUSY "org.freedesktop.realmd.Error.Busy" #define REALM_DBUS_ERROR_NOT_AUTHORIZED "org.freedesktop.realmd.Error.NotAuthorized" #define REALM_DBUS_ERROR_CANCELLED "org.freedesktop.realmd.Error.Cancelled" #define REALM_DBUS_ERROR_ALREADY_CONFIGURED "org.freedesktop.realmd.Error.AlreadyConfigured" #define REALM_DBUS_ERROR_NOT_CONFIGURED "org.freedesktop.realmd.Error.NotConfigured" #define REALM_DBUS_ERROR_AUTH_FAILED "org.freedesktop.realmd.Error.AuthenticationFailed" #define REALM_DBUS_ERROR_BAD_HOSTNAME "org.freedesktop.realmd.Error.BadHostname" #define REALM_DBUS_ERROR_CANCELLED "org.freedesktop.realmd.Error.Cancelled" #define REALM_DBUS_DISCOVERY_DOMAIN "domain" #define REALM_DBUS_DISCOVERY_KDCS "kerberos-kdcs" #define REALM_DBUS_DISCOVERY_REALM "kerberos-realm" #define REALM_DBUS_NAME_CHARS "abcdefghijklnmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_" #define REALM_DBUS_LOGIN_POLICY_ANY "allow-any-login" #define REALM_DBUS_LOGIN_POLICY_REALM "allow-realm-logins" #define REALM_DBUS_LOGIN_POLICY_PERMITTED "allow-permitted-logins" #define REALM_DBUS_LOGIN_POLICY_DENY "deny-any-login" #define REALM_DBUS_OPTION_OPERATION "operation" #define REALM_DBUS_OPTION_COMPUTER_OU "computer-ou" #define REALM_DBUS_OPTION_AUTOMATIC_ID_MAPPING "automatic-id-mapping" #define REALM_DBUS_OPTION_SERVER_SOFTWARE "server-software" #define REALM_DBUS_OPTION_CLIENT_SOFTWARE "client-software" #define REALM_DBUS_OPTION_MEMBERSHIP_SOFTWARE "membership-software" #define REALM_DBUS_OPTION_USER_PRINCIPAL "user-principal" #define REALM_DBUS_OPTION_MANAGE_SYSTEM "manage-system" #define REALM_DBUS_OPTION_COMPUTER_NAME "computer-name" #define REALM_DBUS_OPTION_OS_NAME "os-name" #define REALM_DBUS_OPTION_OS_VERSION "os-version" #define REALM_DBUS_OPTION_LEGACY_SMB_CONF "legacy-samba-config" #define REALM_DBUS_OPTION_USE_LDAPS "use-ldaps" #define REALM_DBUS_OPTION_DO_NOT_TOUCH_CONFIG "do-not-touch-config" #define REALM_DBUS_IDENTIFIER_ACTIVE_DIRECTORY "active-directory" #define REALM_DBUS_IDENTIFIER_WINBIND "winbind" #define REALM_DBUS_IDENTIFIER_IPA "ipa" #define REALM_DBUS_IDENTIFIER_FREEIPA "freeipa" #define REALM_DBUS_IDENTIFIER_SSSD "sssd" #define REALM_DBUS_IDENTIFIER_SAMBA "samba" #define REALM_DBUS_IDENTIFIER_ADCLI "adcli" #define REALM_DBUS_IDENTIFIER_EXAMPLE "example" G_END_DECLS #endif /* __REALM_DBUS_CONSTANTS_H__ */ realmd-0.17.1/dbus/org.freedesktop.realmd.conf0000644003225100322510000000062414046520517021532 0ustar00sbosesbose00000000000000 realmd-0.17.1/dbus/Makefile.am0000644003225100322510000000255214046520517016355 0ustar00sbosesbose00000000000000 dbusservicedir = $(DBUS_POLICY_DIR) dbusservice_DATA = \ dbus/org.freedesktop.realmd.conf servicedir = $(DBUS_SERVICES_DIR) service_in_files = \ dbus/org.freedesktop.realmd.service.in service_DATA = $(service_in_files:.service.in=.service) noinst_LIBRARIES += \ librealm-dbus.a BUILT_SOURCES += \ realm-dbus-generated.c \ realm-dbus-generated.h \ $(NULL) librealm_dbus_a_SOURCES = \ dbus/realm-dbus-constants.h \ $(NULL) nodist_librealm_dbus_a_SOURCES = \ $(BUILT_SOURCES) \ $(NULL) librealm_dbus_a_CFLAGS = \ $(GLIB_CFLAGS) \ $(NULL) DBUS_XML_DEFINITIONS = \ dbus/org.freedesktop.realmd.xml DBUS_GENERATED = \ realm-dbus-generated.c \ realm-dbus-generated.h \ $(NULL) $(DBUS_GENERATED): dbus/org.freedesktop.realmd.xml $(AM_V_GEN) gdbus-codegen --interface-prefix org.freedesktop.realmd. \ --generate-c-code realm-dbus-generated \ --c-namespace RealmDbus $< systemdunit_in_files = dbus/realmd.service.in if WITH_SYSTEMD systemdunitdir = $(SYSTEMD_UNIT_DIR) systemdunit_DATA = $(systemdunit_in_files:.service.in=.service) endif # ------------------------------------------------------------------ EXTRA_DIST += \ $(DBUS_XML_DEFINITIONS) \ $(dbusservice_DATA) \ $(provider_DATA) \ $(service_in_files) \ $(systemdunit_in_files) \ $(NULL) CLEANFILES += \ $(DBUS_GENERATED) \ $(service_DATA) \ $(systemdunit_DATA) \ $(NULL) realmd-0.17.1/dbus/org.freedesktop.realmd.service.in0000644003225100322510000000014614046520517022651 0ustar00sbosesbose00000000000000[D-BUS Service] Name=org.freedesktop.realmd Exec=@libexecdir@/realmd User=root @dbus_systemd_service@ realmd-0.17.1/dbus/realmd.service.in0000644003225100322510000000026214046520517017550 0ustar00sbosesbose00000000000000[Unit] Description=Realm and Domain Configuration Documentation=man:realm(8) man:realmd.conf(5) [Service] Type=dbus BusName=org.freedesktop.realmd ExecStart=@libexecdir@/realmd