2024-10-06 22:01:18 -05:00
|
|
|
#!/bin/bash -x
|
|
|
|
|
|
|
|
# this is the systemd control file
|
|
|
|
mkdir -p files/lib/systemd/system/
|
|
|
|
cp gowebd.service files/lib/systemd/system/
|
|
|
|
|
|
|
|
# caddy file. propose this as the dir structure caddy should use
|
|
|
|
mkdir -p files/etc/gowebd/
|
|
|
|
cp Caddyfile.go.wit.com files/etc/gowebd/
|
2024-10-08 11:36:46 -05:00
|
|
|
cp resources/Makefile files/etc/gowebd/
|
2024-10-08 11:17:37 -05:00
|
|
|
|
|
|
|
# share dir
|
|
|
|
mkdir -p files/usr/share/gowebd/
|
2024-10-08 11:34:50 -05:00
|
|
|
cp Makefile files/usr/share/gowebd/
|
2024-11-06 16:44:48 -06:00
|
|
|
cp -a resources/repomap files/usr/share/gowebd/repomap
|
2024-10-08 11:36:46 -05:00
|
|
|
cp -a resources files/usr/share/gowebd/
|