Changing the spec file to use pkgcmd instead of xwalkctl 83/28183/1 accepted/tizen/ivi/20140930.184515 submit/tizen_ivi/20140929.232810
authorBrian Jones <brian.j.jones@intel.com>
Mon, 29 Sep 2014 23:16:22 +0000 (16:16 -0700)
committerBrian Jones <brian.j.jones@intel.com>
Mon, 29 Sep 2014 23:16:55 +0000 (16:16 -0700)
Change-Id: I61a4678fcaca55b75e410975f42f4b3756dbbe29

packaging/modello-installer.changes
packaging/modello-installer.spec

index 76163b7..7911bc2 100644 (file)
@@ -1,3 +1,6 @@
+* Mon Sep 29 2014 Brian Jones <brian.j.jones@intel.com> accepted/tizen/ivi/20140929.165736-1-gc797926
+- Changing the spec file to use pkgcmd instead of xwalkctl
+
 * Thu Sep 18 2014 Brian Jones <brian.j.jones@intel.com> accepted/tizen/ivi/20140818.070649-1-g37ab519
 - Updating packaging to remove hard coded paths
 
index 5bba456..8ce557a 100644 (file)
@@ -3,7 +3,7 @@
 
 Name:       Modello_Installer
 Summary:    Installer for Modello
-Version:    0.0.2
+Version:    0.0.3
 Release:    1
 Group:      Applications/System
 License:    Apache 2.0
@@ -47,7 +47,7 @@ for list in $(find $TZ_SYS_APP_PREINSTALL -name "Modello*")
 do
        #XWalk requires you not be root to install files
        echo "Installing $list"
-       su %{MODELLO_INSTALL_USER} -c "xwalkctl -i $list"
+       su %{MODELLO_INSTALL_USER} -c "pkgcmd -q -i -t wgt -p $list"
 done
 
 for list2 in $(ls -d $TZ_SYS_HOME/%{MODELLO_INSTALL_USER}/.config/xwalk-service/applications/*/)
@@ -65,10 +65,10 @@ source %_sysconfdir/tizen-platform.conf
 
 export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/5000/dbus/user_bus_socket"
 
-for list3 in $(su %{MODELLO_INSTALL_USER} -c "xwalkctl" | grep Modello | cut -c 1-32)
+for list3 in $(su %{MODELLO_INSTALL_USER} -c "xwalkctl" | grep Modello | cut -c 1-10)
 do
        echo "Uninstalling $list3"
-       su %{MODELLO_INSTALL_USER} -c "xwalkctl -u $list3"
+       su %{MODELLO_INSTALL_USER} -c "pkgcmd -q -u -n $list3"
 done
 
 #------------------------------------------------------------------------------------