Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add warning message and try to fix the directory set time issue #163

Merged
merged 2 commits into from
Apr 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions deb/publish/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ function uploadSite(){
-avz \
-e "ssh ${SSH_OPTS[*]}" \
--progress \
--omit-dir-times \
"$D/html/" "$PKGSERVER:${DEBDIR// /\\ }/"
}

Expand Down
1 change: 1 addition & 0 deletions rpm/publish/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ function uploadSite(){
--include "HEADER.html" \
--include "FOOTER.html" \
--exclude "*" \
--omit-dir-times \
--progress \
. "$PKGSERVER:${RPMDIR// /\\ }/"
popd
Expand Down
1 change: 1 addition & 0 deletions suse/publish/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ function uploadSite(){
--include "HEADER.html" \
--include "FOOTER.html" \
--exclude "*" \
--omit-dir-times \
--progress \
. "$PKGSERVER:${SUSEDIR// /\\ }/"

Expand Down
4 changes: 3 additions & 1 deletion templates/header.debian.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

To use this repository, first add the key to your system:

WARNING: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
WARNING: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.
<strong>WARNING</strong>: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.


<pre class="text-white bg-dark">
<code>
wget -q -O - <a href="{{organization}}.key" style="color:white"><span class="hostname"></span>/{{organization}}.key</a> | sudo apt-key add -</code>
Expand All @@ -23,7 +25,7 @@
<p>
Update your local package index, then finally install {{product_name}}:

<pre>
<pre class="text-white bg-dark">
sudo apt-get update
sudo apt-get install {{artifactName}}
</pre>
Expand Down
2 changes: 2 additions & 0 deletions templates/header.opensuse.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

To use this repository, run the following command:

WARNING: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
WARNING: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.
<strong>WARNING</strong>: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.


<pre class="text-white bg-dark">

sudo zypper addrepo -f <span class="hostname"></span>/{{os_family}}{{releaseline}}/ {{artifactName}}
Expand Down
3 changes: 3 additions & 0 deletions templates/header.redhat.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

{% block distribution_instruction %}


<p>
To use this repository, run the following command:

WARNING: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
WARNING: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.
<strong>WARNING</strong>: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.


<pre class="text-white bg-dark">

sudo wget -O /etc/yum.repos.d/{{artifactName}}.repo <span class="hostname"></span>/{{os_family}}{{releaseline}}/{{artifactName}}.repo
Expand Down
2 changes: 2 additions & 0 deletions templates/header.war.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<p>
This is the WAR package repository of {{ product_name }} for installation.

WARNING: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
WARNING: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.
<strong>WARNING</strong>: The gpg key use to sign our packages has been updated on the 16 of April 2020, therefore you need to reimport it if you did before this date.


<pre class="text-white bg-dark">

wget -q -O - <a href="{{organization}}.key" style="color:white"><span class="hostname"></span>/{{organization}}.key</a> | sudo apt-key add -
Expand Down