()
| 8 | public partial class ServiceStatus : Form |
| 9 | { |
| 10 | public ServiceStatus() |
| 11 | { |
| 12 | InitializeComponent(); |
| 13 | |
| 14 | try { |
| 15 | ServiceController sc = new ServiceController("icinga2"); |
| 16 | |
| 17 | txtStatus.Text = sc.Status.ToString(); |
| 18 | } catch (InvalidOperationException) { |
| 19 | txtStatus.Text = "Not Available"; |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | private void btnReconfigure_Click(object sender, EventArgs e) |
| 24 | { |