blob: 509ae52cbc75e19a205d5c52a5fd7f4b5542e521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# vim: ft=sh
. "$(dirname "$(readlink -f "$0")")/../job.common"
echo_stage "Get personal repository"
git_clone "git@cynerd.cz:openwrt-personal-pkgs" pkgs
echo_stage "Signing"
signify -S -s ~/openwrt-repo.sec -m pkgs/updater.lua
echo_stage "Deploy"
sftp -d - upload <<EOF
!mkdir -p /var/www/repo/turris
put pkgs/updater.lua /var/www/repo/turris/
put pkgs/updater.lua.sig /var/www/repo/turris/
EOF
|