running accessors before db not working (misses admin account)
[plcapi.git] / plc.d / accessors
diff --git a/plc.d/accessors b/plc.d/accessors
deleted file mode 100755 (executable)
index 1695f60..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/python /usr/bin/plcsh
-# -*- python -*-
-
-#
-# run this before the 'db' step
-# various object creation functions might depend
-# on the tagtype being created, like
-# 'vref' and 'initscript' for slices, and possibly more
-#
-# priority: 899
-#
-
-from PLC.Accessor import AccessorSingleton
-
-if __name__ == '__main__':
-    print "service plc start accessors : ensuring creation and consistency of accessor tags"
-    AccessorSingleton(api).run_all_tag_locators()
-