summaryrefslogtreecommitdiffstats
path: root/os-plugins
diff options
context:
space:
mode:
authorOliver Tappe2008-04-07 21:53:30 +0200
committerOliver Tappe2008-04-07 21:53:30 +0200
commit8595479dee270212ef6f4b850a0655ddba86229c (patch)
tree9ae06c82c4fa6e02df19aac33665be20270476a7 /os-plugins
parent* avoid use of temporary file in copyRequiredFilesIntoInitramfs (diff)
downloadcore-8595479dee270212ef6f4b850a0655ddba86229c.tar.gz
core-8595479dee270212ef6f4b850a0655ddba86229c.tar.xz
core-8595479dee270212ef6f4b850a0655ddba86229c.zip
* fixed my last change, used wrong target path for splashy config
* on behalf of Michael: splashy.stop now tries to remove itself during execution (untested) git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1727 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins')
-rw-r--r--os-plugins/plugins/bootsplash/OpenSLX/OSPlugin/bootsplash.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/os-plugins/plugins/bootsplash/OpenSLX/OSPlugin/bootsplash.pm b/os-plugins/plugins/bootsplash/OpenSLX/OSPlugin/bootsplash.pm
index ad5596a9..0d2b566d 100644
--- a/os-plugins/plugins/bootsplash/OpenSLX/OSPlugin/bootsplash.pm
+++ b/os-plugins/plugins/bootsplash/OpenSLX/OSPlugin/bootsplash.pm
@@ -121,7 +121,8 @@ sub copyRequiredFilesIntoInitramfs
my $makeInitRamFSEngine = shift;
my $bootsplashDir = "$openslxConfig{'base-path'}/lib/plugins/bootsplash";
- my $bootsplashConfigDir = "$openslxConfig{'config-path'}/plugins/bootsplash";
+ my $bootsplashConfigDir
+ = "$openslxConfig{'config-path'}/plugins/bootsplash";
my $bootsplashTheme = $attrs->{'bootsplash::theme'} || '';
my $splashyThemeDir = '';
@@ -161,7 +162,7 @@ sub copyRequiredFilesIntoInitramfs
</splashy>
End-of-Here
$makeInitRamFSEngine->addCMD( {
- file => "$bootsplashConfigDir/config.xml",
+ file => "$targetPath/etc/splashy/config.xml",
content => $splashyConfig,
} );
}