Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Side by Side Diff: push/build_pulld_release

Issue 1137873005: Create a new pulld for systemd servers. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #!/bin/bash
2 # Builds and uploads a debian package for pulld.
3 APPNAME=pulld
4 SYSTEMD=${APPNAME}.service
5 DESCRIPTION="Application to pull updates for applications."
6
7 # Copy files into the right locations in ${ROOT}.
8 copy_release_files()
9 {
10 INSTALL="sudo install -D --verbose --backup=none --group=root --owner=root"
11 INSTALL_DIR="sudo install -d --verbose --backup=none --group=root --owner=root"
12 ${INSTALL} --mode=644 -T ./sys/${APPNAME}.service ${ROOT}/etc/systemd/system /${APPNAME}.service
13 ${INSTALL} --mode=755 -T ${GOPATH}/bin/${APPNAME} ${ROOT}/usr/local/bin/${AP PNAME}
14 ${INSTALL_DIR} --mode=777 ${ROOT}/var/${APPNAME}
15 }
16
17 source ../bash/release.sh
OLDNEW
« no previous file with comments | « push/Makefile ('k') | push/go/pulld/main.go » ('j') | push/go/pulld/main.go » ('J')

Powered by Google App Engine
This is Rietveld 408576698