summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2009-03-31 15:08:53 +0200
committerOliver Tappe2009-03-31 15:08:53 +0200
commit51779abef3b3cabff3e4d38682179a19ed801bc0 (patch)
tree142ec1e39d432a75a17fe0e43c5747ae6807aba7 /config-db
parentFixing problems with gdm running on AUFS/UnionFS (/var/lib/gdm). (diff)
downloadcore-51779abef3b3cabff3e4d38682179a19ed801bc0.tar.gz
core-51779abef3b3cabff3e4d38682179a19ed801bc0.tar.xz
core-51779abef3b3cabff3e4d38682179a19ed801bc0.zip
* minor fix: skip check for uclibrootfs-version if slxversion produces
a modified version (something ending in 'M'), since that usually indicates local development taking place - let's hope this does not hide any problems ... git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2774 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rwxr-xr-xconfig-db/slxconfig-demuxer2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-db/slxconfig-demuxer b/config-db/slxconfig-demuxer
index fe8df03e..b3d597e5 100755
--- a/config-db/slxconfig-demuxer
+++ b/config-db/slxconfig-demuxer
@@ -630,7 +630,7 @@ sub writeSystemConfiguration
chomp(my $uclibcVersion
= slurpFile($uclibcVersionPath, { failIfMissing => 0 } ));
chomp(my $currVersion = qx{slxversion});
- if ($uclibcVersion ne $currVersion) {
+ if ($currVersion !~ m{M$} && $uclibcVersion ne $currVersion) {
warn _tr(
"uclibc-rootfs for system '%s' may not be up-to-date - consider updating the vendor-OS!",
$info->{name}, $uclibcVersion, $currVersion