From 52b3a543848808fe89df0868edbbd4e46cd9c1e3 Mon Sep 17 00:00:00 2001 From: Patrick Linstruth Date: Wed, 10 Oct 2018 19:14:58 -0700 Subject: [PATCH 1/3] Changed restart instructions from /etc/init.d/rivendell to systemctl --- rdadmin/edit_rdpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdadmin/edit_rdpanel.cpp b/rdadmin/edit_rdpanel.cpp index 85751216..c6c9a97e 100644 --- a/rdadmin/edit_rdpanel.cpp +++ b/rdadmin/edit_rdpanel.cpp @@ -340,7 +340,7 @@ EditRDPanel::EditRDPanel(RDStation *station,RDStation *cae_station, } else { QMessageBox::information(this,tr("No Audio Configuration Data"), - tr("Channel assignments will not be available for this host, as audio resource data\nhas not yet been generated. Please start the Rivendell daemons on this host\n(by executing, as user 'root', the command \"/etc/init.d/rivendell start\")\nin order to populate the audio resources database.")); + tr("Channel assignments will not be available for this host, as audio resource data\nhas not yet been generated. Please start the Rivendell daemons on this host\n(by executing, as user 'root', the command \"systemctl start rivendell\")\nin order to populate the audio resources database.")); for(int i=0;i<6;i++) { air_card_sel[i]->setDisabled(true); } From 75c7a21c7aea68464667f337b9c66d4ad7eaebdc Mon Sep 17 00:00:00 2001 From: Patrick Linstruth Date: Wed, 10 Oct 2018 19:21:39 -0700 Subject: [PATCH 2/3] Changed /etc/init.d/rivendell to systemctl --- rdadmin/view_adapters.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdadmin/view_adapters.cpp b/rdadmin/view_adapters.cpp index e3dba286..fdb06949 100644 --- a/rdadmin/view_adapters.cpp +++ b/rdadmin/view_adapters.cpp @@ -151,7 +151,7 @@ ViewAdapters::ViewAdapters(RDStation *rdstation,QWidget *parent) } else { text=tr("NO DATA AVAILABLE\n\n"); - text+=tr("Please start the Rivendell daemons on this host (by executing, as user 'root', the command \"/etc/init.d/rivendell start\") in order to populate the audio resources database."); + text+=tr("Please start the Rivendell daemons on this host (by executing, as user 'root', the command \"systemctl start rivendell\") in order to populate the audio resources database."); } text_edit->setText(text); From d7518d729044a2e7f00c1bce0d57eb136db468f3 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Tue, 16 Oct 2018 20:05:25 -0400 Subject: [PATCH 3/3] 2018-10-16 Patrick Linstruth * Updated instructions in the 'Audio Resources' dialog in rdadmin(1) to reflect the transition to Systemd. --- ChangeLog | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index 6d5645fe..983dbcff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17795,3 +17795,6 @@ 2018-10-16 Patrick Linstruth * Fixed a bug that caused the build to break when M4A decoding support was enabled. +2018-10-16 Patrick Linstruth + * Updated instructions in the 'Audio Resources' dialog in rdadmin(1) + to reflect the transition to Systemd.