Author: Paul_R Date: 2008-09-22 08:57:08 +0200 (Mon, 22 Sep 2008) New Revision: 1941
Modified: software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/postinst software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/updater/tux_updater software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/Makefile Log: * Fixed bug #57 from http://www.tuxisalive.com/developers/tracker/ I've removed all the references to gksu or kdesu. Directory /opt/tuxdroid/controlcenter has now a permission of 1777, to be able to update the cc without being root. Modified: software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/postinst =================================================================== --- software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/postinst 2008-09-19 16:14:16 UTC (rev 1940) +++ software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/postinst 2008-09-22 06:57:08 UTC (rev 1941) @@ -6,7 +6,7 @@ chmod +x /opt/tuxdroid/bin/* update-rc.d tuxhttpserver defaults >/dev/null /etc/init.d/tuxhttpserver start -chmod 777 /opt/tuxdroid/controlcenter +chmod 1777 /opt/tuxdroid/controlcenter if [ $USER == "root" ]; then echo "" echo "================================================================================" Modified: software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/updater/tux_updater =================================================================== --- software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/updater/tux_updater 2008-09-19 16:14:16 UTC (rev 1940) +++ software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/updater/tux_updater 2008-09-22 06:57:08 UTC (rev 1941) @@ -247,19 +247,7 @@ ############################### MAIN FUNCTION ############################### disp_header OPDIR=`pwd` -gksu -v 2>/dev/null>/dev/null -if [ $? != 127 ]; then - GKSU=gksu -else - kdesu -v 2>/dev/null>/dev/null - if [ $? != 127 ]; then - GKSU=kdesu - else - echo kdesu or gksu not found. Quit. - exit 0 - fi -fi - + updateUserDirectory dspUpdFooter Modified: software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/Makefile =================================================================== --- software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/Makefile 2008-09-19 16:14:16 UTC (rev 1940) +++ software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/Makefile 2008-09-22 06:57:08 UTC (rev 1941) @@ -2,7 +2,7 @@ @echo Usage make install; make uninstall install: @cp -rf ./mirror/* / - @chmod 777 /opt/tuxdroid/controlcenter/ + @chmod 1777 /opt/tuxdroid/controlcenter/ @cp python_api/setup.py . @cp -rf python_api/tuxisalive/ . @python setup.py install ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Tux-droid-svn mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/tux-droid-svn
