|
|
|
|
200
|
rm /etc/nginx/sites-available/${SCUTTLEBOT_DOMAIN_NAME}
|
200
|
rm /etc/nginx/sites-available/${SCUTTLEBOT_DOMAIN_NAME}
|
201
|
fi
|
201
|
fi
|
202
|
|
202
|
|
|
|
203
|
+ systemctl stop git_ssb
|
203
|
systemctl stop scuttlebot
|
204
|
systemctl stop scuttlebot
|
|
|
205
|
+ systemctl disable git_ssb
|
204
|
systemctl disable scuttlebot
|
206
|
systemctl disable scuttlebot
|
|
|
207
|
+ rm /etc/systemd/system/git_ssb.service
|
205
|
rm /etc/systemd/system/scuttlebot.service
|
208
|
rm /etc/systemd/system/scuttlebot.service
|
206
|
systemctl daemon-reload
|
209
|
systemctl daemon-reload
|
207
|
|
210
|
|
|
|
|
|
210
|
if [ -d /etc/scuttlebot ]; then
|
213
|
if [ -d /etc/scuttlebot ]; then
|
211
|
rm -rf /etc/scuttlebot
|
214
|
rm -rf /etc/scuttlebot
|
212
|
fi
|
215
|
fi
|
|
|
216
|
+ if [ -f /usr/bin/git-ssb-create ]; then
|
|
|
217
|
+ rm /usr/bin/git-ssb-create
|
|
|
218
|
+ fi
|
213
|
|
219
|
|
214
|
remove_completion_param install_scuttlebot
|
220
|
remove_completion_param install_scuttlebot
|
215
|
sed -i '/scuttlebot /d' $COMPLETION_FILE
|
221
|
sed -i '/scuttlebot /d' $COMPLETION_FILE
|
216
|
}
|
222
|
}
|
217
|
|
223
|
|
|
|
224
|
+function git_ssb_script {
|
|
|
225
|
+ if [[ "$1" == "mesh" ]]; then
|
|
|
226
|
+ git_ssb_script_name=$rootdir/usr/bin/git-ssb-create
|
|
|
227
|
+ else
|
|
|
228
|
+ git_ssb_script_name=/usr/bin/git-ssb-create
|
|
|
229
|
+ fi
|
|
|
230
|
+ echo '#!/bin/bash' > $git_ssb_script_name
|
|
|
231
|
+ echo 'reponame="$1"' >> $git_ssb_script_name
|
|
|
232
|
+ echo '' >> $git_ssb_script_name
|
|
|
233
|
+ echo 'if [[ "$reponame" != "" ]]; then' >> $git_ssb_script_name
|
|
|
234
|
+ echo ' mkdir $reponame' >> $git_ssb_script_name
|
|
|
235
|
+ echo ' cd $reponame' >> $git_ssb_script_name
|
|
|
236
|
+ echo ' git ssb create ssb $reponame' >> $git_ssb_script_name
|
|
|
237
|
+ echo ' git push --tags ssb master' >> $git_ssb_script_name
|
|
|
238
|
+ echo 'fi' >> $git_ssb_script_name
|
|
|
239
|
+ echo 'exit 0' >> $git_ssb_script_name
|
|
|
240
|
+ chmod +x $git_ssb_script_name
|
|
|
241
|
+}
|
|
|
242
|
+
|
218
|
function scuttlebot_git_setup {
|
243
|
function scuttlebot_git_setup {
|
219
|
if [[ "$1" == "mesh" ]]; then
|
244
|
if [[ "$1" == "mesh" ]]; then
|
|
|
245
|
+ if [ ! -d $rootdir/usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight ]; then
|
|
|
246
|
+ mkdir $rootdir/usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight
|
|
|
247
|
+ fi
|
|
|
248
|
+ if [ ! -f $rootdir/usr/local/lib/node_modules/git-ssb/node_modules/highlight.js/styles/foundation.css ]; then
|
|
|
249
|
+ echo $'Could not find foundation.css'
|
|
|
250
|
+ exit 347687245
|
|
|
251
|
+ fi
|
|
|
252
|
+ cp $rootdir/usr/local/lib/node_modules/git-ssb/node_modules/highlight.js/styles/foundation.css $rootdir/usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight/foundation.css
|
|
|
253
|
+
|
220
|
git_ssb_nginx_site=$rootdir/etc/nginx/sites-available/git_ssb
|
254
|
git_ssb_nginx_site=$rootdir/etc/nginx/sites-available/git_ssb
|
221
|
echo 'server {' > $git_ssb_nginx_site
|
255
|
echo 'server {' > $git_ssb_nginx_site
|
222
|
echo " listen $NGINX_GIT_SSB_PORT default_server;" >> $git_ssb_nginx_site
|
256
|
echo " listen $NGINX_GIT_SSB_PORT default_server;" >> $git_ssb_nginx_site
|
|
|
|
|
232
|
if [ ! $SCUTTLEBOT_DOMAIN_NAME ]; then
|
266
|
if [ ! $SCUTTLEBOT_DOMAIN_NAME ]; then
|
233
|
exit 7357225
|
267
|
exit 7357225
|
234
|
fi
|
268
|
fi
|
|
|
269
|
+
|
|
|
270
|
+ if [ ! -d /usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight ]; then
|
|
|
271
|
+ mkdir /usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight
|
|
|
272
|
+ fi
|
|
|
273
|
+ if [ ! -f /usr/local/lib/node_modules/git-ssb/node_modules/highlight.js/styles/foundation.css ]; then
|
|
|
274
|
+ echo $'Could not find foundation.css'
|
|
|
275
|
+ exit 347687245
|
|
|
276
|
+ fi
|
|
|
277
|
+ cp /usr/local/lib/node_modules/git-ssb/node_modules/highlight.js/styles/foundation.css /usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight/foundation.css
|
|
|
278
|
+
|
235
|
git_ssb_nginx_site=/etc/nginx/sites-available/${SCUTTLEBOT_DOMAIN_NAME}
|
279
|
git_ssb_nginx_site=/etc/nginx/sites-available/${SCUTTLEBOT_DOMAIN_NAME}
|
236
|
function_check nginx_http_redirect
|
280
|
function_check nginx_http_redirect
|
237
|
nginx_http_redirect $SCUTTLEBOT_DOMAIN_NAME "index index.html"
|
281
|
nginx_http_redirect $SCUTTLEBOT_DOMAIN_NAME "index index.html"
|
|
|
|
|
252
|
fi
|
296
|
fi
|
253
|
|
297
|
|
254
|
echo '' >> $git_ssb_nginx_site
|
298
|
echo '' >> $git_ssb_nginx_site
|
|
|
299
|
+ echo ' root /usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web;' >> $git_ssb_nginx_site
|
|
|
300
|
+ echo '' >> $git_ssb_nginx_site
|
255
|
echo ' location = / {' >> $git_ssb_nginx_site
|
301
|
echo ' location = / {' >> $git_ssb_nginx_site
|
256
|
echo " proxy_pass http://localhost:${GIT_SSB_PORT};" >> $git_ssb_nginx_site
|
302
|
echo " proxy_pass http://localhost:${GIT_SSB_PORT};" >> $git_ssb_nginx_site
|
257
|
echo ' proxy_set_header X-Real-IP $remote_addr;' >> $git_ssb_nginx_site
|
303
|
echo ' proxy_set_header X-Real-IP $remote_addr;' >> $git_ssb_nginx_site
|
|
|
|
|
276
|
echo ' add_header X-Content-Type-Options nosniff;' >> $git_ssb_nginx_site
|
322
|
echo ' add_header X-Content-Type-Options nosniff;' >> $git_ssb_nginx_site
|
277
|
echo ' add_header X-Frame-Options SAMEORIGIN;' >> $git_ssb_nginx_site
|
323
|
echo ' add_header X-Frame-Options SAMEORIGIN;' >> $git_ssb_nginx_site
|
278
|
echo '' >> $git_ssb_nginx_site
|
324
|
echo '' >> $git_ssb_nginx_site
|
|
|
325
|
+ echo ' root /usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web;' >> $git_ssb_nginx_site
|
|
|
326
|
+ echo '' >> $git_ssb_nginx_site
|
279
|
echo ' location = / {' >> $git_ssb_nginx_site
|
327
|
echo ' location = / {' >> $git_ssb_nginx_site
|
280
|
echo " proxy_pass http://localhost:${GIT_SSB_PORT};" >> $git_ssb_nginx_site
|
328
|
echo " proxy_pass http://localhost:${GIT_SSB_PORT};" >> $git_ssb_nginx_site
|
281
|
echo ' proxy_set_header X-Real-IP $remote_addr;' >> $git_ssb_nginx_site
|
329
|
echo ' proxy_set_header X-Real-IP $remote_addr;' >> $git_ssb_nginx_site
|
|
|
|
|
336
|
echo 'WantedBy=multi-user.target' >> $rootdir/etc/systemd/system/scuttlebot.service
|
384
|
echo 'WantedBy=multi-user.target' >> $rootdir/etc/systemd/system/scuttlebot.service
|
337
|
|
385
|
|
338
|
scuttlebot_git_setup mesh
|
386
|
scuttlebot_git_setup mesh
|
|
|
387
|
+ git_ssb_script mesh
|
339
|
}
|
388
|
}
|
340
|
|
389
|
|
341
|
function install_scuttlebot {
|
390
|
function install_scuttlebot {
|
|
|
|
|
375
|
echo '[Install]' >> /etc/systemd/system/scuttlebot.service
|
424
|
echo '[Install]' >> /etc/systemd/system/scuttlebot.service
|
376
|
echo 'WantedBy=multi-user.target' >> /etc/systemd/system/scuttlebot.service
|
425
|
echo 'WantedBy=multi-user.target' >> /etc/systemd/system/scuttlebot.service
|
377
|
|
426
|
|
|
|
427
|
+ echo '[Unit]' > /etc/systemd/system/git_ssb.service
|
|
|
428
|
+ echo 'Description=Git SSB (SSB git web interface)' >> /etc/systemd/system/git_ssb.service
|
|
|
429
|
+ echo 'After=syslog.target' >> /etc/systemd/system/git_ssb.service
|
|
|
430
|
+ echo 'After=network.target' >> /etc/systemd/system/git_ssb.service
|
|
|
431
|
+ echo 'After=scuttlebot.target' >> /etc/systemd/system/git_ssb.service
|
|
|
432
|
+ echo '' >> /etc/systemd/system/git_ssb.service
|
|
|
433
|
+ echo '[Service]' >> /etc/systemd/system/git_ssb.service
|
|
|
434
|
+ echo 'Type=simple' >> /etc/systemd/system/git_ssb.service
|
|
|
435
|
+ echo 'User=scuttlebot' >> /etc/systemd/system/git_ssb.service
|
|
|
436
|
+ echo 'Group=scuttlebot' >> /etc/systemd/system/git_ssb.service
|
|
|
437
|
+ echo "WorkingDirectory=/etc/scuttlebot" >> /etc/systemd/system/git_ssb.service
|
|
|
438
|
+ echo "ExecStart=/usr/bin/git ssb web --public localhost:$GIT_SSB_PORT" >> /etc/systemd/system/git_ssb.service
|
|
|
439
|
+ echo 'Restart=always' >> /etc/systemd/system/git_ssb.service
|
|
|
440
|
+ echo 'Environment="USER=scuttlebot"' >> /etc/systemd/system/git_ssb.service
|
|
|
441
|
+ echo '' >> /etc/systemd/system/git_ssb.service
|
|
|
442
|
+ echo '[Install]' >> /etc/systemd/system/git_ssb.service
|
|
|
443
|
+ echo 'WantedBy=multi-user.target' >> /etc/systemd/system/git_ssb.service
|
|
|
444
|
+
|
378
|
chown -R scuttlebot:scuttlebot /etc/scuttlebot
|
445
|
chown -R scuttlebot:scuttlebot /etc/scuttlebot
|
379
|
|
446
|
|
380
|
# files gw_name myhostname mdns4_minimal [NOTFOUND=return] dns
|
447
|
# files gw_name myhostname mdns4_minimal [NOTFOUND=return] dns
|
|
|
|
|
384
|
systemctl enable scuttlebot.service
|
451
|
systemctl enable scuttlebot.service
|
385
|
systemctl daemon-reload
|
452
|
systemctl daemon-reload
|
386
|
systemctl start scuttlebot.service
|
453
|
systemctl start scuttlebot.service
|
|
|
454
|
+ systemctl enable git_ssb.service
|
|
|
455
|
+ systemctl daemon-reload
|
|
|
456
|
+ systemctl start git_ssb.service
|
387
|
|
457
|
|
388
|
sleep 3
|
458
|
sleep 3
|
389
|
|
459
|
|
|
|
|
|
419
|
|
489
|
|
420
|
SCUTTLEBOT_ONION_HOSTNAME=$(add_onion_service scuttlebot 80 ${SCUTTLEBOT_ONION_PORT})
|
490
|
SCUTTLEBOT_ONION_HOSTNAME=$(add_onion_service scuttlebot 80 ${SCUTTLEBOT_ONION_PORT})
|
421
|
scuttlebot_git_setup
|
491
|
scuttlebot_git_setup
|
|
|
492
|
+ git_ssb_script
|
422
|
|
493
|
|
423
|
function_check create_site_certificate
|
494
|
function_check create_site_certificate
|
424
|
create_site_certificate ${SCUTTLEBOT_DOMAIN_NAME} 'yes'
|
495
|
create_site_certificate ${SCUTTLEBOT_DOMAIN_NAME} 'yes'
|