This file is indexed.

/usr/lib/python2.7/dist-packages/ubuntu-sso-client/ubuntu_sso/networkstate/tests/run_nwmgr_standalone.py is in python-ubuntu-sso-client.tests 13.10-0ubuntu11.

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

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
35
36
37
38
39
40
# -*- coding: utf-8 -*-
#
# Copyright 2012 Canonical Ltd.
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3, as published
# by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY, 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, see <http://www.gnu.org/licenses/>.
"""
A test script to start a NetworkManagerState instance and print out
the current actual state of the system.
"""

from __future__ import print_function

from ubuntu_sso.networkstate import (NetworkManagerState,
                                     is_machine_connected)


def my_cb(state):
    """simple callback just prints state"""
    print("login.ubuntu.com:", state)

if __name__ == '__main__':
    # test once with direct call:
    is_machine_connected().addCallback(my_cb)

    NMS = NetworkManagerState(my_cb)

    NMS.find_online_state()

    import time
    time.sleep(60)