Changes between Version 106 and Version 107 of PuffinServer


Ignore:
Timestamp:
01/14/14 12:25:59 (3 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PuffinServer

    v106 v107  
    390390Blocklists are configured in {{{/etc/csf/csf.blocklists}}} and some were enabled on ticket:589 
    391391 
     392== Cron == 
     393 
     394BOA controls the root crontab and any changed made there will be overwritten, so things that would normally be in the root crontab need to go into users ones and use sudo, these are the ones in chris' crontab: 
     395 
     396{{{ 
     397# delete metche backups which are more than a day old 
     398# see https://tech.transitionnetwork.org/trac/ticket/531 
     39928      11      *       *       *       sudo /usr/local/bin/metche-clean -d      
     400# set the colck after a reboot 
     401@reboot sudo rdate -s ntp.demon.co.uk 
     402# create a tmp dir on the ram disk for mysql 
     403@reboot sudo mkdir /run/shm/mysql ; sudo chown mysql:mysql /run/shm/mysql 
     404}}} 
     405 
     406To edit chris' crontab after logging in as another user: 
     407 
     408{{{ 
     409sudo -i 
     410export EDITOR=vim 
     411crontab -e 
     412}}} 
     413 
    392414== Backupninja == 
    393415