File tree 3 files changed +16
-3
lines changed
3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## Release 1.0.3
6
+
7
+ ** Features**
8
+
9
+ * [ #2 ] ( https://github.com/danielparks/puppet-golang/issues/2 ) : support
10
+ convenient installation on Raspberry Pi 2B and 3B.
11
+
12
+ ** Bugfixes**
13
+
14
+ * [ #2 ] ( https://github.com/danielparks/puppet-golang/issues/2 ) : default to the
15
+ correct 64-bit ARM binary on 64 bit ARM, e.g. on the Raspberry Pi 4.
16
+
5
17
## Release 1.0.2
6
18
7
19
** Features**
Original file line number Diff line number Diff line change 28
28
},
29
29
String[1] $arch = $facts [' os' ][' hardware' ] ? {
30
30
undef => ' amd64' , # Assume amd64 if os.hardware is missing.
31
- ' x86_64' => ' amd64' ,
31
+ ' aarch64' => ' arm64' ,
32
+ ' armv7l' => ' armv6l' ,
32
33
' i686' => ' 386' ,
33
- ' aarch64 ' => ' armv6l ' ,
34
+ ' x86_64 ' => ' amd64 ' ,
34
35
default => $facts [' os' ][' hardware' ],
35
36
},
36
37
String[1] $source = " ${source_prefix} /go${version} .${os} -${arch} .tar.gz" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " dp-golang" ,
3
- "version" : " 1.0.2 " ,
3
+ "version" : " 1.0.3 " ,
4
4
"author" : " Daniel Parks" ,
5
5
"summary" : " Install Go simply" ,
6
6
"license" : " Apache-2.0" ,
You can’t perform that action at this time.
0 commit comments