This file is indexed.

/usr/bin/flumotion-admin-text is in flumotion 0.10.0-3.

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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#! /usr/bin/python
# -*- Mode: Python -*-
# vi:si:et:sw=4:sts=4:ts=4

# Flumotion - a streaming media server
# Copyright (C) 2004,2005,2006,2007,2008,2009 Fluendo, S.L.
# Copyright (C) 2010,2011 Flumotion Services, S.A.
# All rights reserved.
#
# This file may be distributed and/or modified under the terms of
# the GNU Lesser General Public License version 2.1 as published by
# the Free Software Foundation.
# This file is distributed without any warranty; without even the implied
# warranty of merchantability or fitness for a particular purpose.
# See "LICENSE.LGPL" in the source distribution for more information.
#
# Headers in this file shall remain intact.


import os
import sys

if not '@PYGTK_DIR@' in sys.path:
    sys.path.insert(0, '@PYGTK_DIR@')

import warnings
warnings.filterwarnings('ignore', category=UserWarning)

dir = os.path.dirname(os.path.abspath(__file__))
if os.path.exists(os.path.join(dir, '..', 'flumotion', '.svn')) or \
   os.path.exists(os.path.join(dir, '..', '.git')):
    root = os.path.split(dir)[0]
else:
    root = os.path.join('/usr/lib', 'flumotion', 'python')
sys.path.insert(0, root)

# remove flumotion.component and flumotion.ui from our namespace and import,
# since it should be handled by bundles completely
# FIXME: this should be done correctly by separating source
import flumotion.component
flumotion.component.__path__ = []
#import flumotion.ui
#flumotion.ui.__path__ = []

from flumotion.common import errors, setup
from flumotion.admin.text.main import main

if __name__ == '__main__':
    setup.setup()

    try:
        sys.exit(main(sys.argv))
    except errors.SystemError, e:
        print 'ERROR:', e