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

« back to all changes in this revision

Viewing changes to debian/patches/05_fix_event_link.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2008-03-24 09:45:27 UTC
  • Revision ID: james.westby@ubuntu.com-20080324094527-pgcsk5uqbjd82dag
Tags: 0.11.99-0ubuntu4
* debian/patches/04_fix_disable_log_daemon.dpatch
  - Disable log daemon if requested by user
* debian/patches/05_fix_event_link.dpatch
  - Fix symlink creation.
* debian/patches/06_reduce_rss_items.dpatch
  - Reduce the number of RSS entries to 500.
* debian/patches/07_intialise_log_statement.dpatch 
  - Fix log queries.
* debian/ebox.cron.hourly
  - Install in the right place.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
-                      symlink ( $filePath, $dir . '/' . $element . '.pm' )
18
18
+                       my $dest = "$dir/$element.pm";
19
19
+                       next if ( -l $dest );
20
 
+                       symlink ( $filePath, $dest ) 
 
20
+                       symlink ( $filePath, $dest )
21
21
                         or throw EBox::Exceptions::Internal("Cannot copy from $filePath to $dir");
22
22
                   } else {
23
23
                       ($element) = $element =~ m/^.*::(.*)$/;