diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-06-23 21:26:08 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-06-23 21:26:08 -0500 |
commit | 993d5eec1d22730b6e01f1d62551167cb6064c68 (patch) | |
tree | 37ce99f47012f8e708ac49a205cc205eb5674a49 | |
parent | 560961dc99322aeedd245764dff41624d4d0eb4a (diff) | |
download | horizon-993d5eec1d22730b6e01f1d62551167cb6064c68.tar.gz horizon-993d5eec1d22730b6e01f1d62551167cb6064c68.tar.bz2 horizon-993d5eec1d22730b6e01f1d62551167cb6064c68.tar.xz horizon-993d5eec1d22730b6e01f1d62551167cb6064c68.zip |
Qt UI: Enable udev services when using udev
-rw-r--r-- | ui/qt5/horizonwizard.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc index 4b147e5..fde0549 100644 --- a/ui/qt5/horizonwizard.cc +++ b/ui/qt5/horizonwizard.cc @@ -652,8 +652,11 @@ QString HorizonWizard::toHScript() { if(this->eudev) { lines << "pkginstall eudev"; + lines << "svcenable udev boot"; + lines << "svcenable udev-trigger boot"; } else { lines << "pkginstall mdevd"; + lines << "svcenable mdevd boot"; } lines << "pkginstall sysklogd"; |