diff options
author | Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com> | 2012-10-04 17:25:13 -0700 |
---|---|---|
committer | Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com> | 2012-10-04 18:31:59 -0700 |
commit | 795a693484977bc0b8159d54d9a8044f5010d03b (patch) | |
tree | 2d1c1654a3da7d35fce08136f2b5bf96d488a29c | |
parent | 224788fff7997db29bc5a6288351c585b3d81c58 (diff) | |
download | ivi-demo-config-795a693484977bc0b8159d54d9a8044f5010d03b.tar.gz ivi-demo-config-795a693484977bc0b8159d54d9a8044f5010d03b.tar.bz2 ivi-demo-config-795a693484977bc0b8159d54d9a8044f5010d03b.zip |
Fix machine-info file (use correct PRETTY_HOSTNAME)submit/trunk/20121005.013652accepted/trunk/20121005.011933
Change-Id: I3ed52b02e74420cb7393096ecf2f185434132692
-rw-r--r-- | packaging/ivi-demo-config.spec | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packaging/ivi-demo-config.spec b/packaging/ivi-demo-config.spec index f55d9ef..d340f9e 100644 --- a/packaging/ivi-demo-config.spec +++ b/packaging/ivi-demo-config.spec @@ -2,7 +2,7 @@ Name: ivi-demo-config Summary: Custom configs for Tizen IVI demos Version: 0.0.3 Release: 1 -Group: System/Libraries +Group: System Environment/Libraries License: Apache License, Version 2.0 URL: http://www.tizen.org Source0: xorg-dual.conf @@ -41,9 +41,9 @@ install -m 755 %{SOURCE3} %{buildroot}%{_libdir}/automotive-message-broker/scrip # Create a new machine-info file in order to have a friendly name #!/bin/bash if [ ! -e %{_sysconfdir}/machine-info ]; then - HOST_ID=$(hostid) - cat > %{_sysconfdir}/machine-info <<EOF -PRETTY_NAME=Tizen IVI $HOST_ID + HOST_ID=$(hostid) + cat > %{_sysconfdir}/machine-info <<EOF +PRETTY_HOSTNAME=Tizen IVI ($HOST_ID) ICON_NAME=Tizen IVI EOF fi |