if [ $? -ne 0 ]; then
echo the apache tls-enabling.conf file seems to have already been patched to disable strict transport security. good.
else
- echo successfully patched the apache tls-enabling.conf file to disable strict transport security. awesome.
restart_apache
+ echo successfully patched the apache tls-enabling.conf file to disable strict transport security. awesome.
fi
##############
* IN A 10.28.42.20
IN HINFO "linux vm" "ubuntu"
" >> /etc/bind/cakelampvm.com.conf
-
-restart_bind
+ restart_bind
+ echo "successfully added wildcard domains to the cakelampvm.com bind configuration, so we're still on track for greatness."
+fi
##############
+# fix samba configuration for (ass-headed) default of read-only in user homes.
+# why add a necessary feature if you're just going to cripple it by default?
+
+search_replace a b
+/etc/samba/smb.confÂ
+if [ $? -ne 0 ]; then
+ echo "the samba configuration has already been fixed for user homes, so that's fine."
+else
+ restart_samba
+ echo successfully patched the samba configuration to enable writes on user home directories. super cool.
+fi
##############
##############
############################################################################
+# samba server helper functions...
+
+function restart_samba
+{
+ echo restarting samba server.
+ service smbd restart
+ if [ $? -ne 0 ]; then
+ echo "The samba service did not restart properly. Please check the error logs."
+ exit 1
+ fi
+ service nmbd restart
+ if [ $? -ne 0 ]; then
+ echo "The samba name service (nmbd) did not restart properly. This may not always be fatal, so we are ignoring it, but you may want to check the error logs."
+ fi
+ echo samba service restarted.
+}
+
+############################################################################
+
# apache2 methods...
# removes a config file for apache given the app name and site name.