diff options
author | Slater, Joseph <joe.slater@windriver.com> | 2018-05-01 16:15:03 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-05-17 08:19:21 -0700 |
commit | 1ec2d489c30bf14f2bc6e8bbc01e642a065b7ac6 (patch) | |
tree | 2447c33e7d65ee3a9b61be0b3698ce0398ae861f | |
parent | e3ba2f061ea4f9320cffcbd634ff0c7da391d94e (diff) | |
download | meta-openembedded-1ec2d489c30bf14f2bc6e8bbc01e642a065b7ac6.tar.gz |
phoronix-test-suite: disable systemd services by default
Unfortunately, the default behavior for at least the client service is to
reboot the machine if it encounters problems. Since it is pretty
much guaranteed to need target specific configuration info, we
should not enable the service(s) by default.
Signed-off-by: Joe Slater <joe.slater@windriver.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_7.8.0.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_7.8.0.bb b/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_7.8.0.bb index b2058212e..1f90a7125 100644 --- a/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_7.8.0.bb +++ b/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_7.8.0.bb | |||
@@ -23,7 +23,12 @@ do_install() { | |||
23 | fi | 23 | fi |
24 | } | 24 | } |
25 | 25 | ||
26 | # It is not advisable to enable these services by default since they can cause | ||
27 | # continual target reboots if they encounter network problems. | ||
28 | # | ||
29 | SYSTEMD_AUTO_ENABLE = "disable" | ||
26 | SYSTEMD_SERVICE_${PN} = "phoromatic-client.service phoromatic-server.service" | 30 | SYSTEMD_SERVICE_${PN} = "phoromatic-client.service phoromatic-server.service" |
31 | |||
27 | RDEPENDS_${PN} += "bash python php-cli" | 32 | RDEPENDS_${PN} += "bash python php-cli" |
28 | 33 | ||
29 | FILES_${PN} += " \ | 34 | FILES_${PN} += " \ |