Move / test / fix migration for postgresql auth

This commit is contained in:
Alexandre Aubin 2019-08-24 18:14:16 +02:00
parent 2fc13a7af0
commit fcae50a6e0
2 changed files with 2 additions and 1 deletions

View file

@ -331,6 +331,7 @@
"migration_description_0009_decouple_regenconf_from_services": "Decouple the regen-conf mechanism from services",
"migration_description_0010_migrate_to_apps_json": "Remove deprecated appslists and use the new unified 'apps.json' list instead",
"migration_description_0011_setup_group_permission": "Setup user group and setup permission for apps and services",
"migration_description_0012_postgresql_password_to_md5_authentication": "Force postgresql authentication to use md5 for local connections",
"migration_0003_backward_impossible": "The stretch migration cannot be reverted.",
"migration_0003_start": "Starting migration to Stretch. The logs will be available in {logfile}.",
"migration_0003_patching_sources_list": "Patching the sources.lists…",

View file

@ -1,7 +1,7 @@
import glob
import re
from yunohost.tools import Migration
from moulinette.utils.filesystem import chown
from moulinette.utils.filesystem import read_file, write_to_file
class MyMigration(Migration):