summaryrefslogtreecommitdiffstats
path: root/postgresql-tests/gen-data/tasks/templates/locale-change.sh
blob: 8f7964fd2368449593f393fb83b5468bec37033f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
hook_start()
{
    export CHECK_LOCALE=0
    ___old_locale="$(cat /etc/locale.conf)"
    echo "$___new_locale" > /etc/locale.conf
}

hook_end()
{
    echo "$___old_locale" > /etc/locale.conf
}

run()
{
    create_pagila
}