Ticket #1483913 (new Feature Requests)

Opened 2 years ago

Last modified 5 weeks ago

Update script

Reported by: thomasb Owned by:
Priority: 5 Milestone: 0.2-stable
Component: Core functionality Version: 0.1-beta
Severity: normal Keywords:
Cc:

Description

Implement a script to update a current RoundCube installation. See http://lists.roundcube.net/mail-archive/roundcube.dev/2006/06/8/

Change History

  Changed 21 months ago by thomasb

  • milestone changed from 0.1-rc1 to 0.2-beta

  Changed 21 months ago by thomasb

  • milestone changed from 0.2-beta to 0.1.5

follow-up: ↓ 4   Changed 8 months ago by seansan

I use a shell script that works fine

#/bin/sh
rm RC_latest.zip
wget "http://trac.roundcube.net/changeset/latest/trunk/?old_path=%2F&format=zip" -O RC_latest.zip
unzip -o RC_latest.zip
rm RC_latest.zip
clear
ls
echo
echo "Latest roundcube version from SVN trunk downloaded and installed (version-number-here)"
echo

in reply to: ↑ 3   Changed 8 months ago by seansan

Only miss is that new config options are not taken into account.

Replying to seansan:

I use a shell script that works fine {{{ #/bin/sh rm RC_latest.zip wget "http://trac.roundcube.net/changeset/latest/trunk/?old_path=%2F&format=zip" -O RC_latest.zip unzip -o RC_latest.zip rm RC_latest.zip clear ls echo echo "Latest roundcube version from SVN trunk downloaded and installed (version-number-here)" echo }}}

  Changed 8 months ago by jpingle

Many default installs might not have wget or unzip installed, either. Plus, if this is being called from the web somehow, you might have some path issues executing programs without explicitly setting a safe PATH variable or using full pathnames.

  Changed 5 months ago by anonymous

  • milestone deleted

Milestone 0.1.5 deleted

  Changed 5 weeks ago by alec

  • milestone set to later

  Changed 5 weeks ago by thomasb

  • milestone changed from later to 0.2-stable
Note: See TracTickets for help on using tickets.