freedombone-restore-remote 34KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Restore from a given remote server
  12. # License
  13. # =======
  14. #
  15. # Copyright (C) 2015-2016 Bob Mottram <bob@robotics.uk.to>
  16. #
  17. # This program is free software: you can redistribute it and/or modify
  18. # it under the terms of the GNU Affero General Public License as published by
  19. # the Free Software Foundation, either version 3 of the License, or
  20. # (at your option) any later version.
  21. #
  22. # This program is distributed in the hope that it will be useful,
  23. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. # GNU Affero General Public License for more details.
  26. #
  27. # You should have received a copy of the GNU Affero General Public License
  28. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  29. PROJECT_NAME='freedombone'
  30. COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
  31. CONFIG_FILE=$HOME/${PROJECT_NAME}.cfg
  32. BACKUP_EXTRA_DIRECTORIES=/root/backup-extra-dirs.csv
  33. export TEXTDOMAIN=${PROJECT_NAME}-restore-remote
  34. export TEXTDOMAINDIR="/usr/share/locale"
  35. SERVER_NAME=$1
  36. # whether to restore everything or just a specific application
  37. RESTORE_APP='all'
  38. if [ ${2} ]; then
  39. RESTORE_APP=${2}
  40. fi
  41. ADMIN_USERNAME=$(cat $COMPLETION_FILE | grep "Admin user" | -nawk -F ':' '{print $2}')
  42. ADMIN_EMAIL_ADDRESS=${ADMIN_USERNAME}@${HOSTNAME}
  43. # Temporary location for data to be backed up to other servers
  44. SERVER_DIRECTORY=/root/remoterestore
  45. BACKUP_LIST=/home/${ADMIN_USERNAME}/backup.list
  46. if [ ! $SERVER_NAME ]; then
  47. echo $'restorefromfriend [server]'
  48. exit 1
  49. fi
  50. if [ ! -f $BACKUP_LIST ]; then
  51. echo $"No friends list found at $BACKUP_LIST"
  52. exit 2
  53. fi
  54. if ! grep -q "$SERVER_NAME" $BACKUP_LIST; then
  55. echo $"Server not found within the friends list"
  56. exit 3
  57. fi
  58. REMOTE_SERVER=$(grep -i "$SERVER_NAME" $BACKUP_LIST | awk -F ' ' '{print $1}')
  59. REMOTE_SSH_PORT=$(grep -i "$SERVER_NAME" $BACKUP_LIST | awk -F ' ' '{print $2}')
  60. REMOTE_DIRECTORY=$(grep -i "$SERVER_NAME" $BACKUP_LIST | awk -F ' ' '{print $3}')
  61. REMOTE_PASSWORD=$(grep -i "$SERVER_NAME" $BACKUP_LIST | awk -F ' ' '{print $4}')
  62. REMOTE_SERVER=$REMOTE_SERVER:$REMOTE_DIRECTORY
  63. NOW=$(date +"%Y-%m-%d %H:%M:%S")
  64. echo "$NOW Starting restore from $REMOTE_SERVER" >> /var/log/remotebackups.log
  65. rsync -ratlzv --rsh="/usr/bin/sshpass -p $REMOTE_PASSWORD ssh -p $REMOTE_SSH_PORT -o StrictHostKeyChecking=no" $REMOTE_SERVER/backup $SERVER_DIRECTORY
  66. if [ ! "$?" = "0" ]; then
  67. echo "$NOW Restore from $REMOTE_SERVER failed" >> /var/log/remotebackups.log
  68. # Send a warning email
  69. echo "Restore from $REMOTE_SERVER failed" | mail -s "${PROJECT_NAME} restore from friend" $ADMIN_EMAIL_ADDRESS
  70. exit 790
  71. else
  72. echo "$NOW Restored encrypted data from $REMOTE_SERVER" >> /var/log/remotebackups.log
  73. fi
  74. # get the version of Go being used
  75. if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
  76. GO_VERSION=$(cat /usr/local/bin/${PROJECT_NAME}-utils-go | grep 'GO_VERSION=' | head -n 1 | awk -F '=' '{print $2}')
  77. else
  78. GO_VERSION=$(cat /usr/bin/${PROJECT_NAME}-utils-go | grep 'GO_VERSION=' | head -n 1 | awk -F '=' '{print $2}')
  79. fi
  80. # MariaDB password
  81. DATABASE_PASSWORD=$(cat /root/dbpass)
  82. function restore_directory_from_friend {
  83. if [ ! -d ${1} ]; then
  84. mkdir ${1}
  85. fi
  86. obnam restore -r $SERVER_DIRECTORY/backup/${2} --to ${1}
  87. }
  88. function copy_gpg_keys {
  89. echo $"Copying GPG keys from admin user to root"
  90. cp -r /home/$ADMIN_USERNAME/.gnupg /root
  91. }
  92. function restore_database_from_friend {
  93. DATABASE_PASSWORD=
  94. RESTORE_SUBDIR="root"
  95. if [ -d $SERVER_DIRECTORY/backup/${1} ]; then
  96. echo $"Restoring ${1} database"
  97. restore_directory_from_friend /root/temp${1}data ${1}data
  98. if [ ! -f /root/temp${1}data/${RESTORE_SUBDIR}/temp${1}data/${1}.sql ]; then
  99. echo $"Unable to restore ${1} database"
  100. rm -rf /root/temp${1}data
  101. exit 503
  102. fi
  103. mysqlsuccess=$(mysql -u root --password="$DATABASE_PASSWORD" ${1} -o < /root/temp${1}data/${RESTORE_SUBDIR}/temp${1}data/${1}.sql)
  104. if [ ! "$?" = "0" ]; then
  105. echo "$mysqlsuccess"
  106. exit 964
  107. fi
  108. shred -zu /root/temp${1}data/${RESTORE_SUBDIR}/temp${1}data/*
  109. rm -rf /root/temp${1}data
  110. echo $"Restoring ${1} installation"
  111. restore_directory_from_friend /root/temp${1} ${1}
  112. RESTORE_SUBDIR="var"
  113. if [ ${1} ]; then
  114. # special handling of ttrss
  115. if [[ ${2} == "ttrss" ]]; then
  116. if [ -d /etc/share/tt-rss ]; then
  117. rm -rf /etc/share/tt-rss
  118. mv /root/temp${1}/etc/share/tt-rss /etc/share/
  119. if [ ! "$?" = "0" ]; then
  120. exit 639
  121. fi
  122. if [ -d /etc/letsencrypt/live/${2} ]; then
  123. ln -s /etc/letsencrypt/live/${2}/privkey.pem /etc/ssl/private/${2}.key
  124. ln -s /etc/letsencrypt/live/${2}/fullchain.pem /etc/ssl/certs/${2}.pem
  125. else
  126. # Ensure that the bundled SSL cert is being used
  127. if [ -f /etc/ssl/certs/${2}.bundle.crt ]; then
  128. sed -i "s|${2}.crt|${2}.bundle.crt|g" /etc/nginx/sites-available/${2}
  129. fi
  130. fi
  131. fi
  132. fi
  133. if [ -d /var/www/${2}/htdocs ]; then
  134. if [ -d /root/temp${1}/${RESTORE_SUBDIR}/www/${2}/htdocs ]; then
  135. rm -rf /var/www/${2}/htdocs
  136. mv /root/temp${1}/${RESTORE_SUBDIR}/www/${2}/htdocs /var/www/${2}/
  137. if [ ! "$?" = "0" ]; then
  138. exit 683
  139. fi
  140. if [ -d /etc/letsencrypt/live/${2} ]; then
  141. ln -s /etc/letsencrypt/live/${2}/privkey.pem /etc/ssl/private/${2}.key
  142. ln -s /etc/letsencrypt/live/${2}/fullchain.pem /etc/ssl/certs/${2}.pem
  143. else
  144. # Ensure that the bundled SSL cert is being used
  145. if [ -f /etc/ssl/certs/${2}.bundle.crt ]; then
  146. sed -i "s|${2}.crt|${2}.bundle.crt|g" /etc/nginx/sites-available/${2}
  147. fi
  148. fi
  149. fi
  150. fi
  151. fi
  152. fi
  153. }
  154. function restore_configuration {
  155. if [[ $RESTORE_APP != 'all' ]]; then
  156. if [[ $RESTORE_APP != 'configuration' ]]; then
  157. return
  158. fi
  159. fi
  160. if [ -d $SERVER_DIRECTORY/backup/config ]; then
  161. echo $"Restoring configuration files"
  162. restore_directory_from_friend /root/tempconfig config
  163. cp -f /root/tempconfig/root/${PROJECT_NAME}.cfg $CONFIG_FILE
  164. if [ ! "$?" = "0" ]; then
  165. unmount_drive
  166. rm -rf /root/tempconfig
  167. exit 5372
  168. fi
  169. if [ -f $CONFIG_FILE ]; then
  170. # install according to the config file
  171. freedombone -c $CONFIG_FILE
  172. fi
  173. cp -f /root/tempconfig/root/${PROJECT_NAME}-completed.txt $COMPLETION_FILE
  174. if [ ! "$?" = "0" ]; then
  175. unmount_drive
  176. rm -rf /root/tempconfig
  177. exit 7252
  178. fi
  179. if [ -f /root/tempconfig${BACKUP_EXTRA_DIRECTORIES} ]; then
  180. cp -f /root/tempconfig${BACKUP_EXTRA_DIRECTORIES} ${BACKUP_EXTRA_DIRECTORIES}
  181. if [ ! "$?" = "0" ]; then
  182. unmount_drive
  183. rm -rf /root/tempconfig
  184. exit 62121
  185. fi
  186. fi
  187. # restore nginx password hashes
  188. if [ -f /root/tempconfig/root/htpasswd ]; then
  189. cp -f /root/tempconfig/root/htpasswd /etc/nginx/.htpasswd
  190. fi
  191. rm -rf /root/tempconfig
  192. fi
  193. }
  194. function restore_mariadb {
  195. if [[ $RESTORE_APP != 'all' ]]; then
  196. if [[ $RESTORE_APP != 'mariadb' ]]; then
  197. return
  198. fi
  199. fi
  200. if [ -d $SERVER_DIRECTORY/backup/mariadb ]; then
  201. echo $"Restoring MariaDB settings"
  202. restore_directory_from_friend /root/tempmariadb mariadb
  203. echo $"Get the MariaDB password from the backup"
  204. if [ ! -f /root/tempmariadb/root/tempmariadb/db ]; then
  205. echo $"MariaDB password file not found"
  206. exit 495
  207. fi
  208. BACKUP_MARIADB_PASSWORD=$(cat /root/tempmariadb/root/tempmariadb/db)
  209. if [[ "$BACKUP_MARIADB_PASSWORD" != "$DATABASE_PASSWORD" ]]; then
  210. echo $"Restore the MariaDB user table"
  211. mysqlsuccess=$(mysql -u root --password="$DATABASE_PASSWORD" mysql -o < /root/tempmariadb/root/tempmariadb/mysql.sql)
  212. if [ ! "$?" = "0" ]; then
  213. echo $"Try again using the password obtained from backup"
  214. mysqlsuccess=$(mysql -u root --password="$BACKUP_MARIADB_PASSWORD" mysql -o < /root/tempmariadb/root/tempmariadb/mysql.sql)
  215. fi
  216. if [ ! "$?" = "0" ]; then
  217. echo "$mysqlsuccess"
  218. exit 962
  219. fi
  220. echo $"Restarting database"
  221. service mysql restart
  222. echo $"Change the MariaDB password to the backup version"
  223. DATABASE_PASSWORD=$BACKUP_MARIADB_PASSWORD
  224. fi
  225. shred -zu /root/tempmariadb/root/tempmariadb/db
  226. rm -rf /root/tempmariadb
  227. # Change database password file
  228. echo "$DATABASE_PASSWORD" > /root/dbpass
  229. chmod 600 /root/dbpass
  230. fi
  231. }
  232. function restore_letsencrypt {
  233. if [[ $RESTORE_APP != 'all' ]]; then
  234. if [[ $RESTORE_APP != 'letsencrypt' ]]; then
  235. return
  236. fi
  237. fi
  238. if [ -d $SERVER_DIRECTORY/backup/letsencrypt ]; then
  239. echo $"Restoring Lets Encrypt settings"
  240. restore_directory_from_friend / letsencrypt
  241. fi
  242. }
  243. function restore_tor {
  244. if [[ $RESTORE_APP != 'all' ]]; then
  245. if [[ $RESTORE_APP != 'tor' ]]; then
  246. return
  247. fi
  248. fi
  249. if [ -d $SERVER_DIRECTORY/backup/tor ]; then
  250. echo $"Restoring Tor settings"
  251. restore_directory_from_friend / tor
  252. fi
  253. }
  254. function restore_mutt_settings {
  255. if [[ $RESTORE_APP != 'all' ]]; then
  256. if [[ $RESTORE_APP != 'mutt' ]]; then
  257. return
  258. fi
  259. fi
  260. for d in $SERVER_DIRECTORY/backup/mutt/*/ ; do
  261. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  262. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  263. if [ -d $SERVER_DIRECTORY/backup/mutt/$USERNAME ]; then
  264. if [ ! -d /home/$USERNAME ]; then
  265. ${PROJECT_NAME}-adduser $USERNAME
  266. fi
  267. echo $"Restoring Mutt settings for $USERNAME"
  268. restore_directory_from_friend /root/tempmutt mutt/$USERNAME
  269. if [ -f /root/tempmutt/home/$USERNAME/tempbackup/.muttrc ]; then
  270. cp -f /root/tempmutt/home/$USERNAME/tempbackup/.muttrc /home/$USERNAME/.muttrc
  271. fi
  272. if [ -f /root/tempmutt/home/$USERNAME/tempbackup/Muttrc ]; then
  273. cp -f /root/tempmutt/home/$USERNAME/tempbackup/Muttrc /etc/Muttrc
  274. fi
  275. if [ ! "$?" = "0" ]; then
  276. rm -rf /root/tempmutt
  277. exit 276
  278. fi
  279. rm -rf /root/tempmutt
  280. fi
  281. fi
  282. done
  283. }
  284. function restore_gpg {
  285. if [[ $RESTORE_APP != 'all' ]]; then
  286. if [[ $RESTORE_APP != 'gpg' ]]; then
  287. return
  288. fi
  289. fi
  290. for d in $SERVER_DIRECTORY/backup/gnupg/*/ ; do
  291. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  292. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  293. if [ -d $SERVER_DIRECTORY/backup/gnupg/$USERNAME ]; then
  294. if [ ! -d /home/$USERNAME ]; then
  295. ${PROJECT_NAME}-adduser $USERNAME
  296. fi
  297. echo $"Restoring gnupg settings for $USERNAME"
  298. restore_directory_from_friend /root/tempgnupg gnupg/$USERNAME
  299. cp -r /root/tempgnupg/home/$USERNAME/.gnupg /home/$USERNAME/
  300. if [ ! "$?" = "0" ]; then
  301. rm -rf /root/tempgnupg
  302. exit 276
  303. fi
  304. rm -rf /root/tempgnupg
  305. if [[ "$USERNAME" == "$ADMIN_USERNAME" ]]; then
  306. cp -r /home/$USERNAME/.gnupg /root
  307. if [ ! "$?" = "0" ]; then
  308. exit 283
  309. fi
  310. fi
  311. fi
  312. fi
  313. done
  314. }
  315. function restore_procmail {
  316. if [[ $RESTORE_APP != 'all' ]]; then
  317. if [[ $RESTORE_APP != 'procmail' ]]; then
  318. return
  319. fi
  320. fi
  321. for d in $SERVER_DIRECTORY/backup/procmail/*/ ; do
  322. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  323. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  324. if [ -d $SERVER_DIRECTORY/backup/procmail/$USERNAME ]; then
  325. if [ ! -d /home/$USERNAME ]; then
  326. ${PROJECT_NAME}-adduser $USERNAME
  327. fi
  328. echo $"Restoring procmail settings for $USERNAME"
  329. restore_directory_from_friend /root/tempprocmail procmail/$USERNAME
  330. cp -f /root/tempprocmail/home/$USERNAME/tempbackup/.procmailrc /home/$USERNAME/
  331. if [ ! "$?" = "0" ]; then
  332. rm -rf /root/tempprocmail
  333. exit 276
  334. fi
  335. rm -rf /root/tempprocmail
  336. fi
  337. fi
  338. done
  339. }
  340. function restore_spamassassin {
  341. if [[ $RESTORE_APP != 'all' ]]; then
  342. if [[ $RESTORE_APP != 'spamassassin' ]]; then
  343. return
  344. fi
  345. fi
  346. for d in $SERVER_DIRECTORY/backup/spamassassin/*/ ; do
  347. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  348. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  349. if [ -d $SERVER_DIRECTORY/backup/spamassassin/$USERNAME ]; then
  350. if [ ! -d /home/$USERNAME ]; then
  351. ${PROJECT_NAME}-adduser $USERNAME
  352. fi
  353. echo $"Restoring spamassassin settings for $USERNAME"
  354. restore_directory_from_friend /root/tempspamassassin spamassassin/$USERNAME
  355. cp -rf /root/tempspamassassin/home/$USERNAME/.spamassassin /home/$USERNAME/
  356. if [ ! "$?" = "0" ]; then
  357. rm -rf /root/tempspamassassin
  358. exit 276
  359. fi
  360. rm -rf /root/tempspamassassin
  361. fi
  362. fi
  363. done
  364. }
  365. function restore_admin_readme {
  366. if [[ $RESTORE_APP != 'all' ]]; then
  367. if [[ $RESTORE_APP != 'readme' ]]; then
  368. return
  369. fi
  370. fi
  371. if [ -d $SERVER_DIRECTORY/backup/readme ]; then
  372. echo $"Restoring README"
  373. restore_directory_from_friend /root/tempreadme readme
  374. cp -f /root/tempreadme/home/$ADMIN_USERNAME/tempbackup/README /home/$ADMIN_USERNAME/
  375. if [ ! "$?" = "0" ]; then
  376. rm -rf /root/tempreadme
  377. exit 276
  378. fi
  379. rm -rf /root/tempreadme
  380. fi
  381. }
  382. function restore_ipfs {
  383. if [[ $RESTORE_APP != 'all' ]]; then
  384. if [[ $RESTORE_APP != 'ipfs' ]]; then
  385. return
  386. fi
  387. fi
  388. if [ -d $SERVER_DIRECTORY/backup/ipfs ]; then
  389. echo $"Restoring IPFS"
  390. restore_directory_from_friend /root/tempipfs ipfs
  391. cp -rf /root/tempipfs/home/$ADMIN_USERNAME/.ipfs/* /home/$ADMIN_USERNAME/.ipfs
  392. if [ ! "$?" = "0" ]; then
  393. rm -rf /root/tempipfs
  394. exit 276
  395. fi
  396. rm -rf /root/tempipfs
  397. fi
  398. }
  399. function restore_ssh_keys {
  400. if [[ $RESTORE_APP != 'all' ]]; then
  401. if [[ $RESTORE_APP != 'ssh' ]]; then
  402. return
  403. fi
  404. fi
  405. for d in $SERVER_DIRECTORY/backup/ssh/*/ ; do
  406. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  407. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  408. if [ -d $SERVER_DIRECTORY/backup/ssh/$USERNAME ]; then
  409. if [ ! -d /home/$USERNAME ]; then
  410. ${PROJECT_NAME}-adduser $USERNAME
  411. fi
  412. echo $"Restoring ssh keys for $USERNAME"
  413. restore_directory_from_friend /root/tempssh ssh/$USERNAME
  414. cp -r /root/tempssh/home/$USERNAME/.ssh /home/$USERNAME/
  415. if [ ! "$?" = "0" ]; then
  416. rm -rf /root/tempssh
  417. exit 664
  418. fi
  419. rm -rf /root/tempssh
  420. fi
  421. fi
  422. done
  423. }
  424. function restore_user_config {
  425. if [[ $RESTORE_APP != 'all' ]]; then
  426. if [[ $RESTORE_APP != 'userconfig' ]]; then
  427. return
  428. fi
  429. fi
  430. for d in $SERVER_DIRECTORY/backup/config/*/ ; do
  431. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  432. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  433. if [ -d $SERVER_DIRECTORY/backup/config/$USERNAME ]; then
  434. if [ ! -d /home/$USERNAME ]; then
  435. ${PROJECT_NAME}-adduser $USERNAME
  436. fi
  437. echo $"Restoring config files for $USERNAME"
  438. restore_directory_from_friend /root/tempconfig config/$USERNAME
  439. cp -r /root/tempconfig/home/$USERNAME/.config /home/$USERNAME/
  440. if [ ! "$?" = "0" ]; then
  441. rm -rf /root/tempconfig
  442. exit 664
  443. fi
  444. rm -rf /root/tempconfig
  445. fi
  446. fi
  447. done
  448. }
  449. function gpg_pubkey_from_email {
  450. key_owner_username=$1
  451. key_email_address=$2
  452. key_id=
  453. if [[ $key_owner_username != "root" ]]; then
  454. key_id=$(su -c "gpg --list-keys $key_email_address | grep 'pub '" - $key_owner_username | awk -F ' ' '{print $2}' | awk -F '/' '{print $2}')
  455. else
  456. key_id=$(gpg --list-keys $key_email_address | grep 'pub ' | awk -F ' ' '{print $2}' | awk -F '/' '{print $2}')
  457. fi
  458. echo $key_id
  459. }
  460. function restore_user_monkeysphere {
  461. if [[ $RESTORE_APP != 'all' ]]; then
  462. if [[ $RESTORE_APP != 'usermonkeysphere' ]]; then
  463. return
  464. fi
  465. fi
  466. for d in $SERVER_DIRECTORY/backup/monkeysphere/*/ ; do
  467. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  468. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  469. if [ -d $SERVER_DIRECTORY/backup/monkeysphere/$USERNAME ]; then
  470. if [ ! -d /home/$USERNAME ]; then
  471. ${PROJECT_NAME}-adduser $USERNAME
  472. fi
  473. echo $"Restoring monkeysphere ids for $USERNAME"
  474. restore_directory_from_friend /root/tempmonkeysphere monkeysphere/$USERNAME
  475. cp -r /root/tempmonkeysphere/home/$USERNAME/.monkeysphere /home/$USERNAME/
  476. if [ ! "$?" = "0" ]; then
  477. rm -rf /root/tempmonkeysphere
  478. exit 664
  479. fi
  480. rm -rf /root/tempmonkeysphere
  481. fi
  482. fi
  483. # The admin user is the identity certifier
  484. MY_EMAIL_ADDRESS="${ADMIN_USERNAME}@${HOSTNAME}"
  485. if grep -q "MY_EMAIL_ADDRESS" $CONFIG_FILE; then
  486. MY_EMAIL_ADDRESS=$(grep "MY_EMAIL_ADDRESS" $CONFIG_FILE | awk -F '=' '{print $2}')
  487. fi
  488. MY_GPG_PUBLIC_KEY_ID=$(gpg_pubkey_from_email "$ADMIN_USERNAME" "$MY_EMAIL_ADDRESS")
  489. fpr=$(gpg --with-colons --fingerprint $MY_GPG_PUBLIC_KEY_ID | grep fpr | head -n 1 | awk -F ':' '{print $10}')
  490. monkeysphere-authentication add-identity-certifier $fpr
  491. monkeysphere-authentication update-users
  492. done
  493. }
  494. function restore_user_fin {
  495. if [[ $RESTORE_APP != 'all' ]]; then
  496. if [[ $RESTORE_APP != 'userfin' ]]; then
  497. return
  498. fi
  499. fi
  500. for d in $SERVER_DIRECTORY/backup/fin/*/ ; do
  501. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  502. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  503. if [ -d $SERVER_DIRECTORY/backup/fin/$USERNAME ]; then
  504. if [ ! -d /home/$USERNAME ]; then
  505. ${PROJECT_NAME}-adduser $USERNAME
  506. fi
  507. echo $"Restoring fin files for $USERNAME"
  508. restore_directory_from_friend /root/tempfin fin/$USERNAME
  509. cp -r /root/tempfin/home/$USERNAME/.fin /home/$USERNAME/
  510. if [ ! "$?" = "0" ]; then
  511. rm -rf /root/tempfin
  512. exit 664
  513. fi
  514. rm -rf /root/tempfin
  515. fi
  516. fi
  517. done
  518. }
  519. function restore_user_local {
  520. if [[ $RESTORE_APP != 'all' ]]; then
  521. if [[ $RESTORE_APP != 'userlocal' ]]; then
  522. return
  523. fi
  524. fi
  525. for d in $SERVER_DIRECTORY/backup/local/*/ ; do
  526. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  527. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  528. if [ -d $SERVER_DIRECTORY/backup/local/$USERNAME ]; then
  529. if [ ! -d /home/$USERNAME ]; then
  530. ${PROJECT_NAME}-adduser $USERNAME
  531. fi
  532. echo $"Restoring local files for $USERNAME"
  533. restore_directory_from_friend /root/templocal local/$USERNAME
  534. cp -r /root/templocal/home/$USERNAME/.local /home/$USERNAME/
  535. if [ ! "$?" = "0" ]; then
  536. rm -rf /root/templocal
  537. exit 664
  538. fi
  539. rm -rf /root/templocal
  540. fi
  541. fi
  542. done
  543. }
  544. function restore_certs {
  545. if [[ $RESTORE_APP != 'all' ]]; then
  546. if [[ $RESTORE_APP != 'certs' ]]; then
  547. return
  548. fi
  549. fi
  550. if [ -d $SERVER_DIRECTORY/backup/ssl ]; then
  551. echo $"Restoring certificates"
  552. restore_directory_from_friend /root/tempssl ssl
  553. cp -r /root/tempssl/etc/ssl/* /etc/ssl
  554. if [ ! "$?" = "0" ]; then
  555. exit 276
  556. fi
  557. rm -rf /root/tempssl
  558. # restore ownership
  559. if [ -f /etc/ssl/private/xmpp.key ]; then
  560. chown prosody:prosody /etc/ssl/private/xmpp.key
  561. chown prosody:prosody /etc/ssl/certs/xmpp.*
  562. fi
  563. if [ -d /etc/dovecot ]; then
  564. chown root:dovecot /etc/ssl/private/dovecot.*
  565. chown root:dovecot /etc/ssl/certs/dovecot.*
  566. fi
  567. if [ -f /etc/ssl/private/exim.key ]; then
  568. cp /etc/ssl/private/exim.key /etc/exim4
  569. cp /etc/ssl/certs/exim.crt /etc/exim4
  570. cp /etc/ssl/certs/exim.dhparam /etc/exim4
  571. chown root:Debian-exim /etc/exim4/exim.key /etc/exim4/exim.crt /etc/exim4/exim.dhparam
  572. chmod 640 /etc/exim4/exim.key /etc/exim4/exim.crt /etc/exim4/exim.dhparam
  573. fi
  574. if [ -f /etc/ssl/private/mumble.key ]; then
  575. if [ -d /var/lib/mumble-server ]; then
  576. cp /etc/ssl/certs/mumble.* /var/lib/mumble-server
  577. cp /etc/ssl/private/mumble.key /var/lib/mumble-server
  578. chown -R mumble-server:mumble-server /var/lib/mumble-server
  579. fi
  580. fi
  581. fi
  582. }
  583. function restore_personal_settings {
  584. if [[ $RESTORE_APP != 'all' ]]; then
  585. if [[ $RESTORE_APP != 'personal' ]]; then
  586. return
  587. fi
  588. fi
  589. for d in $SERVER_DIRECTORY/backup/personal/*/ ; do
  590. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  591. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  592. if [ -d $SERVER_DIRECTORY/backup/personal/$USERNAME ]; then
  593. if [ ! -d /home/$USERNAME ]; then
  594. ${PROJECT_NAME}-adduser $USERNAME
  595. fi
  596. echo $"Restoring personal settings for $USERNAME"
  597. restore_directory_from_friend /root/temppersonal personal/$USERNAME
  598. if [ -d /home/$USERNAME/personal ]; then
  599. rm -rf /home/$USERNAME/personal
  600. fi
  601. mv /root/temppersonal/home/$USERNAME/personal /home/$USERNAME
  602. if [ ! "$?" = "0" ]; then
  603. exit 184
  604. fi
  605. rm -rf /root/temppersonal
  606. fi
  607. fi
  608. done
  609. }
  610. function restore_mailing_list {
  611. if [[ $RESTORE_APP != 'all' ]]; then
  612. if [[ $RESTORE_APP != 'mailinglist' ]]; then
  613. return
  614. fi
  615. fi
  616. if [ -d /var/spool/mlmmj ]; then
  617. echo $"Restoring public mailing list"
  618. restore_directory_from_friend /root/tempmailinglist mailinglist
  619. cp -r /root/tempmailinglist/root/spool/mlmmj/* /var/spool/mlmmj
  620. if [ ! "$?" = "0" ]; then
  621. exit 526
  622. fi
  623. rm -rf /root/tempmailinglist
  624. fi
  625. }
  626. function restore_xmpp {
  627. if [[ $RESTORE_APP != 'all' ]]; then
  628. if [[ $RESTORE_APP != 'xmpp' ]]; then
  629. return
  630. fi
  631. fi
  632. if [ -d /var/lib/prosody ]; then
  633. echo $"Restoring XMPP settings"
  634. restore_directory_from_friend /root/tempxmpp xmpp
  635. cp -r /root/tempxmpp/var/lib/prosody/* /var/lib/prosody
  636. if [ ! "$?" = "0" ]; then
  637. exit 725
  638. fi
  639. rm -rf /root/tempxmpp
  640. service prosody restart
  641. chown -R prosody:prosody /var/lib/prosody/*
  642. fi
  643. }
  644. function restore_gnu_social {
  645. if [[ $RESTORE_APP != 'all' ]]; then
  646. if [[ $RESTORE_APP != 'gnusocial' ]]; then
  647. return
  648. fi
  649. fi
  650. if grep -q "GNU Social domain" $COMPLETION_FILE; then
  651. MICROBLOG_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "GNU Social domain" | awk -F ':' '{print $2}')
  652. # stop the daemons
  653. cd /var/www/${MICROBLOG_DOMAIN_NAME}/htdocs
  654. scripts/stopdaemons.sh
  655. restore_database_from_friend gnusocial ${MICROBLOG_DOMAIN_NAME}
  656. if [ -d /root/tempgnusocial ]; then
  657. rm -rf /root/tempgnusocial
  658. fi
  659. # start the daemons
  660. cd /var/www/${MICROBLOG_DOMAIN_NAME}/htdocs
  661. scripts/startdaemons.sh
  662. fi
  663. }
  664. function restore_rss {
  665. if [[ $RESTORE_APP != 'all' ]]; then
  666. if [[ $RESTORE_APP != 'ttrss' ]]; then
  667. return
  668. fi
  669. fi
  670. if grep -q "RSS reader domain" $COMPLETION_FILE; then
  671. RSS_READER_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "RSS reader domain" | awk -F ':' '{print $2}')
  672. restore_database_from_friend ttrss ${RSS_READER_DOMAIN_NAME}
  673. if [ -d $SERVER_DIRECTORY/backup/ttrss ]; then
  674. chown -R www-data:www-data /etc/share/tt-rss
  675. fi
  676. if [ -d /root/tempttrss ]; then
  677. rm -rf /root/tempttrss
  678. fi
  679. fi
  680. }
  681. function restore_hubzilla {
  682. if [[ $RESTORE_APP != 'all' ]]; then
  683. if [[ $RESTORE_APP != 'hubzilla' ]]; then
  684. return
  685. fi
  686. fi
  687. if grep -q "Hubzilla domain" $COMPLETION_FILE; then
  688. HUBZILLA_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "Hubzilla domain" | awk -F ':' '{print $2}')
  689. restore_database_from_friend hubzilla ${HUBZILLA_DOMAIN_NAME}
  690. if [ -d $SERVER_DIRECTORY/backup/hubzilla ]; then
  691. if [ ! -d /var/www/${HUBZILLA_DOMAIN_NAME}/htdocs/store/[data]/smarty3 ]; then
  692. mkdir -p /var/www/${HUBZILLA_DOMAIN_NAME}/htdocs/store/[data]/smarty3
  693. fi
  694. chmod 777 /var/www/${HUBZILLA_DOMAIN_NAME}/htdocs/store/[data]/smarty3
  695. chown -R www-data:www-data /var/www/${HUBZILLA_DOMAIN_NAME}/htdocs/*
  696. fi
  697. if [ -d /root/temphubzilla ]; then
  698. rm -rf /root/temphubzilla
  699. fi
  700. fi
  701. }
  702. function restore_syncthing {
  703. if [[ $RESTORE_APP != 'all' ]]; then
  704. if [[ $RESTORE_APP != 'syncthing' ]]; then
  705. return
  706. fi
  707. fi
  708. if [ -f /etc/systemd/system/syncthing.service ]; then
  709. systemctl stop syncthing
  710. systemctl stop cron
  711. fi
  712. if [ -d $SERVER_DIRECTORY/backup/syncthingconfig ]; then
  713. echo $"Restoring syncthing configuration"
  714. restore_directory_from_friend /root/tempsyncthingconfig syncthingconfig
  715. cp -r /root/tempsyncthingconfig/* /
  716. if [ ! "$?" = "0" ]; then
  717. unmount_drive
  718. systemctl start syncthing
  719. systemctl start cron
  720. exit 6833
  721. fi
  722. rm -rf /root/tempsyncthingconfig
  723. fi
  724. if [ -d $SERVER_DIRECTORY/backup/syncthingshared ]; then
  725. echo $"Restoring syncthing shared files"
  726. restore_directory_from_friend /root/tempsyncthingshared syncthingshared
  727. cp -r /root/tempsyncthingshared/* /
  728. if [ ! "$?" = "0" ]; then
  729. unmount_drive
  730. systemctl start syncthing
  731. systemctl start cron
  732. exit 37904
  733. fi
  734. rm -rf /root/tempsyncthingshared
  735. fi
  736. if [ -d $SERVER_DIRECTORY/backup/syncthing ]; then
  737. for d in $SERVER_DIRECTORY/backup/syncthing/*/ ; do
  738. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  739. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  740. if [ ! -d /home/$USERNAME ]; then
  741. ${PROJECT_NAME}-adduser $USERNAME
  742. fi
  743. echo $"Restoring syncthing files for $USERNAME"
  744. restore_directory_from_friend /root/tempsyncthing syncthing/$USERNAME
  745. cp -r /root/tempsyncthing/home/$USERNAME/Sync /home/$USERNAME/
  746. if [ ! "$?" = "0" ]; then
  747. rm -rf /root/tempsyncthing
  748. unmount_drive
  749. systemctl start syncthing
  750. systemctl start cron
  751. exit 68438
  752. fi
  753. rm -rf /root/tempsyncthing
  754. # restore device IDs from config settings
  755. if [ -f /home/$USERNAME/.config/syncthing/.syncthing-server-id ]; then
  756. cp /home/$USERNAME/.config/syncthing/.syncthing-server-id /home/$USERNAME/.syncthing-server-id
  757. chown $USERNAME:$USERNAME /home/$USERNAME/.syncthing-server-id
  758. fi
  759. if [ -f /home/$USERNAME/.config/syncthing/.syncthingids ]; then
  760. cp /home/$USERNAME/.config/syncthing/.syncthingids /home/$USERNAME/.syncthingids
  761. chown $USERNAME:$USERNAME /home/$USERNAME/.syncthingids
  762. fi
  763. fi
  764. done
  765. fi
  766. if [ -f /etc/systemd/system/syncthing.service ]; then
  767. systemctl start syncthing
  768. systemctl start cron
  769. fi
  770. }
  771. function restore_mediagoblin {
  772. if [[ $RESTORE_APP != 'all' ]]; then
  773. if [[ $RESTORE_APP != 'mediagoblin' ]]; then
  774. return
  775. fi
  776. fi
  777. if grep -q "Mediagoblin domain" $COMPLETION_FILE; then
  778. MEDIAGOBLIN_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "Mediagoblin domain" | awk -F ':' '{print $2}')
  779. if [ -d $SERVER_DIRECTORY/backup/mediagoblin ]; then
  780. echo $"Restoring Mediagoblin installation"
  781. restore_directory_from_friend /root/tempmediagoblin mediagoblin
  782. cp -r /root/tempmediagoblin/* /
  783. if [ ! "$?" = "0" ]; then
  784. exit 5626
  785. fi
  786. rm -rf /root/tempmediagoblin
  787. fi
  788. chown -hR mediagoblin:www-data /var/www/$MEDIAGOBLIN_DOMAIN_NAME/htdocs
  789. fi
  790. }
  791. function restore_gogs {
  792. export GVM_ROOT=$GVM_HOME
  793. if [ -d $GVM_ROOT/bin ]; then
  794. cd $GVM_ROOT/bin
  795. [[ -s "$GVM_ROOT/scripts/gvm" ]] && source "$GVM_ROOT/scripts/gvm"
  796. gvm use go${GO_VERSION} --default
  797. systemctl set-environment GOPATH=$GOPATH
  798. fi
  799. if [[ $RESTORE_APP != 'all' ]]; then
  800. if [[ $RESTORE_APP != 'gogs' ]]; then
  801. return
  802. fi
  803. fi
  804. if grep -q "Gogs domain" $COMPLETION_FILE; then
  805. GIT_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "Gogs domain" | awk -F ':' '{print $2}')
  806. restore_database_from_friend gogs $GIT_DOMAIN_NAME
  807. if [ -d $SERVER_DIRECTORY/backup/gogs ]; then
  808. if [ ! -d $GOPATH/src/github.com/gogits/gogs/custom ]; then
  809. mkdir -p $GOPATH/src/github.com/gogits/gogs/custom
  810. fi
  811. cp -r /root/tempgogs/$GOPATH/src/github.com/gogits/gogs/custom/* $GOPATH/src/github.com/gogits/gogs/custom/
  812. if [ ! "$?" = "0" ]; then
  813. exit 5885
  814. fi
  815. echo $"Restoring Gogs repos"
  816. restore_directory_from_friend /root/tempgogsrepos gogsrepos
  817. cp -r /root/tempgogsrepos/home/git/gogs-repositories/* /home/git/gogs-repositories/
  818. if [ ! "$?" = "0" ]; then
  819. exit 7649
  820. fi
  821. echo $"Restoring Gogs authorized_keys"
  822. restore_directory_from_friend /root/tempgogsssh gogsssh
  823. if [ ! -d /home/git/.ssh ]; then
  824. mkdir /home/git/.ssh
  825. fi
  826. cp -r /root/tempgogsssh/home/git/.ssh/* /home/git/.ssh/
  827. if [ ! "$?" = "0" ]; then
  828. exit 74239
  829. fi
  830. rm -rf /root/tempgogs
  831. rm -rf /root/tempgogsrepos
  832. rm -rf /root/tempgogsssh
  833. chown -R git:git /home/git
  834. fi
  835. fi
  836. }
  837. function restore_wiki {
  838. if [[ $RESTORE_APP != 'all' ]]; then
  839. if [[ $RESTORE_APP != 'wiki' ]]; then
  840. return
  841. fi
  842. fi
  843. if [ -d $SERVER_DIRECTORY/backup/wiki ]; then
  844. WIKI_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "Wiki domain" | awk -F ':' '{print $2}')
  845. echo $"Restoring Wiki installation $WIKI_DOMAIN_NAME"
  846. restore_directory_from_friend /root/tempwiki wiki
  847. cp -r /root/tempwiki/var/lib/dokuwiki/* /var/lib/dokuwiki/
  848. if [ ! "$?" = "0" ]; then
  849. exit 868
  850. fi
  851. restore_directory_from_friend /root/tempwiki2 wiki2
  852. cp -r /root/tempwiki2/etc/dokuwiki/* /etc/dokuwiki/
  853. if [ ! "$?" = "0" ]; then
  854. exit 869
  855. fi
  856. rm -rf /root/tempwiki
  857. rm -rf /root/tempwiki2
  858. chown -R www-data:www-data /var/lib/dokuwiki/*
  859. # Ensure that the bundled SSL cert is being used
  860. if [ -f /etc/ssl/certs/${WIKI_DOMAIN_NAME}.bundle.crt ]; then
  861. sed -i "s|${WIKI_DOMAIN_NAME}.crt|${WIKI_DOMAIN_NAME}.bundle.crt|g" /etc/nginx/sites-available/${WIKI_DOMAIN_NAME}
  862. fi
  863. if [ -d /etc/letsencrypt/live/${WIKI_DOMAIN_NAME} ]; then
  864. ln -s /etc/letsencrypt/live/${WIKI_DOMAIN_NAME}/privkey.pem /etc/ssl/private/${WIKI_DOMAIN_NAME}.key
  865. ln -s /etc/letsencrypt/live/${WIKI_DOMAIN_NAME}/fullchain.pem /etc/ssl/certs/${WIKI_DOMAIN_NAME}.pem
  866. fi
  867. fi
  868. }
  869. function restore_blog {
  870. if [[ $RESTORE_APP != 'all' ]]; then
  871. if [[ $RESTORE_APP != 'blog' ]]; then
  872. return
  873. fi
  874. fi
  875. if [ -d $SERVER_DIRECTORY/backup/blog ]; then
  876. FULLBLOG_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "Blog domain" | awk -F ':' '{print $2}')
  877. echo $"Restoring blog installation $FULLBLOG_DOMAIN_NAME"
  878. mkdir /root/tempblog
  879. restore_directory_from_friend /root/tempblog blog
  880. rm -rf /var/www/${FULLBLOG_DOMAIN_NAME}/htdocs
  881. cp -r /root/tempblog/var/www/${FULLBLOG_DOMAIN_NAME}/htdocs /var/www/${FULLBLOG_DOMAIN_NAME}/
  882. if [ ! "$?" = "0" ]; then
  883. exit 593
  884. fi
  885. rm -rf /root/tempblog
  886. if [ ! -d /var/www/${FULLBLOG_DOMAIN_NAME}/htdocs/content ]; then
  887. echo $"No content directory found after restoring blog"
  888. exit 287
  889. fi
  890. # Ensure that the bundled SSL cert is being used
  891. if [ -f /etc/ssl/certs/${FULLBLOG_DOMAIN_NAME}.bundle.crt ]; then
  892. sed -i "s|${FULLBLOG_DOMAIN_NAME}.crt|${FULLBLOG_DOMAIN_NAME}.bundle.crt|g" /etc/nginx/sites-available/${FULLBLOG_DOMAIN_NAME}
  893. fi
  894. for d in /home/*/ ; do
  895. USERNAME=$(echo "$d" | awk -F '/' '{print $3}')
  896. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  897. if [ -d /var/www/${FULLBLOG_DOMAIN_NAME}/htdocs/content/$USERNAME/blog/uncategorized/post ]; then
  898. mv /var/www/${FULLBLOG_DOMAIN_NAME}/htdocs/content/$USERNAME/blog/*.md /var/www/${FULLBLOG_DOMAIN_NAME}/htdocs/content/$USERNAME/blog/uncategorized/post
  899. fi
  900. done
  901. if [ -d /etc/letsencrypt/live/${FULLBLOG_DOMAIN_NAME} ]; then
  902. ln -s /etc/letsencrypt/live/${FULLBLOG_DOMAIN_NAME}/privkey.pem /etc/ssl/private/${FULLBLOG_DOMAIN_NAME}.key
  903. ln -s /etc/letsencrypt/live/${FULLBLOG_DOMAIN_NAME}/fullchain.pem /etc/ssl/certs/${FULLBLOG_DOMAIN_NAME}.pem
  904. fi
  905. fi
  906. }
  907. function restore_cjdns {
  908. if [[ $RESTORE_APP != 'all' ]]; then
  909. if [[ $RESTORE_APP != 'cjdns' ]]; then
  910. return
  911. fi
  912. fi
  913. if [ -d $SERVER_DIRECTORY/backup/cjdns ]; then
  914. echo $"Restoring cjdns installation"
  915. restore_directory_from_friend /root/tempcjdns cjdns
  916. rm -rf /etc/cjdns
  917. cp -r /root/tempcjdns/etc/cjdns /etc/
  918. if [ ! "$?" = "0" ]; then
  919. exit 7438
  920. fi
  921. rm -rf /root/tempcjdns
  922. fi
  923. }
  924. function restore_voip {
  925. if [[ $RESTORE_APP != 'all' ]]; then
  926. if [[ $RESTORE_APP != 'voip' ]]; then
  927. return
  928. fi
  929. fi
  930. if [ -d $SERVER_DIRECTORY/backup/voip ]; then
  931. echo $"Restoring VoIP settings"
  932. restore_directory_from_friend /root/tempvoip voip
  933. cp -f /root/tempvoip/home/$ADMIN_USERNAME/tempbackup/mumble-server.ini /etc/
  934. if [ ! "$?" = "0" ]; then
  935. rm -rf /root/tempvoip
  936. exit 7823
  937. fi
  938. cp -f /root/tempvoip/home/$ADMIN_USERNAME/tempbackup/sipwitch.conf /etc/sipwitch.conf
  939. if [ ! "$?" = "0" ]; then
  940. rm -rf /root/tempvoip
  941. exit 7823
  942. fi
  943. cp -f /root/tempvoip/home/$ADMIN_USERNAME/tempbackup/mumble-server.sqlite /var/lib/mumble-server/
  944. if [ ! "$?" = "0" ]; then
  945. rm -rf /root/tempvoip
  946. exit 276
  947. fi
  948. rm -rf /root/tempvoip
  949. cp /etc/ssl/certs/mumble* /var/lib/mumble-server
  950. cp /etc/ssl/private/mumble* /var/lib/mumble-server
  951. chown -R mumble-server:mumble-server /var/lib/mumble-server
  952. service sipwitch restart
  953. service mumble-server restart
  954. fi
  955. }
  956. function restore_tox {
  957. if [[ $RESTORE_APP != 'all' ]]; then
  958. if [[ $RESTORE_APP != 'tox' ]]; then
  959. return
  960. fi
  961. fi
  962. if [ -d $SERVER_DIRECTORY/backup/tox ]; then
  963. echo $"Restoring Tox node settings"
  964. restore_directory_from_friend / tox
  965. if [ ! "$?" = "0" ]; then
  966. exit 93653
  967. fi
  968. cp /var/lib/tox-bootstrapd/tox-bootstrapd.conf /etc/tox-bootstrapd.conf
  969. systemctl restart tox-bootstrapd.service
  970. if [ ! "$?" = "0" ]; then
  971. systemctl status tox-bootstrapd.service
  972. exit 59369
  973. fi
  974. fi
  975. }
  976. function restore_email {
  977. if [[ $RESTORE_APP != 'all' ]]; then
  978. if [[ $RESTORE_APP != 'email' ]]; then
  979. return
  980. fi
  981. fi
  982. for d in $SERVER_DIRECTORY/backup/mail/*/ ; do
  983. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  984. if [[ $USERNAME != "git" && $USERNAME != "mirrors" && $USERNAME != "sync" ]]; then
  985. if [ -d $SERVER_DIRECTORY/backup/mail/$USERNAME ]; then
  986. if [ ! -d /home/$USERNAME ]; then
  987. ${PROJECT_NAME}-adduser $USERNAME
  988. fi
  989. echo $"Restoring emails for $USERNAME"
  990. restore_directory_from_friend /root/tempmail mail/$USERNAME
  991. if [ ! -d /home/$USERNAME/Maildir ]; then
  992. mkdir /home/$USERNAME/Maildir
  993. fi
  994. tar -xzvf /root/tempmail/root/tempbackupemail/$USERNAME/maildir.tar.gz -C /
  995. if [ ! "$?" = "0" ]; then
  996. exit 927
  997. fi
  998. rm -rf /root/tempmail
  999. fi
  1000. fi
  1001. done
  1002. }
  1003. function restore_dlna {
  1004. if [[ $RESTORE_APP != 'all' ]]; then
  1005. if [[ $RESTORE_APP != 'dlna' ]]; then
  1006. return
  1007. fi
  1008. fi
  1009. if [ -d /var/cache/minidlna ]; then
  1010. if [ -d $SERVER_DIRECTORY/backup/dlna ]; then
  1011. echo $"Restoring DLNA cache"
  1012. restore_directory_from_friend /root/tempdlna dlna
  1013. cp -r /root/tempdlna/var/cache/minidlna/* /var/cache/minidlna/
  1014. if [ ! "$?" = "0" ]; then
  1015. exit 982
  1016. fi
  1017. rm -rf /root/tempdlna
  1018. fi
  1019. fi
  1020. }
  1021. # Social key management
  1022. # Recover any key fragments and reconstruct the gpg key
  1023. ${PROJECT_NAME}-recoverkey -u ${ADMIN_USERNAME} -l $BACKUP_LIST
  1024. copy_gpg_keys
  1025. restore_configuration
  1026. restore_mariadb
  1027. restore_letsencrypt
  1028. restore_mutt_settings
  1029. restore_gpg
  1030. restore_procmail
  1031. restore_spamassassin
  1032. restore_admin_readme
  1033. restore_ipfs
  1034. restore_ssh_keys
  1035. restore_user_config
  1036. restore_user_monkeysphere
  1037. restore_user_fin
  1038. restore_user_local
  1039. restore_certs
  1040. restore_personal_settings
  1041. restore_mailing_list
  1042. restore_xmpp
  1043. restore_gnu_social
  1044. restore_hubzilla
  1045. restore_rss
  1046. restore_syncthing
  1047. restore_mediagoblin
  1048. restore_gogs
  1049. restore_wiki
  1050. restore_blog
  1051. restore_cjdns
  1052. restore_voip
  1053. restore_tox
  1054. restore_email
  1055. restore_dlna
  1056. echo $"*** Remote restore was successful ***"
  1057. exit 0