φ(.. )メモシテオコウ autotestでサービスへのsymlink作るのを適当に止めとく

autotest動かしたときに/etc/rc.d/init.d/autotestと/etc/rc5.d/S99autotestのリンクが作られるのもあんまりうれしくないので適当にコメントアウトというだけの単なるメモ。

diff --git a/client/harness_standalone.py b/client/harness_standalone.py
index 5180595..0962294 100644
--- a/client/harness_standalone.py
+++ b/client/harness_standalone.py
@@ -73,6 +73,9 @@ class harness_standalone(harness.harness):
         else:
             initdefault = yield_default_initlevel()

+        """
+        Do not create symlink
+
         vendor = utils.get_os_vendor()
         service = '/etc/init.d/autotest'
         if vendor == 'SUSE':
@@ -88,3 +91,5 @@ class harness_standalone(harness.harness):
             os.symlink(rc, service_link)
         except (OSError, IOError):
             logging.info("Could not symlink init scripts (lack of permissions)"
)
+        """
+