reversed polarity, so now FEISTY_MEOW_REPOS_SCAN
[feisty_meow.git] / scripts / site_avenger / revamp_cakelampvm_v002.sh
1 #!/bin/bash
2
3 # fixes the cakelampvm permissions according to the way.
4
5 ##############
6
7 if [[ $EUID != 0 ]]; then
8   echo "This script must be run as root or sudo."
9   exit 1
10 fi
11
12 if [[ ! $(hostname) == *cakelampvm* ]]; then
13   echo "This script is only designed to be run on the cakelampvm host."
14   exit 1
15 fi
16
17 ##############
18
19 export THISDIR="$( \cd "$(\dirname "$0")" && \pwd )"  # obtain the script's working directory.
20 export FEISTY_MEOW_APEX="$( \cd "$THISDIR/../.." && \pwd )"
21
22 export NO_HELLO=right
23 source "$FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh"
24 # load dependencies for our script.
25 source "$FEISTY_MEOW_SCRIPTS/system/common_sysadmin.sh"
26 source "$FEISTY_MEOW_SCRIPTS/security/password_functions.sh"
27
28 ##############
29
30 # it's a requirement to have sql root password, since we may need some sql db configuration.
31 load_password /etc/mysql/secret_password mysql_passwd
32 if [ -z "$mysql_passwd" ]; then
33   read_password "Please enter the MySQL root account password:" mysql_passwd
34 fi
35 if [ -z "$mysql_passwd" ]; then
36   echo "This script must have the sql root password to proceed."
37   exit 1
38 else
39   store_password /etc/mysql/secret_password "$mysql_passwd"
40 fi
41
42 ##############
43
44 sep
45
46 echo "Regenerating feisty meow loading dock."
47
48 regenerate
49 exit_on_error "regenerating feisty meow configuration"
50 chown -R "$(fm_username)":"$(fm_username)" /home/$(fm_username)/.[a-zA-Z0-9]*
51 exit_on_error "fix after reconfigured as sudo"
52
53 ##############
54
55 # set up some crucial users in the mysql db that we seem to have missed previously.
56
57 sep
58
59 echo "Adding users to the mysql database."
60
61 #hmmm: good application for hiding output unless error here.
62 mysql -u root -p"$mysql_passwd" &>/dev/null <<EOF
63   create user if not exists 'root'@'%' IDENTIFIED BY '$mysql_passwd';
64   grant all privileges on *.* TO 'root'@'%' with grant option;
65
66   create user if not exists 'wampcake'@'%' IDENTIFIED BY 'bakecamp';
67   grant all privileges on *.* TO 'wampcake'@'%' with grant option;
68
69   create user if not exists 'lampcake'@'%' IDENTIFIED BY 'bakecamp';
70   grant all privileges on *.* TO 'lampcake'@'%' with grant option;
71 EOF
72 exit_on_error "configuring root, wampcake and lampcake users on mysql"
73
74 ##############
75
76 sep
77
78 echo "Making some important permission changes..."
79
80 ##############
81
82 # fix up the main web storage.
83 chown -R www-data:www-data /var/www 
84 exit_on_error "chown www-data"
85 group_perm /var/www 
86 exit_on_error "group_perm www-data"
87
88 ##############
89
90 # set up access on some important folders for the developer user.
91 chown -R developer:developer /home/developer /home/developer/.[a-zA-Z0-9]*
92 exit_on_error "chown developer home"
93 harsh_perm /home/developer/.ssh
94 exit_on_error "harsh_perm setting on developer .ssh"
95
96
97 ##############
98
99 # give the developer control over the apache and bind config files, as well
100 # as giving the user ownership of the local feisty meow repository.
101 chown -R developer:developer /etc/apache2 /etc/bind 
102 exit_on_error "chown apache2 and bind to developer"
103 group_perm /etc/apache2 /etc/bind 
104 exit_on_error "group perms on apache2 and bind"
105 chown -R developer:developer /opt/feistymeow.org 
106 exit_on_error "chown feisty meow to developer"
107 group_perm /opt/feistymeow.org 
108 exit_on_error "group perms on feisty meow"
109
110 ##############
111
112 # fix perms for fred user.
113 chown -R fred:fred /home/fred /home/archives/stuffing /home/fred/.[a-zA-Z0-9]*
114 exit_on_error "chown fred home"
115
116 #hmmm: argh, wrong check!  can't check a multi-value if it's a directory or not!!!
117 if [ -d "$FEISTY_MEOW_REPOS_SCAN" ]; then
118   group_perm $FEISTY_MEOW_REPOS_SCAN
119   exit_on_error "group perms on fred's apps"
120 fi
121 harsh_perm /home/fred/.ssh
122 exit_on_error "harsh_perm setting on fred .ssh"
123 group_perm /home/fred/apps/mapsdemo
124 exit_on_error "group perms on mapsdemo app"
125
126 echo "...done with permission changes."
127
128 ##############
129 #
130 # some slightly tricky bits start here.  we want to massage the vm into the
131 # best possible shape without needing to re-release it.
132 #
133 ##############
134
135 sep
136
137 echo "Updating developer welcome file."
138
139 # only update hello if they've still got the file there.  we don't want to
140 # keep forcing our hellos at people.
141 if [ -f "$HOME/hello.txt" ]; then
142   # copy the most recent hello file into place for the user.
143   \cp -f "$FEISTY_MEOW_APEX/production/sites/cakelampvm.com/hello.txt" "$HOME"
144   continue_on_error "copying hello file for user"
145 fi
146
147 ##############
148
149 # deploy any site updates here to the VM's cakelampvm.com site.
150 #
151 # we want to upgrade the default apache site to the latest, since the new
152 # version mirrors the one on the internet (but with green checks instead
153 # of red X's) and since we also support https on the new default version.
154 # we can do this again later if needed, by upping the numbers on the apache
155 # site config files.  our original site was 000 and the new version is 001,
156 # which we've done as a prefix on the config for some reason.  makes the
157 # code below easy at least.
158 if [ -L /etc/apache2/sites-enabled/000-default.conf ]; then
159
160   sep
161
162   # the old site is in place still, so let's update that.
163   echo "Updating default web sites to latest version."
164
165   a2enmod ssl
166   exit_on_error "enabling SSL for secure websites"
167
168   restart_apache
169   exit_on_error "getting SSL loaded in apache"
170
171   a2dissite 000-default
172   exit_on_error "disabling old apache site"
173
174   rm -f /etc/apache2/sites-available/000-default.conf 
175   exit_on_error "removing old apache site"
176
177   # copy in our new version of the default page.
178 #hmmm: would be nice if this worked without mods for any new version, besides just 001.  see apache env var file below for example implem.
179   \cp -f $FEISTY_MEOW_APEX/production/sites/cakelampvm.com/rolling/default_page.001/* \
180       /etc/apache2/sites-available
181   exit_on_error "installing new apache default sites"
182
183   # there should only be ours at this version level and with that prefix.
184   a2ensite 001-*
185   exit_on_error "enabling new apache default sites"
186
187   restart_apache
188 fi
189
190 ##############
191
192 # fix up the apache site so that HSTS is disabled.  otherwise we can't view
193 # the https site for cakelampvm.com once the domain name switch has occurred.
194
195 sep
196
197 # we operate only on our own specialized tls conf file.  hopefully no one has messed with it besides revamp.
198 # note the use of the character class :blank: below to match spaces or tabs.
199 search_replace "^[[:blank:]]*Header always set Strict-Transport-Security.*" "# not good for cakelampvm.com -- Header always set Strict-Transport-Security \"max-age=63072000; includeSubdomains;\"" /etc/apache2/conf-library/tls-enabling.conf
200 if [ $? -ne 0 ]; then
201   echo the apache tls-enabling.conf file seems to have already been patched to disable strict transport security. 
202 else
203   restart_apache
204   echo successfully patched the apache tls-enabling.conf file to disable strict transport security. 
205 fi
206
207 ##############
208
209 # fix up bind so that we think of any address with cakelampvm.com on the end
210 # as being on the vm.  this is already true for some specific sites, but we
211 # want the wildcard enabled to ease the use of DNS for windows folks.
212
213 sep
214
215 grep -q "\*[[:blank:]]*IN A[[:blank:]]*10.28.42.20" /etc/bind/cakelampvm.com.conf
216 if [ $? -eq 0 ]; then
217   # already present.
218   echo the bind settings for wildcard domains off of cakelampvm.com seems to already be present. 
219 else
220   echo "
221
222
223 ;;;;;;
224
225 ; our bind magic, a wildcard domain, for all other sites with cakelampvm.com
226 ; in the domain.  this forces any other sites besides the ones above to route
227 ; to the actual vm IP address, which currently is singular and very fixated.
228 *                               IN A            10.28.42.20
229                                 IN HINFO        \"linux vm\" \"ubuntu\"
230
231 ;;;;;;
232
233
234
235 " >> /etc/bind/cakelampvm.com.conf
236   restart_bind
237   echo "successfully added wildcard domains to the cakelampvm.com bind configuration."
238 fi
239
240 ##############
241
242 # fix samba configuration for screwy default of read-only in user homes.
243 # why cripple a necessary feature by default?
244
245 sep
246
247 pattern="[#;][[:blank:]]*read only = yes"
248 replacement="read only = no"
249
250 # we just always do the replacement now rather than making it conditional,
251 # after realizing the sentinel pattern was actually already in the file...
252 # too much subtlety can get one into trouble.
253 sed -i "0,/$pattern/{s/$pattern/$replacement/}" /etc/samba/smb.conf
254 exit_on_error "patching samba configuration to enable write acccess on user home dirs"
255 echo successfully patched the samba configuration to enable writes on user home directories. 
256
257 # add in a disabling of the archive bit mapping feature, which hoses up the execute bit
258 # in an attempt to save the sad old DOS archive bit across the samba connection.
259 grep -q "map archive" /etc/samba/smb.conf
260 # if the phrase wasn't found, we need to add it.
261 if [ $? -ne 0 ]; then
262   sed -i "s/\[global\]/\[global\]\n\nmap archive = no/" /etc/samba/smb.conf
263   exit_on_error "patching samba configuration to turn off archive bit mapping feature"
264   echo Successfully fixed Samba to not use the archive bit mapping feature.
265 fi
266
267 # sweet, looks like that worked...
268 restart_samba
269
270 ##############
271
272 # add the latest version of the cakelampvm environment variables for apache.
273
274 sep
275
276 # drop existing file, if already configured.  ignore errors.
277 a2disconf env_vars_cakelampvm &>/dev/null
278
279 # plug in the new version, just stomping anything there.
280 # note: we only expect to have one version of the env_vars dir at a time in place in feisty...
281 \cp -f $FEISTY_MEOW_APEX/production/sites/cakelampvm.com/rolling/env_vars.*/env_vars_cakelampvm.conf /etc/apache2/conf-available
282 exit_on_error "copying environment variables file into place"
283
284 # enable the new version of the config file.
285 a2enconf env_vars_cakelampvm
286 exit_on_error "enabling the new cakelampvm environment config for apache"
287
288 echo Successfully configured the apache2 environment variables needed for cakelampvm.
289
290 ##############
291
292 # add in a swap mount if not already configured.
293
294 sep
295
296 # we will only add swap now if explicitly asked for it.  this is to avoid creating
297 # a swap file where the vm is running on an SSD, since that can use up the SSD's lifespan
298 # too quickly.
299 if [ ! -z "$ADD_SWAP" ]; then
300   echo "Checking existing swap partition configuration.
301 "
302
303   # check for existing swap.
304   free | grep -q "Swap:[[:blank:]]*[1-9][0-9]"
305   if [ $? -ne 0 ]; then
306     # no swap in current session, so add it.
307     echo "Enabling ramdisk swap partition...
308 "
309     add_swap_mount
310     echo "
311 Enabled ramdisk swap partition for current boot session."
312   fi
313
314   # the above just gives this session a swap partition, but we want to have
315   # the vm boot with one also.
316
317   # check if there is already swap mentioned in the root crontab.  we will get root's
318   # crontab below since this script has to run as sudo.
319   crontab -l | grep -iq add_swap_mount
320   if [ $? -ne 0 ]; then
321     # no existing swap setup in crontab, so add it.
322     echo "
323 Adding a boot-time ramdisk swap partition...
324 "
325     # need to do it carefully, since sed won't add lines to a null file.  we thus
326     # create a temporary file to do our work in and ignore sed as a tool for this.
327     tmpfile="$(mktemp junk.XXXXXX)"
328     crontab -l 2>/dev/null >"$tmpfile"
329     echo "
330 # need to explicitly set any variables we will use.
331 FEISTY_MEOW_APEX=${FEISTY_MEOW_APEX}
332 # add swap space to increase memory available.
333 @reboot bash $FEISTY_MEOW_APEX/scripts/system/add_swap_mount.sh
334 " >>"$tmpfile"
335     # now install our new version of the crontab.
336     crontab "$tmpfile"
337     rm "$tmpfile"
338
339     echo "
340 Added boot-time ramdisk swap partition to crontab for root."
341   fi
342 fi
343
344 ##############
345
346 sep
347
348 echo Adding site avenger packages to composer.
349 # add in site avenger dependencies so we can build avcore properly.
350 pushd ~ &>/dev/null
351 sudo -u $(fm_username) composer config -g repositories.siteavenger composer https://packages.siteavenger.com/
352 popd &>/dev/null
353
354 ##############
355
356 # make the apache umask set group permissions automatically, so we stop having weird
357 # permission issues on temp dirs.
358
359 sep
360
361 grep -q "umask" /etc/apache2/envvars
362 if [ $? -eq 0 ]; then
363   # already present.
364   echo the umask configuration for apache already appears to be set.
365 else
366   echo "
367
368 # set umask to enable group read/write on files and directories.
369 umask 002
370
371 " >> /etc/apache2/envvars
372   restart_apache
373   echo "successfully changed apache umask configuration to enable group read/write"
374 fi
375
376 ##############
377 ##############
378
379 # sequel--tell them they're great and show the hello again also.
380
381 sep
382
383 regenerate
384 exit_on_error "regenerating feisty meow scripts"
385 chown -R "$(fm_username)":"$(fm_username)" /home/$(fm_username)/.[a-zA-Z0-9]*
386 exit_on_error "fix after regenerate as sudo"
387 echo "
388
389
390 Thanks for revamping your cakelampvm.  :-)
391
392 You may want to update your current shell's feisty meow environment by typing:
393   regenerate
394 "
395
396 ##############
397
398