Meego Wiki
Views

Quality/QA-tools/OTS/UserDocumentation/Upgrading

From MeeGo wiki
(Difference between revisions)
Jump to: navigation, search
m (0.8.5 - 0.8.6)
(Upgrading OTS)
Line 3: Line 3:
== 0.8.5 - 0.8.6 ==
== 0.8.5 - 0.8.6 ==
* If you want to keep your old log database, add new (user_defined_id) column to the log_messages table
* If you want to keep your old log database, add new (user_defined_id) column to the log_messages table
 +
Run database command line interface for ots database. By default ots uses sqlite database at /opt/ots/ots.sqlite
 +
sudo sqlite3 /opt/ots/ots.sqlite
 +
Add new column to the log_messages table by executing following command:
  ALTER TABLE log_messages ADD COLUMN user_defined_id varchar(255) NOT NULL DEFAULT <nowiki>''</nowiki>;
  ALTER TABLE log_messages ADD COLUMN user_defined_id varchar(255) NOT NULL DEFAULT <nowiki>''</nowiki>;

Revision as of 05:28, 13 June 2011

Contents

Upgrading OTS

0.8.5 - 0.8.6

  • If you want to keep your old log database, add new (user_defined_id) column to the log_messages table

Run database command line interface for ots database. By default ots uses sqlite database at /opt/ots/ots.sqlite

sudo sqlite3 /opt/ots/ots.sqlite

Add new column to the log_messages table by executing following command:

ALTER TABLE log_messages ADD COLUMN user_defined_id varchar(255) NOT NULL DEFAULT '';

0.8.4 - 0.8.5

  • Rich-core conductor plug-in available
    • Changes to /etc/conductor.conf
    • New configuration file for plug-in: /etc/ots_plugin_conductor_richcore.conf

0.8.3 - 0.8.4

  • Backup all configuration files before updating
  • Multiple device support added, even if you use only one device check following:
    • Changes to /etc/conductor.conf
    • Update meego-ai-flasher (>= 0.1.4) and meego-ai packages!
    • Even if you use only one device, remove usb0 configurations from /etc/network/interfaces
    • See this instructions!
  • Changes to QAReports configuration file /etc/ots_plugins_qareports.conf
    • Added proxy and attachment upload settings

0.8.2 - 0.8.3

  • Changes in ots_plugin_qareports.conf
    • Add new parameters
  • Only new features
    • Test plan based execution
    • Chroot support
    • See how to use these features

0.8.1 - 0.8.2

0.8.0 - 0.8.1

  • Plug-in namespace changed, effects to Logger and QA-Reports plug-ins
    • For logger update web page content, see step 8 from Logger documentation.
    • For QA-Reports, configuration file name has changed. Move /etc/ots_qareports_plugin.conf to /etc/ots_plugin_qareports.conf

0.1.x - 0.8.0

See migration document.

Personal tools