~ubuntu-branches/ubuntu/dapper/openssh/dapper

« back to all changes in this revision

Viewing changes to debian/openssh-client.config

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2004-10-07 18:03:06 UTC
  • Revision ID: james.westby@ubuntu.com-20041007180306-0l8ii961txetbucx
Tags: 1:3.8.1p1-11ubuntu3
* Nathaniel McCallum:
  - debian/openssh-server.init: pretty initscript
  - debian/control: versioned depend on lsb-base

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
action=$1
 
4
version=$2
 
5
 
 
6
if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then
 
7
  version=1.2.27
 
8
  cp -a /etc/ssh-nonfree /etc/ssh
 
9
fi
 
10
 
 
11
# Source debconf library.
 
12
. /usr/share/debconf/confmodule
 
13
db_version 2.0
 
14
 
 
15
db_input medium ssh/SUID_client || true
 
16
 
 
17
db_go
 
18
 
 
19
exit 0