This file is indexed.

/usr/share/session-migration/scripts/01_migrate_from_keyring is in software-properties-gtk 0.96.24.32.1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Copyright (C) 2018 Canonical
#
# Authors:
#  Andrea Azzarone <andrea.azzarone@canonical.com>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; version 3.
#
# This program is distributed in the hope that it will be useful, but WITHOUTa
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

import gi
gi.require_version('Secret', '1')
from gi.repository import Gio, Secret

SECRETS_SCHEMA = Secret.Schema.new('com.ubuntu.SotwareProperties',
                                   Secret.SchemaFlags.NONE,
                                   {'key': Secret.SchemaAttributeType.STRING})

account_id = Secret.password_lookup_sync(SECRETS_SCHEMA, {'key': 'account-id'}, None)

if account_id:
    settings = Gio.Settings.new('com.ubuntu.SoftwareProperties')
    account_id = settings.set_string('goa-account-id', account_id)
    Gio.Settings.sync()