g_warning ("Errore durante il cambio della password: impossibile ottenere l'host.");
return user_dn;
}
- host_ssh = parts[3]; g_message("HOST SSH: %s",host_ssh);
+ host_ssh = parts[3];
+ /*g_message("HOST SSH: %s",host_ssh);*/
if (ssh_options_set (session, SSH_OPTIONS_HOST, host_ssh) < 0)
{
ssh_disconnect (session);
return user_dn;
}
- gchar *command = g_strdup_printf ("echo -e \\\"%s\\n\\\" | sudo -S -s \"echo -e \\\"%s\\n%s\\\" | /usr/sbin/smbldap-passwd \\\"%s\\\"\"", password, password_nuova, password_nuova, utente);
- g_message ("COMMAND: %s", command);
+ gchar *command = g_strdup_printf ("echo -e \"%s\\n\" | sudo -k -S echo -e \"%s\\\\n%s\\\\n\" | sudo /usr/sbin/smbldap-passwd \"%s\"", password, password_nuova, password_nuova, utente);
+ /*g_message ("COMMAND: %s", command);*/
rc = channel_request_exec (channel, command);
if (rc < 0)
{
rc = channel_read (channel, buf, sizeof (buf), 0);
if (rc > 0)
{
- fwrite (buf, 1, rc, stdout);
+ /*fwrite (buf, 1, rc, stdout);*/
}
}
} while (rc > 0);