b10be90b6582b90e7f592eacc46cb6ebe61ac019
[sfa.git] / setup.py
1 #!/usr/bin/python
2
3 """
4 Installation script for the sfa module
5 """
6
7 import sys, os, os.path
8 from glob import glob
9 import shutil
10 from distutils.core import setup
11
12 bins = [ 
13     'config/sfa-config-tty',
14     'config/gen-sfa-cm-config.py',
15     'sfa/plc/sfa-import-plc.py', 
16     'sfa/plc/sfa-nuke-plc.py', 
17     'sfa/server/sfa-ca.py', 
18     'sfa/server/sfa-server.py', 
19     'sfa/server/sfa-clean-peer-records.py', 
20     'sfa/server/sfa_component_setup.py', 
21     'sfa/client/sfi.py', 
22     'sfa/client/getNodes.py',
23     'sfa/client/getRecord.py',
24     'sfa/client/setRecord.py',
25     'sfa/client/sfadump.py',
26     'sfa/client/sfiListNodes.py',
27     'sfa/client/sfiListSlivers.py',
28     'sfa/client/sfiAddSliver.py',
29     'sfa/client/sfiDeleteSliver.py',
30     'sfa/client/sfiAddAttribute.py',
31     'sfa/client/sfiDeleteAttribute.py',
32     'sfatables/sfatables',
33     'keyconvert/keyconvert.py',
34     'flashpolicy/sfa_flashpolicy.py',
35     ]
36
37 package_dirs = [
38     'sfa', 
39     'sfa/client',
40     'sfa/methods',
41     'sfa/plc',
42     'sfa/server',
43     'sfa/trust',
44     'sfa/util', 
45     'sfa/managers',
46     'sfa/managers/vini',
47     'sfa/rspecs',
48     'sfa/rspecs/elements',
49     'sfa/rspecs/elements/versions',
50     'sfa/rspecs/versions',
51     'sfatables',
52     'sfatables/commands',
53     'sfatables/processors',
54     'flashpolicy',
55     ]
56
57
58 data_files = [('/etc/sfa/', [ 'config/aggregates.xml',
59                               'config/registries.xml',
60                               'config/default_config.xml',
61                               'config/sfi_config',
62                               'sfa/managers/pl/pl.rng',
63                               'sfa/trust/credential.xsd',
64                               'sfa/trust/top.xsd',
65                               'sfa/trust/sig.xsd',
66                               'sfa/trust/xml.xsd',
67                               'sfa/trust/protogeni-rspec-common.xsd',
68                               'flashpolicy/sfa_flashpolicy_config.xml',
69                             ]),
70               ('/etc/sfatables/matches/', glob('sfatables/matches/*.xml')),
71               ('/etc/sfatables/targets/', glob('sfatables/targets/*.xml')),
72               ('/etc/init.d/', ['sfa/init.d/sfa', 'sfa/init.d/sfa-cm'])]
73
74 # add sfatables processors as data_files
75 processor_files = [f for f in glob('sfatables/processors/*') if os.path.isfile(f)]
76 data_files.append(('/etc/sfatables/processors/', processor_files))
77 processor_subdirs = [d for d in glob('sfatables/processors/*') if os.path.isdir(d)]
78 for d in processor_subdirs:
79     etc_dir = os.path.join("/etc/sfatables/processors", os.path.basename(d))
80     d_files = [f for f in glob(d + '/*') if os.path.isfile(f)]
81     data_files.append((etc_dir, processor_files))
82
83 initscripts = [ '/etc/init.d/sfa', '/etc/init.d/sfa-cm' ]
84
85 if sys.argv[1] in ['uninstall', 'remove', 'delete', 'clean']:
86     python_path = sys.path
87     site_packages_path = [ os.path.join(p,'sfa') for p in python_path if p.endswith('site-packages')]
88     site_packages_path += [ os.path.join(p,'sfatables') for p in python_path if p.endswith('site-packages')]
89     remove_dirs = ['/etc/sfa/', '/etc/sfatables'] + site_packages_path
90     remove_bins = [ '/usr/bin/' + os.path.basename(bin) for bin in bins ]
91     remove_files = remove_bins + initscripts
92
93     # remove files   
94     for filepath in remove_files:
95         print "removing", filepath, "...",
96         try: 
97             os.remove(filepath)
98             print "success"
99         except: print "failed"
100     # remove directories 
101     for directory in remove_dirs: 
102         print "removing", directory, "...",
103         try: 
104             shutil.rmtree(directory)
105             print "success"
106         except: print "failed"
107 else:
108     # avoid repeating what's in the specfile already
109     setup(name='sfa',
110           packages = package_dirs, 
111           data_files = data_files,
112           ext_modules = [],
113           py_modules = [],
114           scripts = bins)
115