freedombone-utils-backup 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Backup functions
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2014-2016 Bob Mottram <bob@freedombone.net>
  17. #
  18. # This program is free software: you can redistribute it and/or modify
  19. # it under the terms of the GNU Affero General Public License as published by
  20. # the Free Software Foundation, either version 3 of the License, or
  21. # (at your option) any later version.
  22. #
  23. # This program is distributed in the hope that it will be useful,
  24. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. # GNU Affero General Public License for more details.
  27. #
  28. # You should have received a copy of the GNU Affero General Public License
  29. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  30. # whether a given site is being suspended during backup
  31. SUSPENDED_SITE=
  32. function suspend_site {
  33. # suspends a given website
  34. SUSPENDED_SITE="$1"
  35. nginx_dissite $SUSPENDED_SITE
  36. service nginx reload
  37. }
  38. function restart_site {
  39. # restarts a given website
  40. if [ ! $SUSPENDED_SITE ]; then
  41. return
  42. fi
  43. nginx_ensite $SUSPENDED_SITE
  44. service nginx reload
  45. SUSPENDED_SITE=
  46. }
  47. function configure_backup_key {
  48. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  49. return
  50. fi
  51. apt-get -yq install gnupg
  52. BACKUP_KEY_EXISTS=$(gpg_key_exists "root" "$MY_NAME (backup key)")
  53. if [[ $BACKUP_KEY_EXISTS == "yes" ]]; then
  54. return
  55. fi
  56. # Generate a GPG key for backups
  57. BACKUP_KEY_EXISTS=$(gpg_key_exists "$MY_USERNAME" "$MY_NAME (backup key)")
  58. if [[ $BACKUP_KEY_EXISTS == "no" ]]; then
  59. echo 'Key-Type: 1' > /home/$MY_USERNAME/gpg-genkey.conf
  60. echo 'Key-Length: 4096' >> /home/$MY_USERNAME/gpg-genkey.conf
  61. echo 'Subkey-Type: 1' >> /home/$MY_USERNAME/gpg-genkey.conf
  62. echo 'Subkey-Length: 4096' >> /home/$MY_USERNAME/gpg-genkey.conf
  63. echo "Name-Real: $MY_NAME" >> /home/$MY_USERNAME/gpg-genkey.conf
  64. echo "Name-Email: $MY_EMAIL_ADDRESS" >> /home/$MY_USERNAME/gpg-genkey.conf
  65. echo "Name-Comment: backup key" >> /home/$MY_USERNAME/gpg-genkey.conf
  66. echo 'Expire-Date: 0' >> /home/$MY_USERNAME/gpg-genkey.conf
  67. chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/gpg-genkey.conf
  68. echo $'Backup key does not exist. Creating it.'
  69. su -c "gpg --batch --gen-key /home/$MY_USERNAME/gpg-genkey.conf" - $MY_USERNAME
  70. shred -zu /home/$MY_USERNAME/gpg-genkey.conf
  71. echo $'Checking that the Backup key was created'
  72. BACKUP_KEY_EXISTS=$(gpg_key_exists "$MY_USERNAME" "$MY_NAME (backup key)")
  73. if [[ $BACKUP_KEY_EXISTS == "no" ]]; then
  74. echo $'Backup key could not be created'
  75. exit 43382
  76. fi
  77. fi
  78. MY_BACKUP_KEY_ID=$(su -c "gpg --list-keys \"$MY_NAME (backup key)\" | grep 'pub '" - $MY_USERNAME | awk -F ' ' '{print $2}' | awk -F '/' '{print $2}')
  79. echo "Backup key: $MY_BACKUP_KEY_ID"
  80. MY_BACKUP_KEY=/home/$MY_USERNAME/backup_key
  81. su -c "gpg --output ${MY_BACKUP_KEY}_public.asc --armor --export $MY_BACKUP_KEY_ID" - $MY_USERNAME
  82. su -c "gpg --output ${MY_BACKUP_KEY}_private.asc --armor --export-secret-key $MY_BACKUP_KEY_ID" - $MY_USERNAME
  83. if [ ! -f ${MY_BACKUP_KEY}_public.asc ]; then
  84. echo 'Public backup key could not be exported'
  85. exit 36829
  86. fi
  87. if [ ! -f ${MY_BACKUP_KEY}_private.asc ]; then
  88. echo 'Private backup key could not be exported'
  89. exit 29235
  90. fi
  91. # import backup key to root user
  92. gpg --import --import ${MY_BACKUP_KEY}_public.asc
  93. gpg --allow-secret-key-import --import ${MY_BACKUP_KEY}_private.asc
  94. shred -zu ${MY_BACKUP_KEY}_public.asc
  95. shred -zu ${MY_BACKUP_KEY}_private.asc
  96. mark_completed $FUNCNAME
  97. }
  98. function backup_to_friends_servers {
  99. # update crontab
  100. echo '#!/bin/bash' > /etc/cron.daily/backuptofriends
  101. echo "if [ -f /usr/local/bin/${PROJECT_NAME}-backup-remote ]; then" >> /etc/cron.daily/backuptofriends
  102. echo " /usr/local/bin/${PROJECT_NAME}-backup-remote" >> /etc/cron.daily/backuptofriends
  103. echo 'else' >> /etc/cron.daily/backuptofriends
  104. echo " /usr/bin/${PROJECT_NAME}-backup-remote" >> /etc/cron.daily/backuptofriends
  105. echo 'fi' >> /etc/cron.daily/backuptofriends
  106. chmod +x /etc/cron.daily/backuptofriends
  107. }
  108. function backup_mount_drive {
  109. if [ $1 ]; then
  110. if [[ "$1" == "/dev/"* ]]; then
  111. USB_DRIVE=$1
  112. else
  113. USB_DRIVE=/dev/${1}1
  114. fi
  115. fi
  116. # get the admin user
  117. ADMIN_USERNAME=$(get_completion_param "Admin user")
  118. if [ $2 ]; then
  119. ADMIN_USERNAME=$2
  120. fi
  121. ADMIN_NAME=$(getent passwd $ADMIN_USERNAME | cut -d: -f5 | cut -d, -f1)
  122. if [ $3 ]; then
  123. RESTORE_APP=$3
  124. fi
  125. # check that the backup destination is available
  126. if [ ! -b $USB_DRIVE ]; then
  127. echo $"Please attach a USB drive"
  128. exit 1
  129. fi
  130. # unmount if already mounted
  131. umount -f $USB_MOUNT
  132. if [ ! -d $USB_MOUNT ]; then
  133. mkdir $USB_MOUNT
  134. fi
  135. if [ -f /dev/mapper/encrypted_usb ]; then
  136. rm -rf /dev/mapper/encrypted_usb
  137. fi
  138. cryptsetup luksClose encrypted_usb
  139. # mount the encrypted backup drive
  140. cryptsetup luksOpen $USB_DRIVE encrypted_usb
  141. if [ "$?" = "0" ]; then
  142. USB_DRIVE=/dev/mapper/encrypted_usb
  143. fi
  144. mount $USB_DRIVE $USB_MOUNT
  145. if [ ! "$?" = "0" ]; then
  146. echo $"There was a problem mounting the USB drive to $USB_MOUNT"
  147. rm -rf $USB_MOUNT
  148. exit 783452
  149. fi
  150. }
  151. function backup_unmount_drive {
  152. if [ $1 ]; then
  153. USB_DRIVE=${1}
  154. if [ $2 ]; then
  155. USB_MOUNT=${2}
  156. fi
  157. fi
  158. sync
  159. umount $USB_MOUNT
  160. if [ ! "$?" = "0" ]; then
  161. echo $"Unable to unmount the drive."
  162. rm -rf $USB_MOUNT
  163. exit 9
  164. fi
  165. rm -rf $USB_MOUNT
  166. if [[ $USB_DRIVE == /dev/mapper/encrypted_usb ]]; then
  167. echo $"Unmount encrypted USB"
  168. cryptsetup luksClose encrypted_usb
  169. fi
  170. if [ -f /dev/mapper/encrypted_usb ]; then
  171. rm -rf /dev/mapper/encrypted_usb
  172. fi
  173. }
  174. function backup_database_local_usb {
  175. if [ ${#DATABASE_PASSWORD} -lt 2 ]; then
  176. echo $"No MariaDB password was given"
  177. function_check restart_site
  178. restart_site
  179. exit 10
  180. fi
  181. if [ ! -d $USB_MOUNT/backup/${1} ]; then
  182. mkdir -p $USB_MOUNT/backup/${1}
  183. fi
  184. if [ ! -d $USB_MOUNT/backup/${1}data ]; then
  185. mkdir -p $USB_MOUNT/backup/${1}data
  186. fi
  187. local_database_dir=/root/temp${1}data
  188. if [ ! -d ${local_database_dir} ]; then
  189. mkdir -p ${local_database_dir}
  190. fi
  191. echo $"Obtaining ${1} database backup"
  192. mysqldump --lock-tables --password="$DATABASE_PASSWORD" ${1} > ${local_database_dir}/${1}.sql
  193. if [ -f ${local_database_dir}/${1}.sql ]; then
  194. if [ ! -s ${local_database_dir}/${1}.sql ]; then
  195. echo $"${1} database could not be saved"
  196. shred -zu ${local_database_dir}/*
  197. rm -rf ${local_database_dir}
  198. umount $USB_MOUNT
  199. rm -rf $USB_MOUNT
  200. restart_site
  201. exit 6835872
  202. fi
  203. else
  204. echo $"${1} database could not be dumped"
  205. rm -rf ${local_database_dir}
  206. umount $USB_MOUNT
  207. rm -rf $USB_MOUNT
  208. restart_site
  209. exit 738653
  210. fi
  211. echo $"Database dump was created for ${1}"
  212. }
  213. function set_obnam_client_name {
  214. # obnam can backup multiple machines with different domain names to
  215. # a repository. To be able to restore directories from different
  216. # machines we need to enforce a single client name for all backups
  217. echo '[config]' > /etc/obnam.conf
  218. echo "client-name = ${PROJECT_NAME}" >> /etc/obnam.conf
  219. }
  220. function backup_directory_to_usb {
  221. if [ ! -d ${1} ]; then
  222. echo $"WARNING: directory does not exist: ${1}"
  223. else
  224. BACKUP_KEY_EXISTS=$(gpg --list-keys "$ADMIN_NAME (backup key)")
  225. if [ ! "$?" = "0" ]; then
  226. echo $"Backup key could not be found"
  227. function_check restart_site
  228. restart_site
  229. exit 6
  230. fi
  231. MY_BACKUP_KEY_ID=$(gpg --list-keys "$ADMIN_NAME (backup key)" | grep 'pub ' | awk -F ' ' '{print $2}' | awk -F '/' '{print $2}')
  232. if [ ! -d $USB_MOUNT/backup/${2} ]; then
  233. mkdir -p $USB_MOUNT/backup/${2}
  234. fi
  235. set_obnam_client_name
  236. obnam force-lock -r $USB_MOUNT/backup/${2} --encrypt-with $MY_BACKUP_KEY_ID ${1}
  237. obnam backup -r $USB_MOUNT/backup/${2} --encrypt-with $MY_BACKUP_KEY_ID ${1}
  238. if [[ $ENABLE_BACKUP_VERIFICATION == "yes" ]]; then
  239. obnam verify -r $USB_MOUNT/backup/${2} --encrypt-with $MY_BACKUP_KEY_ID ${1}
  240. if [ ! "$?" = "0" ]; then
  241. umount $USB_MOUNT
  242. rm -rf $USB_MOUNT
  243. if [[ ${1} == "/root/temp"* || ${1} == *"tempbackup" ]]; then
  244. shred -zu ${1}/*
  245. rm -rf ${1}
  246. fi
  247. function_check restart_site
  248. restart_site
  249. exit 683252
  250. fi
  251. fi
  252. obnam forget --keep=30d -r $USB_MOUNT/backup/${2} --encrypt-with $MY_BACKUP_KEY_ID
  253. if [ ! "$?" = "0" ]; then
  254. umount $USB_MOUNT
  255. rm -rf $USB_MOUNT
  256. if [[ ${1} == "/root/temp"* || ${1} == *"tempbackup" ]]; then
  257. shred -zu ${1}/*
  258. rm -rf ${1}
  259. fi
  260. function_check restart_site
  261. restart_site
  262. exit 7
  263. fi
  264. if [[ ${1} == "/root/temp"* || ${1} == *"tempbackup" ]]; then
  265. shred -zu ${1}/*
  266. rm -rf ${1}
  267. fi
  268. fi
  269. }
  270. function restore_directory_from_usb {
  271. if [ ! -d ${1} ]; then
  272. mkdir ${1}
  273. fi
  274. set_obnam_client_name
  275. obnam restore -r $USB_MOUNT/backup/${2} --to ${1}
  276. }
  277. function restore_directory_from_friend {
  278. if [ ! -d ${1} ]; then
  279. mkdir ${1}
  280. fi
  281. set_obnam_client_name
  282. obnam restore -r $SERVER_DIRECTORY/backup/${2} --to ${1}
  283. }
  284. function backup_database_to_usb {
  285. database_name=$1
  286. local_database_dir=/root/temp${1}data
  287. backup_database_local_usb ${database_name}
  288. if [ ! -f ${local_database_dir}/${1}.sql ]; then
  289. echo $"Error backing up ${1} database to ${local_database_dir}/${1}.sql"
  290. exit 62383
  291. fi
  292. backup_directory_to_usb ${local_database_dir} ${database_name}data
  293. }
  294. # after user files have been restored permissions may need to be set
  295. function set_user_permissions {
  296. echo $"Setting permissions"
  297. for d in /home/*/ ; do
  298. USERNAME=$(echo "$d" | awk -F '/' '{print $3}')
  299. if [[ $(is_valid_user "$USERNAME") == "1" ]]; then
  300. chown -R $USERNAME:$USERNAME /home/$USERNAME
  301. fi
  302. done
  303. }
  304. function backup_directory_to_friend {
  305. BACKUP_KEY_EXISTS=$(gpg --list-keys "$ADMIN_NAME (backup key)")
  306. if [ ! "$?" = "0" ]; then
  307. echo $"Backup key could not be found"
  308. function_check restart_site
  309. restart_site
  310. exit 43382
  311. fi
  312. ADMIN_BACKUP_KEY_ID=$(gpg --list-keys "$ADMIN_NAME (backup key)" | grep 'pub ' | awk -F ' ' '{print $2}' | awk -F '/' '{print $2}')
  313. if [ ! -d $SERVER_DIRECTORY/backup/${2} ]; then
  314. mkdir -p $SERVER_DIRECTORY/backup/${2}
  315. fi
  316. set_obnam_client_name
  317. obnam force-lock -r $SERVER_DIRECTORY/backup/${2} --encrypt-with ${ADMIN_BACKUP_KEY_ID} ${1}
  318. obnam backup -r $SERVER_DIRECTORY/backup/${2} --encrypt-with ${ADMIN_BACKUP_KEY_ID} ${1}
  319. if [[ $ENABLE_VERIFICATION == "yes" ]]; then
  320. obnam verify -r $SERVER_DIRECTORY/backup/${2} --encrypt-with ${ADMIN_BACKUP_KEY_ID} ${1}
  321. if [ ! "$?" = "0" ]; then
  322. if [[ ${1} == "/root/temp"* || ${1} == *"tempbackup" ]]; then
  323. shred -zu /root/temp${2}/*
  324. rm -rf /root/temp${2}
  325. fi
  326. # Send a warning email
  327. echo "Unable to verify ${2}" | mail -s "${PROJECT_NAME} backup to friends" ${ADMIN_EMAIL_ADDRESS}
  328. function_check restart_site
  329. restart_site
  330. exit 953
  331. fi
  332. fi
  333. obnam forget --keep=30d -r $SERVER_DIRECTORY/backup/${2} --encrypt-with ${ADMIN_BACKUP_KEY_ID}
  334. if [ ! "$?" = "0" ]; then
  335. if [[ ${1} == "/root/temp"* || ${1} == *"tempbackup" ]]; then
  336. shred -zu /root/temp${2}/*
  337. rm -rf /root/temp${2}
  338. fi
  339. # Send a warning email
  340. echo "Unable to backup ${2}" | mail -s "${PROJECT_NAME} backup to friends" ${ADMIN_EMAIL_ADDRESS}
  341. function_check restart_site
  342. restart_site
  343. exit 853
  344. fi
  345. if [[ ${1} == "/root/temp"* || ${1} == *"tempbackup" ]]; then
  346. shred -zu /root/temp${2}/*
  347. rm -rf /root/temp${2}
  348. fi
  349. }
  350. function backup_database_remote {
  351. if [ ${#DATABASE_PASSWORD} -lt 2 ]; then
  352. echo $"No MariaDB password was given"
  353. function_check restart_site
  354. restart_site
  355. exit 5783
  356. fi
  357. if [ ! -d $SERVER_DIRECTORY/backup/${1} ]; then
  358. mkdir -p $SERVER_DIRECTORY/backup/${1}
  359. fi
  360. if [ ! -d $SERVER_DIRECTORY/backup/${1}data ]; then
  361. mkdir -p $SERVER_DIRECTORY/backup/${1}data
  362. fi
  363. local_database_dir=/root/temp${1}data
  364. if [ ! -d ${local_database_dir} ]; then
  365. mkdir -p ${local_database_dir}
  366. fi
  367. echo "Obtaining ${1} database backup"
  368. mysqldump --password="$DATABASE_PASSWORD" ${1} > ${local_database_dir}/${1}.sql
  369. if [ -f ${local_database_dir}/${1}.sql ]; then
  370. if [ ! -s ${local_database_dir}/${1}.sql ]; then
  371. echo $"${1} database could not be saved"
  372. shred -zu ${local_database_dir}/*
  373. rm -rf ${local_database_dir}
  374. # Send a warning email
  375. echo $"Unable to export ${1} database" | mail -s $"${PROJECT_NAME} backup to friends" $ADMIN_EMAIL_ADDRESS
  376. function_check restart_site
  377. restart_site
  378. exit 5738
  379. fi
  380. else
  381. echo $"${1} database could not be dumped"
  382. rm -rf ${local_database_dir}
  383. # Send a warning email
  384. echo $"Unable to dump ${1} database" | mail -s $"${PROJECT_NAME} backup to friends" $ADMIN_EMAIL_ADDRESS
  385. function_check restart_site
  386. restart_site
  387. exit 3687
  388. fi
  389. }
  390. function backup_database_to_friend {
  391. database_name=$1
  392. backup_database_remote $database_name
  393. backup_directory_to_friend /root/temp${database_name}data ${database_name}data
  394. }
  395. function backup_apps {
  396. localremote=$1
  397. BACKUP_APPS_COMPLETED=()
  398. detect_installable_apps
  399. get_apps_installed_names
  400. for app_name in "${APPS_INSTALLED_NAMES[@]}"
  401. do
  402. echo $"Backup ${app_name}"
  403. app_load_variables ${app_name}
  404. function_check backup_${localremote}_${app_name}
  405. backup_${localremote}_${app_name}
  406. BACKUP_APPS_COMPLETED+=("${app_name}")
  407. echo $"Backup ${app_name} completed"
  408. done
  409. }
  410. function restore_apps {
  411. localremote=$1
  412. RESTORE_APP=$2
  413. RESTORE_APPS_COMPLETED=()
  414. detect_installable_apps
  415. get_apps_installed_names
  416. for app_name in "${APPS_INSTALLED_NAMES[@]}"
  417. do
  418. confirm_restore=
  419. if [ ! $2 ]; then
  420. confirm_restore=1
  421. else
  422. if [[ "$RESTORE_APP" == "$app_name" || "$RESTORE_APP" == "all" ]]; then
  423. confirm_restore=1
  424. fi
  425. fi
  426. if [ $confirm_restore ]; then
  427. echo $"Restoring ${app_name}"
  428. app_load_variables ${app_name}
  429. function_check restore_${localremote}_${app_name}
  430. restore_${localremote}_${app_name}
  431. RESTORE_APPS_COMPLETED+=("${app_name}")
  432. echo $"Restored ${app_name}"
  433. fi
  434. done
  435. }
  436. function restore_database_from_friend {
  437. DATABASE_PASSWORD=
  438. RESTORE_SUBDIR="root"
  439. if [ -d $SERVER_DIRECTORY/backup/${1} ]; then
  440. echo $"Restoring ${1} database"
  441. local_database_dir=/root/temp${1}data
  442. restore_directory_from_friend ${local_database_dir} ${1}data
  443. if [ ! -f ${local_database_dir}/${RESTORE_SUBDIR}/temp${1}data/${1}.sql ]; then
  444. echo $"Unable to restore ${1} database"
  445. rm -rf ${local_database_dir}
  446. exit 503
  447. fi
  448. mysqlsuccess=$(mysql -u root --password="$DATABASE_PASSWORD" ${1} -o < ${local_database_dir}/${RESTORE_SUBDIR}/temp${1}data/${1}.sql)
  449. if [ ! "$?" = "0" ]; then
  450. echo "$mysqlsuccess"
  451. exit 964
  452. fi
  453. shred -zu ${local_database_dir}/${RESTORE_SUBDIR}/temp${1}data/*
  454. rm -rf ${local_database_dir}
  455. echo $"Restoring ${1} installation"
  456. restore_directory_from_friend /root/temp${1} ${1}
  457. RESTORE_SUBDIR="var"
  458. if [ ${1} ]; then
  459. if [ -d /var/www/${2}/htdocs ]; then
  460. if [ -d /root/temp${1}/${RESTORE_SUBDIR}/www/${2}/htdocs ]; then
  461. rm -rf /var/www/${2}/htdocs
  462. mv /root/temp${1}/${RESTORE_SUBDIR}/www/${2}/htdocs /var/www/${2}/
  463. if [ ! "$?" = "0" ]; then
  464. exit 683
  465. fi
  466. if [ -d /etc/letsencrypt/live/${2} ]; then
  467. ln -s /etc/letsencrypt/live/${2}/privkey.pem /etc/ssl/private/${2}.key
  468. ln -s /etc/letsencrypt/live/${2}/fullchain.pem /etc/ssl/certs/${2}.pem
  469. else
  470. # Ensure that the bundled SSL cert is being used
  471. if [ -f /etc/ssl/certs/${2}.bundle.crt ]; then
  472. sed -i "s|${2}.crt|${2}.bundle.crt|g" /etc/nginx/sites-available/${2}
  473. fi
  474. fi
  475. fi
  476. fi
  477. fi
  478. fi
  479. }
  480. function restore_database {
  481. RESTORE_SUBDIR="root"
  482. if [ -d $USB_MOUNT/backup/${1} ]; then
  483. echo $"Restoring ${1} database"
  484. local_database_dir=/root/temp${1}data
  485. function_check restore_directory_from_usb
  486. restore_directory_from_usb "${local_database}" "${1}data"
  487. if [ ! -f /root/temp${1}data/${RESTORE_SUBDIR}/temp${1}data/${1}.sql ]; then
  488. echo $"Unable to restore ${1} database"
  489. rm -rf ${local_database}
  490. function_check set_user_permissions
  491. set_user_permissions
  492. function_check backup_unmount_drive
  493. backup_unmount_drive
  494. exit 503
  495. fi
  496. mysqlsuccess=$(mysql -u root --password="$DATABASE_PASSWORD" ${1} -o < ${local_database}/${RESTORE_SUBDIR}/temp${1}data/${1}.sql)
  497. if [ ! "$?" = "0" ]; then
  498. echo "$mysqlsuccess"
  499. function_check set_user_permissions
  500. set_user_permissions
  501. function_check set_user_permissions
  502. backup_unmount_drive
  503. exit 964
  504. fi
  505. shred -zu ${local_database}/${RESTORE_SUBDIR}/temp${1}data/*
  506. rm -rf ${local_database}
  507. echo $"Restoring ${1} installation"
  508. if [ ! -d /root/temp${1} ]; then
  509. mkdir /root/temp${1}
  510. fi
  511. function_check restore_directory_from_usb
  512. restore_directory_from_usb "/root/temp${1}" "${1}"
  513. RESTORE_SUBDIR="var"
  514. if [ ${2} ]; then
  515. if [ -d /var/www/${2}/htdocs ]; then
  516. if [ -d /root/temp${1}/${RESTORE_SUBDIR}/www/${2}/htdocs ]; then
  517. rm -rf /var/www/${2}/htdocs
  518. mv /root/temp${1}/${RESTORE_SUBDIR}/www/${2}/htdocs /var/www/${2}/
  519. if [ ! "$?" = "0" ]; then
  520. set_user_permissions
  521. backup_unmount_drive
  522. exit 683
  523. fi
  524. if [ -d /etc/letsencrypt/live/${2} ]; then
  525. ln -s /etc/letsencrypt/live/${2}/privkey.pem /etc/ssl/private/${2}.key
  526. ln -s /etc/letsencrypt/live/${2}/fullchain.pem /etc/ssl/certs/${2}.pem
  527. else
  528. # Ensure that the bundled SSL cert is being used
  529. if [ -f /etc/ssl/certs/${2}.bundle.crt ]; then
  530. sed -i "s|${2}.crt|${2}.bundle.crt|g" /etc/nginx/sites-available/${2}
  531. fi
  532. fi
  533. fi
  534. fi
  535. fi
  536. fi
  537. }
  538. function valid_backup_destination {
  539. # used to check whether any additional backup directories clash with
  540. # exiting apps
  541. destination_dir="$1"
  542. is_valid="yes"
  543. available_variants_list=()
  544. available_system_variants
  545. item_in_array "${destination_dir}" "${available_variants_list[@]}"
  546. if [[ $? != 0 ]]; then
  547. is_valid="no"
  548. fi
  549. echo $is_valid
  550. }
  551. function backup_extra_directories {
  552. if [ ! -f $BACKUP_EXTRA_DIRECTORIES ]; then
  553. return
  554. fi
  555. backup_type="$1"
  556. echo $"Backing up some additional directories"
  557. while read backup_line
  558. do
  559. backup_dir=$(echo "$backup_line" | awk -F ',' '{print $1}' | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
  560. if [ -d "$backup_dir" ]; then
  561. destination_dir=$(echo "$backup_line" | awk -F ',' '{print $2}' | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
  562. if [[ $(valid_backup_destination "$destination_dir") == "yes" ]]; then
  563. if [[ $backup_type == "local" ]]; then
  564. backup_directory_to_usb "$backup_dir" "$destination_dir"
  565. else
  566. backup_directory_to_friend "$backup_dir" "$destination_dir"
  567. fi
  568. else
  569. echo $"WARNING: The backup directory $destination_dir is already used."
  570. echo $"Choose a different destination name for backing up $backup_dir"
  571. fi
  572. else
  573. echo $"WARNING: Directory $backup_dir does not exist"
  574. fi
  575. done <$BACKUP_EXTRA_DIRECTORIES
  576. }
  577. # NOTE: deliberately no exit 0