~ubuntu-branches/ubuntu/oneiric/ajaxterm/oneiric

« back to all changes in this revision

Viewing changes to configure

  • Committer: Bazaar Package Importer
  • Author(s): Julien Valroff
  • Date: 2008-03-02 09:24:28 UTC
  • mfrom: (2.1.3 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080302092428-vblu3yutpry9ub13
Tags: 0.10-2
* Added patch to allow use a different port than 22 to connect to the
  ssh server.
  Thanks to Wolf Wiegand <wolf@kondancemilch.de> (Closes: #455245)
* Updated README.Debian to state proxy_http is required (and not only
  proxy). Thanks to sp <analogue@yahoo.com> (Closes: #468582)
* Added watch file
* Moved Homepage to own field (from pseudo-field in long description)
* Added Vcs-* fields
* Added XS-DM-Upload-Allowed field
* Bumped to new standards version 3.7.3 (no changes needed)
* Fixed Python capitalisation in description

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
if os.path.isfile("/etc/gentoo-release"):
25
25
        file("ajaxterm.initd","w").write(file("configure.initd.gentoo").read()%locals())
 
26
elif os.path.isfile("/etc/fedora-release") or os.path.isfile("/etc/redhat-release"):
 
27
        file("ajaxterm.initd","w").write(file("configure.initd.redhat").read()%locals())
26
28
else:
27
29
        file("ajaxterm.initd","w").write(file("configure.initd.debian").read()%locals())
28
30