Custom Query (981 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 981)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#527 fixed tools/upgrade is broken davea Nicolas
Description

./tools/upgrade is now telling me install_boinc_files requires two arguments and only one is being passed. I tracked this down to [14437], where the argument was added. I modified the upgrade script myself to pass that second argument as False and it worked (after trial and error, and figuring out Python needs it with capital letter).

Does Python have optional arguments?

#769 fixed tools/upgrade gives an error when trying to update the database davea Nicolas
Description

I get the following error when trying to run the upgrade tool:

sh: upgrade_db.php: not found

The bug seems to have been introduced in [16160].

Simple fix:

  • tools/upgrade

     
    6969except:
    7070    print '''Couldn't find svnversion'''
    7171
    72 os.system('cd '+INSTALL_DIR+'/html/ops; upgrade_db.php')
     72os.system('cd '+INSTALL_DIR+'/html/ops; ./upgrade_db.php')
    7373
    7474print "Run `bin/start' to restart the project."
#968 fixed tools/upgrade --server_only option davea Eric Myers
Description

Right now the tools/upgrade script has a --web_only option to allow projects to upgrade just the web server code, leaving the project server stuff in place. This makes it easier to upgrade when a problem crops up (eg security issue) without worrying about custom changes to the server configuration.

I suggest there should also be a --server_only option to just upgrade the server components, leaving the web stuff alone. This would make it easier for projects to upgrade when there are problems with server code (eg. recent RPC vulnerability) without worrying about having to make changes to the PHP server code.

Note also that --web_only updates the python stuff, which might properly be considered "server" stuff rather than "web" stuff. But I don't know if it would break anything to not update the python stuff for --web_only.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Note: See TracQuery for help on using queries.