wrinstaller.sh 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. #!/bin/sh
  2. #
  3. # Acta, non verba
  4. #
  5. OS_NAME=`uname`
  6. case $OS_NAME in
  7. FreeBSD)
  8. DIALOG=${DIALOG=dialog}
  9. FETCH="/usr/bin/fetch"
  10. APACHE_VERSION="apache24"
  11. APACHE_DATA_PATH="/usr/local/www/apache24/data/"
  12. APACHE_CONFIG_DIR="/usr/local/etc/apache24/"
  13. APACHE_INIT_SCRIPT="/usr/local/etc/rc.d/apache24"
  14. APACHE_CONFIG_PRESET_NAME="httpd24f8.conf"
  15. APACHE_CONFIG_NAME="httpd.conf"
  16. PHP_CONFIG_PRESET="php8.ini"
  17. MYSQL_INIT_SCRIPT="/usr/local/etc/rc.d/mysql-server"
  18. CACHE_INIT_SCRIPT="/usr/local/etc/rc.d/memcached"
  19. WR_WEB_DIR="wr/"
  20. INSTALLER_WORK_DIR="/usr/local/wrinstaller/"
  21. INSTALLER_LOG="/var/log/wrinstaller.log"
  22. #some remote paths here
  23. DL_PACKAGES_URL="http://wolfrecorder.com/packages/"
  24. DL_PACKAGES_EXT=".tar.gz"
  25. DL_WR_URL="http://wolfrecorder.com/"
  26. DL_WR_NAME="wr.tgz"
  27. set PATH=/usr/local/bin:/usr/local/sbin:$PATH
  28. # config interface section
  29. clear
  30. $DIALOG --title "WolfRecorder NVR installation" --msgbox "This wizard helps you to install WolfRecorder of the latest stable version to CLEAN (!) FreeBSD distribution" 10 50
  31. clear
  32. #new or migration installation
  33. clear
  34. $DIALOG --menu "Type of WolfRecorder installation" 10 75 8 \
  35. NEW "This is new WolfRecorder installation"\
  36. MIG "Migrating existing WolfRecorder setup from another host"\
  37. 2> /tmp/insttype
  38. clear
  39. $DIALOG --menu "Choose FreeBSD version and architecture" 16 50 8 \
  40. 142_6L "FreeBSD 14.2 amd64"\
  41. 141_6K "FreeBSD 14.1 amd64"\
  42. 140_6K "FreeBSD 14.0 amd64"\
  43. 135_6L "FreeBSD 13.5 amd64"\
  44. 134_6K "FreeBSD 13.4 amd64"\
  45. 133_6K "FreeBSD 13.3 amd64"\
  46. 2> /tmp/wrarch
  47. clear
  48. #some passwords generation or manual input
  49. PASSW_MODE=`cat /tmp/insttype`
  50. case $PASSW_MODE in
  51. NEW)
  52. #generating mysql password
  53. GEN_MYS_PASS=`dd if=/dev/urandom count=128 bs=1 2>&1 | md5 | cut -b-8`
  54. echo "mys"${GEN_MYS_PASS} > /tmp/wrmypass
  55. ;;
  56. MIG)
  57. #request previous MySQL password
  58. clear
  59. $DIALOG --title "MySQL root password" --inputbox "Enter your previous installation MySQL root password" 8 60 2> /tmp/wrmypass
  60. clear
  61. $DIALOG --title "WolfRecorder serial" --inputbox "Enter your previous installation WolfRecorder serial number" 8 60 2> /tmp/wrsrl
  62. ;;
  63. esac
  64. #setting some opts for future
  65. MYSQL_PASSWD=`cat /tmp/wrmypass`
  66. ARCH=`cat /tmp/wrarch`
  67. case $PASSW_MODE in
  68. NEW)
  69. WRSERIAL="AUTO"
  70. ;;
  71. MIG)
  72. WRSERIAL=`cat /tmp/wrsrl`
  73. ;;
  74. esac
  75. # generating snmp community string
  76. GEN_SNM_COMM=`dd if=/dev/urandom count=128 bs=1 2>&1 | md5 | cut -b-8`
  77. echo "snm"${GEN_SNM_COMM} > /tmp/wrsnmpcomm
  78. SNMP_COMMUNITY=`cat /tmp/wrsnmpcomm`
  79. # cleaning temp files
  80. rm -fr /tmp/wrarch
  81. rm -fr /tmp/wrmypass
  82. rm -fr /tmp/wrsrl
  83. rm -fr /tmp/insttype
  84. rm -fr /tmp/wrsnmpcomm
  85. #last chance to exit
  86. $DIALOG --title "Check settings" --yesno "Are all of these settings correct? \n \n MySQL password: ${MYSQL_PASSWD} \n SNMP RO community: ${SNMP_COMMUNITY} \n System: ${ARCH} \n WolfRecorder serial: ${WRSERIAL}\n" 10 60
  87. AGREE=$?
  88. clear
  89. # confirm installation
  90. case $AGREE in
  91. 0)
  92. echo "Everything is okay! Installation is starting."
  93. # preparing for installation
  94. mkdir ${INSTALLER_WORK_DIR}
  95. cd ${INSTALLER_WORK_DIR}
  96. #######################################
  97. # Platform specific issues handling #
  98. #######################################
  99. case $ARCH in
  100. 140_6K)
  101. # 14.0K contains PHP 8.3 binaries
  102. #APACHE_CONFIG_PRESET_NAME="httpd24f8.conf"
  103. #PHP_CONFIG_PRESET="php8.ini"
  104. ;;
  105. esac
  106. #botstrapping pkg ng
  107. pkg info
  108. #check is FreeBSD installation clean
  109. PKG_COUNT=`/usr/sbin/pkg info | /usr/bin/wc -l`
  110. if [ $PKG_COUNT -ge 2 ]
  111. then
  112. echo "WRinstaller supports setup only for clean FreeBSD distribution. Installation is aborted."
  113. exit
  114. fi
  115. # install prebuilded binary packages
  116. $DIALOG --infobox "Downloading binary packages." 4 60
  117. $FETCH ${DL_PACKAGES_URL}${ARCH}${DL_PACKAGES_EXT}
  118. #check is binary packages download has beed completed
  119. if [ -f ${ARCH}${DL_PACKAGES_EXT} ];
  120. then
  121. $DIALOG --infobox "Binary packages download has been completed." 4 60
  122. else
  123. echo "=== Error: binary packages are not available. Installation is aborted. ==="
  124. exit
  125. fi
  126. # unpacking and installing packages
  127. $DIALOG --infobox "Unpacking binary packages." 4 60
  128. tar zxvf ${ARCH}${DL_PACKAGES_EXT} 2>> ${INSTALLER_LOG}
  129. cd ${ARCH}
  130. $DIALOG --infobox "Software installation is in progress. This takes a while." 4 70
  131. ls -1 | xargs -n 1 pkg add >> ${INSTALLER_LOG}
  132. $DIALOG --infobox "Binary packages installation has been completed." 4 60
  133. ################################################
  134. # Downloading and unpacking WolfRecorder distro
  135. ################################################
  136. $DIALOG --infobox "WolfRecorder download, unpacking and installation is in progress." 4 60
  137. #back to installation directory
  138. cd ${INSTALLER_WORK_DIR}
  139. # downloading distro
  140. $FETCH ${DL_WR_URL}${DL_WR_NAME}
  141. #check is wolfrecorder distro download complete
  142. if [ -f ${DL_WR_NAME} ];
  143. then
  144. $DIALOG --infobox "WolfRecorder download has been completed." 4 60
  145. else
  146. echo "=== Error: WolfRecorder release is not available. Installation is aborted. ==="
  147. exit
  148. fi
  149. mkdir ${APACHE_DATA_PATH}${WR_WEB_DIR}
  150. cp -R ${DL_WR_NAME} ${APACHE_DATA_PATH}${WR_WEB_DIR}
  151. cd ${APACHE_DATA_PATH}${WR_WEB_DIR}
  152. tar zxvf ${DL_WR_NAME} 2>> ${INSTALLER_LOG}
  153. chmod -R 777 content/ config/ exports/ howl/
  154. # setting up config presets
  155. cp -R dist/presets/freebsd/${APACHE_CONFIG_PRESET_NAME} ${APACHE_CONFIG_DIR}${APACHE_CONFIG_NAME}
  156. cp -R dist/presets/freebsd/${PHP_CONFIG_PRESET} /usr/local/etc/php.ini
  157. cat dist/presets/freebsd/rc.preconf >> /etc/rc.conf
  158. cat dist/presets/freebsd/sysctl.preconf >> /etc/sysctl.conf
  159. cat dist/presets/freebsd/loader.preconf >> /boot/loader.conf
  160. cp -R dist/presets/freebsd/firewall.conf /etc/firewall.conf
  161. chmod a+x /etc/firewall.conf
  162. cp -R dist/presets/freebsd/snmpd.preconf /usr/local/etc/snmpd.conf
  163. # setting up default web awesomeness
  164. cp -R dist/landing/index.html ${APACHE_DATA_PATH}/index.html
  165. cp -R dist/landing/bg.gif ${APACHE_DATA_PATH}/
  166. # database specific issues handling
  167. # MySQL 8.0 requires custom config
  168. cp -R dist/presets/freebsd/80_my.cnf /usr/local/etc/mysql/my.cnf
  169. $DIALOG --infobox "MySQL 8.0 config replaced" 4 60
  170. # start reqired services
  171. $DIALOG --infobox "Starting web server.." 4 60
  172. ${APACHE_INIT_SCRIPT} start 2>> ${INSTALLER_LOG}
  173. $DIALOG --infobox "Starting database server.." 4 60
  174. ${MYSQL_INIT_SCRIPT} start 2>> ${INSTALLER_LOG}
  175. $DIALOG --infobox "Starting caching server.." 4 60
  176. ${CACHE_INIT_SCRIPT} start 2>> ${INSTALLER_LOG}
  177. #Setting MySQL root password
  178. mysqladmin -u root password ${MYSQL_PASSWD} 2>> ${INSTALLER_LOG}
  179. # updating passwords and login in mysql.ini
  180. perl -e "s/mylogin/root/g" -pi ./config/mysql.ini
  181. perl -e "s/newpassword/${MYSQL_PASSWD}/g" -pi ./config/mysql.ini
  182. # creating wr database
  183. $DIALOG --infobox "Creating initial WolfRecorder DB" 4 60
  184. cat dist/dumps/wolfrecorder.sql | /usr/local/bin/mysql -u root --password=${MYSQL_PASSWD} 2>> ${INSTALLER_LOG}
  185. # creation default storage
  186. $DIALOG --infobox "Creating default storage" 4 60
  187. cat dist/dumps/defaultstorage.sql | /usr/local/bin/mysql -u root -p wr --password=${MYSQL_PASSWD} 2>> ${INSTALLER_LOG}
  188. mkdir /wrstorage
  189. chmod 777 /wrstorage
  190. # first install flag setup for the future
  191. touch ./exports/FIRST_INSTALL
  192. chmod 777 ./exports/FIRST_INSTALL
  193. # unpacking wrapi preset
  194. cp -R dist/wrap/wrapi /bin/
  195. chmod a+x /bin/wrapi
  196. $DIALOG --infobox "remote API wrapper installed" 4 60
  197. # updating sudoers
  198. echo "User_Alias WOLFRECORDER = www" >> /usr/local/etc/sudoers
  199. echo "WOLFRECORDER ALL = NOPASSWD: ALL" >> /usr/local/etc/sudoers
  200. #disabling mysql>=5.6 strict trans tables in various config locations
  201. if [ -f /usr/local/my.cnf ];
  202. then
  203. perl -e "s/,STRICT_TRANS_TABLES//g" -pi /usr/local/my.cnf
  204. $DIALOG --infobox "Disabling MySQL STRICT_TRANS_TABLES in /usr/local/my.cnf done" 4 60
  205. else
  206. $DIALOG --infobox "Looks like no MySQL STRICT_TRANS_TABLES disable required in /usr/local/my.cnf" 4 60
  207. fi
  208. if [ -f /usr/local/etc/my.cnf ];
  209. then
  210. perl -e "s/,STRICT_TRANS_TABLES//g" -pi /usr/local/etc/my.cnf
  211. $DIALOG --infobox "Disabling MySQL STRICT_TRANS_TABLES in /usr/local/etc/my.cnf done" 4 60
  212. else
  213. $DIALOG --infobox "Looks like no MySQL STRICT_TRANS_TABLES disable required in /usr/local/etc/my.cnf" 4 60
  214. fi
  215. if [ -f /usr/local/etc/mysql/my.cnf ];
  216. then
  217. perl -e "s/,STRICT_TRANS_TABLES//g" -pi /usr/local/etc/mysql/my.cnf
  218. $DIALOG --infobox "Disabling MySQL STRICT_TRANS_TABLES in /usr/local/etc/mysql/my.cnf done" 4 60
  219. else
  220. $DIALOG --infobox "Looks like no MySQL STRICT_TRANS_TABLES disable required in /usr/local/etc/mysql/my.cnf" 4 60
  221. fi
  222. #initial crontab configuration
  223. cd ${APACHE_DATA_PATH}${WR_WEB_DIR}
  224. if [ -f ./dist/crontab/crontab.preconf ];
  225. then
  226. #generating new WolfRecorder serial or using predefined
  227. case $PASSW_MODE in
  228. NEW)
  229. /usr/local/bin/curl -o /dev/null "http://127.0.0.1/${WR_WEB_DIR}?module=remoteapi&action=identify&param=save" 2>> ${INSTALLER_LOG}
  230. NEW_WRSERIAL=`cat ./exports/wrserial`
  231. $DIALOG --infobox "New WolfRecorder serial generated: ${NEW_WRSERIAL}" 4 60
  232. ;;
  233. MIG)
  234. NEW_WRSERIAL=${WRSERIAL}
  235. $DIALOG --infobox "Using WolfRecorder serial: ${NEW_WRSERIAL}" 4 60
  236. ;;
  237. esac
  238. #loading default crontab preset
  239. crontab ./dist/crontab/crontab.preconf
  240. $DIALOG --infobox "Installing default crontab preset" 4 60
  241. # updating serial in wrapi wrapper
  242. perl -e "s/WR00000000000000000000000000000000/${NEW_WRSERIAL}/g" -pi /bin/wrapi
  243. $DIALOG --infobox "New serial installed into wrapi wrapper" 4 60
  244. else
  245. echo "Looks like this WolfRecorder release is not supporting automatic crontab configuration"
  246. fi
  247. # Setting up autoupdate sctipt
  248. cp -R ./dist/presets/freebsd/autowrupdate.sh /bin/
  249. chmod a+x /bin/autowrupdate.sh
  250. # Setting snmpd read only community string
  251. perl -e "s/SNMPCOMMTPL/${SNMP_COMMUNITY}/g" -pi /usr/local/etc/snmpd.conf
  252. $DIALOG --infobox "SNMP read only community set: ${SNMP_COMMUNITY}" 4 60
  253. #cleaning up installer work directory
  254. cd /
  255. rm -fr ${INSTALLER_WORK_DIR}
  256. $DIALOG --title "WolfRecorder installation has been completed" --msgbox "Now you can access your web-interface by address http://server_ip/${WR_WEB_DIR} with login and password: admin/demo. Please reboot your server to check correct startup of all services" 15 50
  257. # Finishing installation
  258. ;;
  259. #cancel installstion
  260. 1)
  261. echo "Installation has been aborted"
  262. exit
  263. ;;
  264. esac
  265. #
  266. # End of FreeBSD setup
  267. #
  268. ;;
  269. Linux)
  270. # START of Linux installation scripts here
  271. DIALOG="dialog"
  272. INSTALLER_LOG="/var/log/wrinstaller.log"
  273. #initial repos update
  274. echo "Preparing to installation.."
  275. apt update >> ${INSTALLER_LOG} 2>&1
  276. apt -y upgrade >> ${INSTALLER_LOG} 2>&1
  277. #installation of basic software required for installer
  278. echo "Installing basic software required for Debianstaller.."
  279. apt install -y dialog >> ${INSTALLER_LOG} 2>&1
  280. apt install -y net-tools >> ${INSTALLER_LOG} 2>&1
  281. apt install -y gnupg2 >> ${INSTALLER_LOG} 2>&1
  282. $DIALOG --menu "Choose your Linux distribution" 16 50 8 \
  283. DEB12 "Debian 12 Bookworm"\
  284. 2> /tmp/wrarch
  285. clear
  286. ARCH=`cat /tmp/wrarch`
  287. case $ARCH in
  288. DEB12)
  289. #some remote paths here
  290. FETCH="/usr/bin/wget"
  291. APACHE_VERSION="apache24"
  292. APACHE_DATA_PATH="/var/www/html/"
  293. APACHE_CONFIG_DIR="/etc/apache2/"
  294. APACHE_INIT_SCRIPT="/usr/sbin/service apache2"
  295. APACHE_CONFIG_PRESET_NAME="debi12_apache2.conf"
  296. APACHE_CONFIG_NAME="apache2.conf"
  297. PHP_CONFIG_PRESET="php82.ini"
  298. MYSQL_INIT_SCRIPT="/usr/sbin/service mariadb"
  299. CACHE_INIT_SCRIPT="/usr/sbin/service memcached"
  300. WR_WEB_DIR="wr/"
  301. INSTALLER_WORK_DIR="/usr/local/wrinstaller/"
  302. DL_WR_URL="http://wolfrecorder.com/"
  303. DL_WR_NAME="wr.tgz"
  304. # config interface section
  305. clear
  306. $DIALOG --title "WolfRecorder NVR installation" --msgbox "This wizard helps you to install WolfRecorder of the latest stable version to CLEAN (!) Linux distribution" 10 50
  307. clear
  308. #new or migration installation
  309. clear
  310. $DIALOG --menu "Type of WolfRecorder installation" 10 75 8 \
  311. NEW "This is new WolfRecorder installation"\
  312. MIG "Migrating existing WolfRecorder setup from another host"\
  313. 2> /tmp/insttype
  314. clear
  315. #some passwords generation or manual input
  316. PASSW_MODE=`cat /tmp/insttype`
  317. case $PASSW_MODE in
  318. NEW)
  319. #generating mysql password
  320. GEN_MYS_PASS=`dd if=/dev/urandom count=128 bs=1 2>&1 | md5sum | cut -b-8`
  321. echo "mys"${GEN_MYS_PASS} > /tmp/wrmypass
  322. ;;
  323. MIG)
  324. #request previous MySQL password
  325. clear
  326. $DIALOG --title "MySQL root password" --inputbox "Enter your previous installation MySQL root password" 8 60 2> /tmp/wrmypass
  327. clear
  328. $DIALOG --title "WolfRecorder serial" --inputbox "Enter your previous installation WolfRecorder serial number" 8 60 2> /tmp/wrsrl
  329. ;;
  330. esac
  331. #setting some opts for future
  332. MYSQL_PASSWD=`cat /tmp/wrmypass`
  333. case $PASSW_MODE in
  334. NEW)
  335. WRSERIAL="AUTO"
  336. ;;
  337. MIG)
  338. WRSERIAL=`cat /tmp/wrsrl`
  339. ;;
  340. esac
  341. # cleaning temp files
  342. rm -fr /tmp/wrarch
  343. rm -fr /tmp/wrmypass
  344. rm -fr /tmp/wrsrl
  345. rm -fr /tmp/insttype
  346. #last chance to exit
  347. $DIALOG --title "Check settings" --yesno "Are all of these settings correct? \n \n MySQL password: ${MYSQL_PASSWD} \n System: ${ARCH} \n WolfRecorder serial: ${WRSERIAL}\n" 10 60
  348. AGREE=$?
  349. clear
  350. # confirm installation
  351. case $AGREE in
  352. 0)
  353. echo "Everything is okay! Installation is starting."
  354. # preparing for installation
  355. mkdir ${INSTALLER_WORK_DIR}
  356. cd ${INSTALLER_WORK_DIR}
  357. # install binary packages from repos
  358. $DIALOG --infobox "Software installation is in progress. This takes a while." 4 70
  359. #MariaDB setup
  360. apt install -y software-properties-common dirmngr >> ${INSTALLER_LOG} 2>&1
  361. $DIALOG --infobox "Installing MariaDB" 4 60
  362. $DIALOG --infobox "Installing MariaDB." 4 60
  363. $DIALOG --infobox "Installing MariaDB.." 4 60
  364. $DIALOG --infobox "Installing MariaDB..." 4 60
  365. apt install -y mariadb-server >> ${INSTALLER_LOG} 2>&1
  366. $DIALOG --infobox "Installing MariaDB...." 4 60
  367. apt install -y mariadb-client >> ${INSTALLER_LOG} 2>&1
  368. $DIALOG --infobox "Installing MariaDB....." 4 60
  369. apt install -y libmariadb-dev >> ${INSTALLER_LOG} 2>&1
  370. $DIALOG --infobox "Installing MariaDB......" 4 60
  371. apt install -y default-libmysqlclient-dev >> ${INSTALLER_LOG} 2>&1
  372. $DIALOG --infobox "MariaDB installed" 4 60
  373. mariadb --version >> ${INSTALLER_LOG} 2>&1
  374. systemctl start mariadb >> ${INSTALLER_LOG} 2>&1
  375. systemctl enable mariadb >> ${INSTALLER_LOG} 2>&1
  376. $DIALOG --infobox "MariaDB startup enabled" 4 60
  377. $DIALOG --infobox "Installing some required software" 4 60
  378. apt install -y expat >> ${INSTALLER_LOG} 2>&1
  379. apt install -y libexpat1-dev >> ${INSTALLER_LOG} 2>&1
  380. apt install -y sudo >> ${INSTALLER_LOG} 2>&1
  381. apt install -y curl >> ${INSTALLER_LOG} 2>&1
  382. $DIALOG --infobox "Installing Apache server" 4 60
  383. apt install -y apache2 >> ${INSTALLER_LOG} 2>&1
  384. apt install -y libapache2-mod-php8.2 >> ${INSTALLER_LOG} 2>&1
  385. $DIALOG --infobox "Installing misc software" 4 60
  386. apt install -y build-essential >> ${INSTALLER_LOG} 2>&1
  387. apt install -y libxmlrpc-c++8-dev >> ${INSTALLER_LOG} 2>&1
  388. apt install -y ipset >> ${INSTALLER_LOG} 2>&1
  389. $DIALOG --infobox "Installing memory caching servers" 4 60
  390. apt install -y memcached >> ${INSTALLER_LOG} 2>&1
  391. apt install -y redis >> ${INSTALLER_LOG} 2>&1
  392. $DIALOG --infobox "Installing PHP and required extensions" 4 60
  393. apt install -y php8.2-cli >> ${INSTALLER_LOG} 2>&1
  394. apt install -y php8.2-mysql >> ${INSTALLER_LOG} 2>&1
  395. apt install -y php8.2-mysqli >> ${INSTALLER_LOG} 2>&1
  396. apt install -y php8.2-mbstring >> ${INSTALLER_LOG} 2>&1
  397. apt install -y php8.2-bcmath >> ${INSTALLER_LOG} 2>&1
  398. apt install -y php8.2-curl >> ${INSTALLER_LOG} 2>&1
  399. apt install -y php8.2-gd >> ${INSTALLER_LOG} 2>&1
  400. apt install -y php8.2-snmp >> ${INSTALLER_LOG} 2>&1
  401. apt install -y php8.2-soap >> ${INSTALLER_LOG} 2>&1
  402. apt install -y php8.2-zip >> ${INSTALLER_LOG} 2>&1
  403. apt install -y php8.2-imap >> ${INSTALLER_LOG} 2>&1
  404. apt install -y php8.2-json >> ${INSTALLER_LOG} 2>&1
  405. apt install -y php8.2-tokenizer >> ${INSTALLER_LOG} 2>&1
  406. apt install -y php8.2-xml >> ${INSTALLER_LOG} 2>&1
  407. apt install -y php8.2-xmlreader >> ${INSTALLER_LOG} 2>&1
  408. apt install -y php8.2-xmlwriter >> ${INSTALLER_LOG} 2>&1
  409. apt install -y php8.2-simplexml >> ${INSTALLER_LOG} 2>&1
  410. apt install -y php8.2-sqlite3 >> ${INSTALLER_LOG} 2>&1
  411. apt install -y php8.2-sockets >> ${INSTALLER_LOG} 2>&1
  412. apt install -y php8.2-opcache >> ${INSTALLER_LOG} 2>&1
  413. apt install -y php8.2-json >> ${INSTALLER_LOG} 2>&1
  414. apt install -y php8.2-pdo >> ${INSTALLER_LOG} 2>&1
  415. apt install -y php8.2-pdo-sqlite >> ${INSTALLER_LOG} 2>&1
  416. apt install -y php8.2-phar >> ${INSTALLER_LOG} 2>&1
  417. apt install -y php8.2-posix >> ${INSTALLER_LOG} 2>&1
  418. apt install -y php8.2-memcached >> ${INSTALLER_LOG} 2>&1
  419. apt install -y php8.2-redis >> ${INSTALLER_LOG} 2>&1
  420. $DIALOG --infobox "Installing ffmpeg" 4 60
  421. apt install -y ffmpeg >> ${INSTALLER_LOG} 2>&1
  422. $DIALOG --infobox "Installing some optional software" 4 60
  423. apt install -y graphviz >> ${INSTALLER_LOG} 2>&1
  424. apt install -y vim-tiny >> ${INSTALLER_LOG} 2>&1
  425. apt install -y arping >> ${INSTALLER_LOG} 2>&1
  426. apt install -y elinks >> ${INSTALLER_LOG} 2>&1
  427. apt install -y mc >> ${INSTALLER_LOG} 2>&1
  428. apt install -y nano >> ${INSTALLER_LOG} 2>&1
  429. apt install -y nmap >> ${INSTALLER_LOG} 2>&1
  430. apt install -y mtr >> ${INSTALLER_LOG} 2>&1
  431. apt install -y expect >> ${INSTALLER_LOG} 2>&1
  432. apt install -y bwm-ng >> ${INSTALLER_LOG} 2>&1
  433. apt install -y git >> ${INSTALLER_LOG} 2>&1
  434. apt install -y netdiag >> ${INSTALLER_LOG} 2>&1
  435. apt install -y htop >> ${INSTALLER_LOG} 2>&1
  436. apt install -y rsyslog >> ${INSTALLER_LOG} 2>&1
  437. $DIALOG --infobox "Binary packages installation has been completed." 4 60
  438. ################################################
  439. # Downloading and unpacking WolfRecorder distro
  440. ################################################
  441. $DIALOG --infobox "WolfRecorder download, unpacking and installation is in progress." 4 60
  442. #back to installation directory
  443. cd ${INSTALLER_WORK_DIR}
  444. # downloading distro
  445. $FETCH ${DL_WR_URL}${DL_WR_NAME}
  446. #check is wolfrecorder distro download complete
  447. if [ -f ${DL_WR_NAME} ];
  448. then
  449. $DIALOG --infobox "WolfRecorder download has been completed." 4 60
  450. else
  451. echo "=== Error: WolfRecorder release is not available. Installation is aborted. ==="
  452. exit
  453. fi
  454. mkdir ${APACHE_DATA_PATH}${WR_WEB_DIR}
  455. cp -R ${DL_WR_NAME} ${APACHE_DATA_PATH}${WR_WEB_DIR}
  456. cd ${APACHE_DATA_PATH}${WR_WEB_DIR}
  457. tar zxvf ${DL_WR_NAME} >> ${INSTALLER_LOG} 2>&1
  458. chmod -R 777 content/ config/ exports/ howl/
  459. # setting up config presets
  460. cp -R dist/presets/debian121/${APACHE_CONFIG_PRESET_NAME} ${APACHE_CONFIG_DIR}${APACHE_CONFIG_NAME}
  461. cp -R dist/presets/debian121/${PHP_CONFIG_PRESET} /etc/php/8.2/apache2/php.ini
  462. cp -R dist/presets/debian121/000-default.conf ${APACHE_CONFIG_DIR}sites-enabled/000-default.conf
  463. # setting up default web awesomeness
  464. cp -R dist/landing/index.html ${APACHE_DATA_PATH}/index.html
  465. cp -R dist/landing/bg.gif ${APACHE_DATA_PATH}/
  466. # start reqired services
  467. $DIALOG --infobox "Starting web server.." 4 60
  468. ${APACHE_INIT_SCRIPT} start >> ${INSTALLER_LOG} 2>&1
  469. $DIALOG --infobox "Starting database server.." 4 60
  470. ${MYSQL_INIT_SCRIPT} start >> ${INSTALLER_LOG} 2>&1
  471. $DIALOG --infobox "Starting caching server.." 4 60
  472. ${CACHE_INIT_SCRIPT} start >> ${INSTALLER_LOG} 2>&1
  473. #Setting MySQL root password
  474. mysqladmin -u root password ${MYSQL_PASSWD} >> ${INSTALLER_LOG} 2>&1
  475. # updating passwords and login in mysql.ini
  476. perl -e "s/mylogin/root/g" -pi ./config/mysql.ini
  477. perl -e "s/newpassword/${MYSQL_PASSWD}/g" -pi ./config/mysql.ini
  478. # updating binary paths in binpaths.ini
  479. cp -R dist/presets/debian121/binpaths.ini ./config/binpaths.ini
  480. # creating wr database
  481. $DIALOG --infobox "Creating initial WolfRecorder DB" 4 60
  482. cat dist/dumps/wolfrecorder.sql | /usr/bin/mysql -u root --password=${MYSQL_PASSWD} >> ${INSTALLER_LOG} 2>&1
  483. # creation default storage
  484. $DIALOG --infobox "Creating default storage" 4 60
  485. cat dist/dumps/defaultstorage.sql | /usr/bin/mysql -u root -p wr --password=${MYSQL_PASSWD} >> ${INSTALLER_LOG} 2>&1
  486. mkdir /wrstorage
  487. chmod 777 /wrstorage
  488. # first install flag setup for the future
  489. touch ./exports/FIRST_INSTALL
  490. chmod 777 ./exports/FIRST_INSTALL
  491. # unpacking wrapi preset
  492. cp -R dist/wrap/deb121_wrapi /bin/wrapi
  493. chmod a+x /bin/wrapi
  494. $DIALOG --infobox "remote API wrapper installed" 4 60
  495. # updating sudoers
  496. echo "User_Alias WOLFRECORDER = www-data" >> /etc/sudoers.d/wolfrecorder
  497. echo "WOLFRECORDER ALL = NOPASSWD: ALL" >> /etc/sudoers.d/wolfrecorder
  498. #enabling required apache modules
  499. /usr/sbin/a2enmod headers
  500. /usr/sbin/a2enmod expires
  501. #restarting apache
  502. $DIALOG --infobox "Restarting web server.." 4 60
  503. ${APACHE_INIT_SCRIPT} restart >> ${INSTALLER_LOG} 2>&1
  504. #initial crontab configuration
  505. cd ${APACHE_DATA_PATH}${WR_WEB_DIR}
  506. if [ -f ./dist/crontab/crontab.preconf ];
  507. then
  508. #generating new WolfRecorder serial or using predefined
  509. case $PASSW_MODE in
  510. NEW)
  511. /usr/bin/curl -o /dev/null "http://127.0.0.1/${WR_WEB_DIR}?module=remoteapi&action=identify&param=save" >> ${INSTALLER_LOG} 2>&1
  512. #waiting saving data
  513. sleep 3
  514. NEW_WRSERIAL=`cat ./exports/wrserial`
  515. $DIALOG --infobox "New WolfRecorder serial generated: ${NEW_WRSERIAL}" 4 60
  516. ;;
  517. MIG)
  518. NEW_WRSERIAL=${WRSERIAL}
  519. $DIALOG --infobox "Using WolfRecorder serial: ${NEW_WRSERIAL}" 4 60
  520. ;;
  521. esac
  522. if [ -n "$NEW_WRSERIAL" ];
  523. then
  524. echo "OK: new WolfRecorder serial ${NEW_WRSERIAL}" >> ${INSTALLER_LOG} 2>&1
  525. else
  526. $DIALOG --infobox "No new WolfRecorder serial generated: ${NEW_WRSERIAL}" 4 60
  527. echo "Installation failed and aborted. Empty WolfRecorder serial. Retry your attempt."
  528. echo "FATAL: empty new WolfRecorder serial" >> ${INSTALLER_LOG} 2>&1
  529. exit
  530. fi
  531. #loading default crontab preset
  532. crontab ./dist/crontab/crontab.preconf
  533. $DIALOG --infobox "Installing default crontab preset" 4 60
  534. # updating serial in wrapi wrapper
  535. perl -e "s/WR00000000000000000000000000000000/${NEW_WRSERIAL}/g" -pi /bin/wrapi
  536. $DIALOG --infobox "New serial installed into wrapi wrapper" 4 60
  537. else
  538. echo "Looks like this WolfRecorder release is not supporting automatic crontab configuration"
  539. fi
  540. # Setting up autoupdate sctipt
  541. cp -R ./dist/presets/debian121/autowrupdate.sh /bin/
  542. chmod a+x /bin/autowrupdate.sh
  543. #cleaning up installer work directory
  544. cd /
  545. rm -fr ${INSTALLER_WORK_DIR}
  546. $DIALOG --title "WolfRecorder installation has been completed" --msgbox "Now you can access your web-interface by address http://server_ip/${WR_WEB_DIR} with login and password: admin/demo. Please reboot your server to check correct startup of all services" 15 50
  547. # Finishing installation
  548. ;;
  549. #cancel installation
  550. 1)
  551. echo "Installation has been aborted"
  552. exit
  553. ;;
  554. esac
  555. #
  556. # End of Debian 12 script here
  557. #
  558. ;;
  559. esac
  560. # END
  561. ;;
  562. esac