~ubuntu-branches/ubuntu/lucid/ebox-openvpn/lucid

« back to all changes in this revision

Viewing changes to src/EBox/OpenVPN/Server/ClientBundleGenerator/Linux.pm

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2008-02-27 13:31:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080227133129-6mpzfq43hghuxtaz
Tags: 0.11.99-0ubuntu1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
  return EBox::Config::tmp() . "/$serverName-client.tar.gz";
14
14
}
15
15
 
16
 
sub createBundleCmd
 
16
sub createBundleCmds
17
17
{
18
18
  my ($class, $bundleFile, $tmpDir) = @_;
19
 
  return "tar czf $bundleFile -C $tmpDir .";
 
19
  return (
 
20
          "tar czf $bundleFile -C $tmpDir ."
 
21
          );
20
22
}
21
23
 
22
24
sub confFileExtension