ソースを参照

Script to create git-ssb repos

Bob Mottram 7 年 前
コミット
42f0a4befc
共有1 個のファイルを変更した71 個の追加0 個の削除を含む
  1. 71
    0
      src/freedombone-app-scuttlebot

+ 71
- 0
src/freedombone-app-scuttlebot ファイルの表示

@@ -200,8 +200,11 @@ function remove_scuttlebot {
200 200
         rm /etc/nginx/sites-available/${SCUTTLEBOT_DOMAIN_NAME}
201 201
     fi
202 202
 
203
+    systemctl stop git_ssb
203 204
     systemctl stop scuttlebot
205
+    systemctl disable git_ssb
204 206
     systemctl disable scuttlebot
207
+    rm /etc/systemd/system/git_ssb.service
205 208
     rm /etc/systemd/system/scuttlebot.service
206 209
     systemctl daemon-reload
207 210
 
@@ -210,13 +213,44 @@ function remove_scuttlebot {
210 213
     if [ -d /etc/scuttlebot ]; then
211 214
         rm -rf /etc/scuttlebot
212 215
     fi
216
+    if [ -f /usr/bin/git-ssb-create ]; then
217
+        rm /usr/bin/git-ssb-create
218
+    fi
213 219
 
214 220
     remove_completion_param install_scuttlebot
215 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 243
 function scuttlebot_git_setup {
219 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 254
         git_ssb_nginx_site=$rootdir/etc/nginx/sites-available/git_ssb
221 255
         echo 'server {' > $git_ssb_nginx_site
222 256
         echo "  listen $NGINX_GIT_SSB_PORT default_server;" >> $git_ssb_nginx_site
@@ -232,6 +266,16 @@ function scuttlebot_git_setup {
232 266
         if [ ! $SCUTTLEBOT_DOMAIN_NAME ]; then
233 267
             exit 7357225
234 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 279
         git_ssb_nginx_site=/etc/nginx/sites-available/${SCUTTLEBOT_DOMAIN_NAME}
236 280
         function_check nginx_http_redirect
237 281
         nginx_http_redirect $SCUTTLEBOT_DOMAIN_NAME "index index.html"
@@ -252,6 +296,8 @@ function scuttlebot_git_setup {
252 296
     fi
253 297
 
254 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 301
     echo '  location = / {' >> $git_ssb_nginx_site
256 302
     echo "    proxy_pass http://localhost:${GIT_SSB_PORT};" >> $git_ssb_nginx_site
257 303
     echo '    proxy_set_header X-Real-IP $remote_addr;' >> $git_ssb_nginx_site
@@ -276,6 +322,8 @@ function scuttlebot_git_setup {
276 322
         echo '  add_header X-Content-Type-Options nosniff;' >> $git_ssb_nginx_site
277 323
         echo '  add_header X-Frame-Options SAMEORIGIN;' >> $git_ssb_nginx_site
278 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 327
         echo '  location = / {' >> $git_ssb_nginx_site
280 328
         echo "    proxy_pass http://localhost:${GIT_SSB_PORT};" >> $git_ssb_nginx_site
281 329
         echo '    proxy_set_header X-Real-IP $remote_addr;' >> $git_ssb_nginx_site
@@ -336,6 +384,7 @@ EOF
336 384
     echo 'WantedBy=multi-user.target' >> $rootdir/etc/systemd/system/scuttlebot.service
337 385
 
338 386
     scuttlebot_git_setup mesh
387
+    git_ssb_script mesh
339 388
 }
340 389
 
341 390
 function install_scuttlebot {
@@ -375,6 +424,24 @@ function install_scuttlebot {
375 424
     echo '[Install]' >> /etc/systemd/system/scuttlebot.service
376 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 445
     chown -R scuttlebot:scuttlebot /etc/scuttlebot
379 446
 
380 447
     # files gw_name myhostname mdns4_minimal [NOTFOUND=return] dns
@@ -384,6 +451,9 @@ function install_scuttlebot {
384 451
     systemctl enable scuttlebot.service
385 452
     systemctl daemon-reload
386 453
     systemctl start scuttlebot.service
454
+    systemctl enable git_ssb.service
455
+    systemctl daemon-reload
456
+    systemctl start git_ssb.service
387 457
 
388 458
     sleep 3
389 459
 
@@ -419,6 +489,7 @@ function install_scuttlebot {
419 489
 
420 490
     SCUTTLEBOT_ONION_HOSTNAME=$(add_onion_service scuttlebot 80 ${SCUTTLEBOT_ONION_PORT})
421 491
     scuttlebot_git_setup
492
+    git_ssb_script
422 493
 
423 494
     function_check create_site_certificate
424 495
     create_site_certificate ${SCUTTLEBOT_DOMAIN_NAME} 'yes'