private void button_run_command_Click(object sender, EventArgs e)
        {
            string cmd = (string)text_command_console.Text.Clone();

            new Thread(() =>
            {
                _puppetMaster.RunCommand(cmd);
            }).Start();
            text_command_console.Text = "";
        }