-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from STNS/arm
Support Arm
- Loading branch information
Showing
8 changed files
with
34 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM debian:buster | ||
MAINTAINER pyama86 <[email protected]> | ||
|
||
RUN ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime | ||
RUN apt-get -qqy update && \ | ||
apt-get install -qqy glibc-source \ | ||
gcc \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM debian:bullseye | ||
MAINTAINER pyama86 <[email protected]> | ||
|
||
RUN ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime | ||
RUN apt-get -qqy update && \ | ||
apt-get install -qqy \ | ||
glibc-source \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM ubuntu:focal | ||
MAINTAINER pyama86 <[email protected]> | ||
|
||
RUN ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime | ||
RUN apt-get -qqy update && \ | ||
apt-get install -qqy \ | ||
tzdata \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM ubuntu:jammy | ||
MAINTAINER pyama86 <[email protected]> | ||
|
||
RUN ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime | ||
RUN apt-get -qqy update && \ | ||
apt-get install -qqy \ | ||
tzdata \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ Requires: glibc cache-stnsd | |
BuildRequires: gcc make | ||
%endif | ||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) | ||
BuildArch: i386, x86_64 | ||
BuildArch: i386, x86_64, aarch64 | ||
|
||
%define debug_package %{nil} | ||
|
||
|
@@ -61,15 +61,15 @@ sed -i "s/^IPAddressDeny=any/#IPAddressDeny=any/" /lib/systemd/system/systemd-lo | |
%config(noreplace) /etc/stns/client/stns.conf | ||
|
||
%changelog | ||
* Thu Dec 05 2023 pyama86 <[email protected]> - 2.6.6-3 | ||
* Tue Dec 05 2023 pyama86 <[email protected]> - 2.6.6-3 | ||
- Allow uppercase letters in usernames and group names | ||
* Mon Nov 06 2023 pyama86 <[email protected]> - 2.6.6-2 | ||
- Add Validation for Query with username | ||
* Fri Nov 03 2023 pyama86 <[email protected]> - 2.6.6-1 | ||
- I have fixed primarily memory leaks and buffer overflow vulnerabilities that were detected by the Continuous Integration (CI) system. | ||
* Thu Nov 02 2023 pyama86 <[email protected]> - 2.6.5-1 | ||
- Check User/Group Name Before Query | ||
* Sun Oct 11 2023 pyama86 <[email protected]> - 2.6.4-1 | ||
* Wed Oct 11 2023 pyama86 <[email protected]> - 2.6.4-1 | ||
- Update dependency curl/curl to v8_4_0 | ||
* Sun Jun 18 2023 pyama86 <[email protected]> - 2.6.3-1 | ||
- update openssl and curl | ||
|