Plone: load a single GenericSetup import step
Some times you only need to load a single import step in a Plone upgradestep and not the whole profile with all steps.
Usually you would do something like this, in your upgrade step:
def upgrade_to_1_1(context): loadMigrationProfile( context, 'profile-my.example:default' )
But if you only need to reload the rolemap config, you can also do:
def to_1200(context): loadMigrationProfile( context, 'profile-my.example:default', ['rolemap'] )