Projet

Général

Profil

Paste
Télécharger (2,82 ko) Statistiques
| Branche: | Révision:

root / bin / d7-reset-variables.sh @ a629a580

1
#!/bin/sh
2

    
3
. /home/assos/bin/scripts-config.sh
4

    
5
# ARGS: [site_name]
6

    
7
if [ -n "$1" ] ; then
8
    param="$1" . scripts-config-site.sh
9
    # default is an exception to the rule
10
    if echo "$1" | grep -q default ; then
11
	    cd "${d7_dir_sites}/default"
12
    else
13
	cd "${d7_site_dir}"
14
    fi
15
fi
16

    
17
current_timestamp=$(date "+%s")
18

    
19
random_1=$(dd if=/dev/urandom count=1 2> /dev/null | cksum | cut -f1 -d" ")
20
random_2=$(dd if=/dev/urandom count=1 2> /dev/null | cksum | cut -f1 -d" ")
21

    
22
####### General variables
23
drush -yq vset --always-set reverse_proxy TRUE
24
drush -yq vset --always-set --format=json reverse_proxy_addresses '["147.94.19.16","147.94.19.17"]'
25
drush -yq ev "variable_set('update_notify_emails', array('$email_multi_assos_update'));"
26
drush -yq vset error_level 0
27
drush -yq vset dblog_row_limit 1000
28
drush -yq vset cron_safe_threshold 0
29
drush -yq vset file_temporary_path /var/tmp/assos/tmp
30

    
31
###### Captcha
32
drush -yq en hidden_captcha
33
# Do not log wrong answers.
34
drush -yq vset captcha_enable_stats 0
35
drush -yq vset captcha_log_wrong_responses 0
36
# Use hidden captcha for all forms.
37
drush -yq sqlq --db-prefix "UPDATE {captcha_points} SET module = 'hidden_captcha', captcha_type = 'Hidden CAPTCHA' WHERE module is NULL;"
38
# Flush captcha cache.
39
drush -yq vdel captcha_placement_map_cache
40
# Randomly generate a math question as the label of the hidden captcha field.
41
drush -yq vset hidden_captcha_label "$random_1 + $random_2"
42

    
43

    
44
####### Piwik
45
d7-reset-piwik-variables.sh "${d7_site_name}"
46

    
47
###### Security review
48
# For untrusted roles:
49
# 1: anonymous user
50
# 2: authenticated user
51
# 3: administrator
52
drush -yq en security_review
53
drush -yq ev "variable_set('security_review_untrusted_roles', array('1'));"
54
# The default method to check settings.php do not work because we include a global and local settings.php
55
drush -yq vset security_review_base_url_method include
56
# Used to initialise entries in the database schema.
57
drush -yq security-review --store
58
# file_perms : Security Review can't check for files permissions on multi_assos if launched within the web interface.
59
# private_files : we have chosen a private path in the files repository and Security Review raise errors but this path is secure.
60
drush -yq sqlq --db-prefix "UPDATE {security_review} SET skip = '1', skiptime = $current_timestamp, skipuid = '1' WHERE reviewcheck IN ('file_perms', 'private_files');"
61
drush -yq sqlq --db-prefix "UPDATE {security_review} SET skip = '0', skiptime = '0', skipuid = NULL WHERE reviewcheck NOT IN ('file_perms', 'private_files');"
62

    
63
###### Performance
64
# Active cache
65
drush -yq vset cache 1
66
drush -yq vset block_cache 1
67
# Lifetime : 0, 60, 180, 300, 600, 900, 1800, 2700, 3600, 10800, 21600, 32400, 43200
68
drush -yq vset cache_lifetime 0
69
drush -yq vset page_cache_maximum_age 300
70
# Compression
71
drush -yq vset page_compression 1
72
drush -yq vset preprocess_css 1
73
drush -yq vset preprocess_js 1