Lines Matching refs:store

57 def copy_module(store, name, base):  argument
66 root = oldstore_path(store)
68 root = oldmodules_path(store)
70 bottomdir = bottomdir_path(store)
91 def migrate_store(store): argument
93 oldstore = oldstore_path(store);
94 oldmodules = oldmodules_path(store);
95 disabledmodules = disabledmodules_path(store);
96 newstore = newstore_path(store);
97 newmodules = newmodules_path(store);
98 bottomdir = bottomdir_path(store);
103 create_dir("%s/%s" % (newroot_path(), store), 0o755)
110 copy_module(store, "base.pp", 1)
135 copy_module(store, name, 0)
185 def oldstore_path(store): argument
186 return "%s/%s/modules/active" % (oldroot_path(), store)
188 def oldmodules_path(store): argument
189 return "%s/modules" % oldstore_path(store)
191 def disabledmodules_path(store): argument
192 return "%s/disabled" % newmodules_path(store)
197 def newstore_path(store): argument
198 return "%s/%s/active" % (newroot_path(), store)
200 def newmodules_path(store): argument
201 return "%s/modules" % newstore_path(store)
203 def bottomdir_path(store): argument
204 return "%s/%s" % (newmodules_path(store), PRIORITY)
227 TYPE = options.store
258 for store in stores:
259 if not os.path.isdir(oldmodules_path(store)):
263 if os.path.isdir(newstore_path(store)):
265 …been migrated, but modules still exist in the old store. Skipping store." % store, file=sys.stderr)
268 migrate_store(store)
272 …remove old store modules directory %s. Cleaning failed." % oldmodules_path(store), file=sys.stderr)
273 shutil.rmtree(oldmodules_path(store), onerror=remove_error)