Skip to content

Commit f637232

Browse files
authored
Merge pull request #49 from mongoose-os/lsm
Move to build.mongoose-os.com
2 parents ad79b4f + eccc039 commit f637232

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

cli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const (
6666
var (
6767
user = flag.String("user", "", "Cloud username")
6868
pass = flag.String("pass", "", "Cloud password or token")
69-
server = flag.String("server", "https://mongoose.cloud", "FWBuild server")
69+
server = flag.String("server", "https://build.mongoose-os.com", "FWBuild server")
7070
local = flag.Bool("local", false, "Local build.")
7171
mosRepo = flag.String("repo", "", "Path to the mongoose-os repository; if omitted, the mongoose-os repository will be cloned as ./mongoose-os")
7272
deviceID = flag.String("device-id", "", "Device ID")

tools/ansible/fwbuild/tasks/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
vars:
66
email: webmaster@cesanta.com
77
domains: |
8-
-d mongoose.cloud \
9-
-d www.mongoose.cloud
8+
-d build.mongoose-os.com \
9+
-d build.mongoose-os.com
1010
renew_time: 'Mon *-*-* 01:23:45'
1111

1212
- name: Pull fwbuild-manager image:{{ fwbuild_manager_tag }}
@@ -31,8 +31,8 @@
3131
--volumes-dir={{ fwbuild_volumes_dir }}
3232
--port=80
3333
--port-tls=443
34-
--cert-file=/data/letsencrypt/live/mongoose.cloud/fullchain.pem
35-
--key-file=/data/letsencrypt/live/mongoose.cloud/privkey.pem
34+
--cert-file=/data/letsencrypt/live/build.mongoose-os.com/fullchain.pem
35+
--key-file=/data/letsencrypt/live/build.mongoose-os.com/privkey.pem
3636
--acme-challenge-dir=/data/letsencrypt/www/.well-known/acme-challenge
3737
volumes:
3838
- "{{ fwbuild_volumes_dir }}:{{ fwbuild_volumes_dir }}"

tools/ansible/hosts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
fwbuild:
22
hosts:
3-
build1.mongoose.cloud
3+
build.mongoose-os.com
44
vars:
55
ansible_ssh_user: root

tools/deploy_mos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def UpdateHomebrew(args):
238238
if args.resume <= 45:
239239
print("(45) Pushing Docker images...")
240240
RunSubprocess(["make", "docker-push-mos", "docker-push-fwbuild-instance", "TAG=%s" % tag_effective])
241-
r = requests.get("https://mongoose.cloud/api/fwbuild/%s/pull" % tag_effective)
241+
r = requests.get("https://build.mongoose-os.com/api/fwbuild/%s/pull" % tag_effective)
242242
if r.status_code != 200:
243243
print("Error pulling image: %d %s" % (r.status_code, r.text))
244244
exit(2)

0 commit comments

Comments
 (0)