Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
0c01a920
Commit
0c01a920
authored
May 04, 2018
by
Marcus Nordenberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pwrp_profile: Updated how java is found on debian based systems
parent
c3200ed1
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
160 additions
and
80 deletions
+160
-80
src/tools/pkg/deb/pwr/pwrp_profile
src/tools/pkg/deb/pwr/pwrp_profile
+10
-5
src/tools/pkg/deb/pwrrt/pwrp_profile
src/tools/pkg/deb/pwrrt/pwrp_profile
+10
-5
src/tools/pkg/deb/pwrsev/pwrp_profile
src/tools/pkg/deb/pwrsev/pwrp_profile
+10
-5
src/tools/pkg/deb_armel/pwrrt/pwrp_profile
src/tools/pkg/deb_armel/pwrrt/pwrp_profile
+10
-5
src/tools/pkg/deb_x86_64/pwr/pwrp_profile
src/tools/pkg/deb_x86_64/pwr/pwrp_profile
+10
-5
src/tools/pkg/deb_x86_64/pwrrt/pwrp_profile
src/tools/pkg/deb_x86_64/pwrrt/pwrp_profile
+10
-5
src/tools/pkg/deb_x86_64/pwrsev/pwrp_profile
src/tools/pkg/deb_x86_64/pwrsev/pwrp_profile
+10
-5
src/tools/pkg/raspbian/pwr/pwrp_profile
src/tools/pkg/raspbian/pwr/pwrp_profile
+10
-5
src/tools/pkg/raspbian/pwrrt/pwrp_profile
src/tools/pkg/raspbian/pwrrt/pwrp_profile
+10
-5
src/tools/pkg/raspbian/pwrsev/pwrp_profile
src/tools/pkg/raspbian/pwrsev/pwrp_profile
+10
-5
src/tools/pkg/ubu/pwr/pwrp_profile
src/tools/pkg/ubu/pwr/pwrp_profile
+10
-5
src/tools/pkg/ubu/pwrrt/pwrp_profile
src/tools/pkg/ubu/pwrrt/pwrp_profile
+10
-5
src/tools/pkg/ubu/pwrsev/pwrp_profile
src/tools/pkg/ubu/pwrsev/pwrp_profile
+10
-5
src/tools/pkg/ubu_x86_64/pwr/pwrp_profile
src/tools/pkg/ubu_x86_64/pwr/pwrp_profile
+10
-5
src/tools/pkg/ubu_x86_64/pwrrt/pwrp_profile
src/tools/pkg/ubu_x86_64/pwrrt/pwrp_profile
+10
-5
src/tools/pkg/ubu_x86_64/pwrsev/pwrp_profile
src/tools/pkg/ubu_x86_64/pwrsev/pwrp_profile
+10
-5
No files found.
src/tools/pkg/deb/pwr/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Debian
should
have a default-java
# If no local jdk/jres were found check for openjdk. Debian
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/deb/pwrrt/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Debian
should
have a default-java
# If no local jdk/jres were found check for openjdk. Debian
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/deb/pwrsev/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Debian
should
have a default-java
# If no local jdk/jres were found check for openjdk. Debian
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/deb_armel/pwrrt/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Debian
should
have a default-java
# If no local jdk/jres were found check for openjdk. Debian
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/deb_x86_64/pwr/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Debian
should
have a default-java
# If no local jdk/jres were found check for openjdk. Debian
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/deb_x86_64/pwrrt/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Debian
should
have a default-java
# If no local jdk/jres were found check for openjdk. Debian
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/deb_x86_64/pwrsev/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Debian
should
have a default-java
# If no local jdk/jres were found check for openjdk. Debian
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/raspbian/pwr/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk.
Raspbian should
have a default-java
# If no local jdk/jres were found check for openjdk.
Debian can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/raspbian/pwrrt/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk.
Raspbian should
have a default-java
# If no local jdk/jres were found check for openjdk.
Debian can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk=""
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/raspbian/pwrsev/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk.
Raspbian should
have a default-java
# If no local jdk/jres were found check for openjdk.
Debian can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk=""
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/ubu/pwr/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Ubuntu
should
have a default-java
# If no local jdk/jres were found check for openjdk. Ubuntu
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/ubu/pwrrt/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Ubuntu
should
have a default-java
# If no local jdk/jres were found check for openjdk. Ubuntu
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/ubu/pwrsev/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Ubuntu
should
have a default-java
# If no local jdk/jres were found check for openjdk. Ubuntu
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/ubu_x86_64/pwr/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Ubuntu
should
have a default-java
# If no local jdk/jres were found check for openjdk. Ubuntu
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/ubu_x86_64/pwrrt/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Ubuntu
should
have a default-java
# If no local jdk/jres were found check for openjdk. Ubuntu
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
src/tools/pkg/ubu_x86_64/pwrsev/pwrp_profile
View file @
0c01a920
...
...
@@ -38,14 +38,19 @@ jdk=`eval ls -1 /usr/local | sort -r | grep ^jdk | head -1`
if [ -z "$jdk" ]; then
jdk=`eval ls -1 /usr/local | sort -r | grep ^jre | head -1`
fi
# If no local jdk/jres were found check for openjdk. Ubuntu
should
have a default-java
# If no local jdk/jres were found check for openjdk. Ubuntu
can
have a default-java
# symlink in /usr/lib/jvm which can be changed with update-java-alternatives if openjdk
# is in use
# is in use
. If no default-java excists try to use the one with the highest version
if [ -z "$jdk" ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
if [ $? != 0 ]; then
jdk="";
if [ -e /usr/lib/jvm/default-java ]; then
jdk=`eval realpath -qe /usr/lib/jvm/default-java`
else
jdk_name=`eval ls -1 /usr/lib/jvm | sort -r | grep ^java | head -1`
jdk=`eval realpath -qe /usr/lib/jvm/$jdk_name`
unset jdk_name
fi
if [ ! -z "$jdk" ]; then
export jdk=$jdk
export JAVA_HOME=$jdk
export jdk_home=$jdk/bin
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment