From: Zbigniew Jędrzejewski-Szmek Date: Sat, 21 Mar 2020 10:17:30 +0000 (+0100) Subject: test/TEST-36: move the config files to /run X-Git-Tag: v246-rc1~682^2~29 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=534a42705b660f9c66a8dadfd127c381619f974b;p=thirdparty%2Fsystemd.git test/TEST-36: move the config files to /run This way we always start with a clean slate when running the test repeatedly. --- diff --git a/test/units/testsuite-36.sh b/test/units/testsuite-36.sh index bd04bb2efe6..d04751b3f07 100755 --- a/test/units/testsuite-36.sh +++ b/test/units/testsuite-36.sh @@ -22,7 +22,7 @@ journalLog='journal.log' # Systemd config files testUnit='numa-test.service' -testUnitFile="/etc/systemd/system/$testUnit" +testUnitFile="/run/systemd/system/$testUnit" testUnitNUMAConf="$testUnitFile.d/numa.conf" # Sleep constants (we should probably figure out something better but nothing comes to mind) @@ -70,9 +70,9 @@ writePID1NUMAPolicy() { } writeTestUnit() { + mkdir -p $testUnitFile.d/ echo [Service] > $testUnitFile echo ExecStart=/bin/sleep 3600 >> $testUnitFile - mkdir -p $testUnitFile.d/ } writeTestUnitNUMAPolicy() { @@ -129,7 +129,7 @@ systemctlCheckNUMAProperties() { writeTestUnit # Create systemd config drop-in directory -confDir="/etc/systemd/system.conf.d/" +confDir="/run/systemd/system.conf.d/" mkdir -p "$confDir" if ! checkNUMA; then