Last change
on this file since 3029 was
1814,
checked in by broder, 16 years ago
|
Move invirt-console/files to invirt-console/server
|
-
Property svn:executable set to
*
|
File size:
429 bytes
|
Rev | Line | |
---|
[672] | 1 | #!/usr/bin/python |
---|
| 2 | import sys |
---|
| 3 | import os |
---|
| 4 | import subprocess |
---|
| 5 | |
---|
| 6 | def main(args): |
---|
| 7 | contents = args[2] |
---|
| 8 | hostname = os.environ['REMOTE_HOST'].lower() |
---|
| 9 | f = file('/etc/conserver/conf.d/'+hostname, 'w') |
---|
| 10 | f.write(contents) |
---|
| 11 | f.close() |
---|
[1512] | 12 | p = subprocess.Popen(['/usr/sbin/invoke-rc.d', 'conserver-server', 'reload'], |
---|
[672] | 13 | stdout=subprocess.PIPE) |
---|
| 14 | p.wait() |
---|
| 15 | return 0 |
---|
| 16 | |
---|
| 17 | if __name__ == '__main__': |
---|
| 18 | sys.exit(main(sys.argv)) |
---|
Note: See
TracBrowser
for help on using the repository browser.