26 Commits 330ad972a7 ... b7f2e5f3f6

Author SHA1 Message Date
  Michael Schwarz b7f2e5f3f6 Merge branch 'stable' into experimental 2 years ago
  Michael Schwarz 23a81af93f Change ip of gw03 2 years ago
  Michael Schwarz 44e28892b7 Correct interpreter 2 years ago
  Michael Schwarz c0f20e8649 Update modules file 2 years ago
  Michael Schwarz 75a2645456 Start new release 1.5.0 based on Upstream 2021.1.1 2 years ago
  Michael Schwarz 8f16a154ad Fix opkg path 2 years ago
  Michael Schwarz 3515d59025 Update to python3 2 years ago
  Michael Schwarz 1ce01beb37 Merge branch 'testing' into stable 3 years ago
  Michael Schwarz 1d0368076d Merge branch 'testing' into stable 4 years ago
  Michael Schwarz 8c33a515eb Merge branch 'experimental' into stable 4 years ago
  Michael Schwarz 0ecbb2e6b4 Merge branch 'testing' into stable 4 years ago
  Michael Schwarz f0939c61f9 Merge branch 'testing' into stable 5 years ago
  Michael Schwarz ac77f01715 Merge branch 'testing' into stable 5 years ago
  Karsten Böddeker 864f6d5406 Merge branch 'testing' into stable 6 years ago
  Karsten Böddeker c739697148 Merge branch 'testing' into stable 6 years ago
  Karsten Böddeker 246dd82c48 Merge branch 'testing' into stable 7 years ago
  Karsten Böddeker 3211be269b sites.conf: fix group of Salzkotten 7 years ago
  Karsten Böddeker 7048d5c974 Merge branch 'testing' into stable 7 years ago
  Karsten Böddeker 58fa72f77f Merge branch 'testing' into stable 7 years ago
  Karsten Böddeker e41c10a228 Merge branch 'testing' into stable 7 years ago
  Karsten Böddeker 155d8e5edc Merge branch 'testing' into stable 7 years ago
  Karsten Böddeker 977eb37cfb Merge branch 'testing' into stable 7 years ago
  Karsten Böddeker 397039b8e5 Merge branch 'testing' into stable 8 years ago
  Karsten Böddeker e0bfce7d88 Merge branch 'testing' into stable 8 years ago
  Karsten Böddeker 7a823ee1ad Merge branch 'testing' into stable 8 years ago
  Karsten Böddeker 8f4436733e Merge branch 'testing' into stable 8 years ago
4 changed files with 9 additions and 9 deletions
  1. 3 3
      extra/template.conf
  2. 1 1
      modules
  3. 4 4
      scripts/gensites.py
  4. 1 1
      site.mk

+ 3 - 3
extra/template.conf

@@ -21,7 +21,7 @@
 	opkg = {
 		openwrt = 'http://firmware.srv.in.ffho.net/openwrt/packages-%v/%A',
 		extra = {
-			gluon = 'http://firmware.srv.in.ffho.net/%GR/modules/%S',
+			gluon = 'http://firmware.srv.in.ffho.net/%GR/packages/%S',
 		},
 	},
 
@@ -101,8 +101,8 @@
 							key = '629b2742922f068ef49558283aea4b75c1427d8cdd3fcd2dbd7c00880547d3b3',
 							remotes = {
 								'"gw03.ffho.net" port 100%ID',
-								'ipv6 "2a00:13c8:1000:2::165" port 100%ID',
-								'ipv4 "185.46.137.165" port 100%ID',
+								'ipv6 "2a00:13c8:1000:2::147" port 100%ID',
+								'ipv4 "185.46.137.147" port 100%ID',
 							},
 						},
 						gw04 = {

+ 1 - 1
modules

@@ -2,4 +2,4 @@ GLUON_SITE_FEEDS='ffho'
 
 PACKAGES_FFHO_REPO=https://git.ffho.net/freifunkhochstift/ffho-packages.git
 PACKAGES_FFHO_BRANCH=master
-PACKAGES_FFHO_COMMIT=0cc6f952e9489bf0794b906f70285fef14bb56e3
+PACKAGES_FFHO_COMMIT=31b7d547abf57e27f15311b4d92146f2389b9e50

+ 4 - 4
scripts/gensites.py

@@ -1,14 +1,14 @@
-#!/usr/bin/python
+#!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 
 import os,sys
 
 if not 'GLUON_SITEDIR' in os.environ:
-    print "GLUON_SITEDIR not set"
+    print ("GLUON_SITEDIR not set")
     sys.exit(1)
 
-execfile(os.environ['GLUON_SITEDIR'] + "/extra/sites.conf")
-execfile(os.environ['GLUON_SITEDIR'] + "/extra/groups.conf")
+exec(open(os.environ['GLUON_SITEDIR'] + "/extra/sites.conf").read())
+exec(open(os.environ['GLUON_SITEDIR'] + "/extra/groups.conf").read())
 DOMAINS=os.environ['GLUON_SITEDIR'] + "/domains/"
 TEMPLATE = ""
 with open(os.environ['GLUON_SITEDIR'] + "/extra/template.conf") as f:

+ 1 - 1
site.mk

@@ -54,7 +54,7 @@ ifeq ($(GLUON_TARGET),x86-64)
 endif
 
 # 0.2~1 < 0.2 < 0.2+1 < 0.2-1 < 0.2.1 < 0.3
-DEFAULT_GLUON_RELEASE := 1.4.1~exp$(shell date '+%Y%m%d')
+DEFAULT_GLUON_RELEASE := 1.5.0~exp$(shell date '+%Y%m%d')
 DEFAULT_GLUON_PRIORITY := 0
 
 GLUON_RELEASE ?= $(DEFAULT_GLUON_RELEASE)