Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

kasm VNC #250

Merged
merged 48 commits into from
Oct 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
9b9dd76
wip
matifali Sep 21, 2023
f68b31b
add kasmVNC
matifali Sep 21, 2023
aabf35c
TODO
matifali Sep 21, 2023
dec64c7
fixup!
matifali Sep 21, 2023
bf90b16
update tags
matifali Sep 21, 2023
92794a2
Delete .icons/kasm.png
matifali Sep 22, 2023
d44bd60
Update README.md
matifali Sep 22, 2023
1ac4840
Update main.tf
matifali Sep 22, 2023
805f692
merge `main`
matifali May 17, 2024
0fa43a7
`bun fmt`
matifali May 17, 2024
048cffb
bump version and fix typo
matifali May 17, 2024
2318f31
update KasmVNC version to 1.0.15 in README.md files
matifali May 17, 2024
6009778
rename version to kasm_version
matifali May 17, 2024
3333d3a
improve compatibility and cleanup
matifali May 17, 2024
d6e6cb3
update README.md
matifali May 17, 2024
b308ea5
fixup!
matifali May 17, 2024
41ef969
fixup!
matifali May 17, 2024
6698cb8
Install libdatetime-perl
matifali May 17, 2024
c8cdc95
fixup!
matifali May 17, 2024
c8db45e
fixup!
matifali May 17, 2024
a6c449e
add healtcheck
matifali May 17, 2024
b697e72
Merge branch 'main' into kasmVNC
matifali May 17, 2024
d5b49c2
Merge branch 'main' into kasmVNC
matifali May 21, 2024
f00f8de
chore: Update KasmVNC to use XFCE desktop environment
matifali May 30, 2024
a76095f
Merge branch 'main' into kasmVNC
matifali May 30, 2024
a254fd3
remove options
matifali May 30, 2024
71a2e6c
add wait for script
matifali May 30, 2024
39bc745
fixup!
matifali May 30, 2024
c2698be
fixup!
matifali May 30, 2024
d61f14d
fixup!
matifali May 30, 2024
12e4d35
`bun fmt`
matifali May 30, 2024
eda0e5d
Merge branch 'main' into kasmVNC
matifali Jun 21, 2024
de525a3
Merge branch 'main' into kasmVNC
matifali Sep 20, 2024
6017b05
Refactor KasmVNC installation script logic
matifali Sep 20, 2024
2ee02a3
fix: remove duplicate validation value
Parkreiner Sep 20, 2024
59041b3
chore: get basic tests in place
Parkreiner Sep 20, 2024
3ce7ef5
fix: update test text for more clarity
Parkreiner Sep 20, 2024
382c76b
Merge branch 'main' into kasmVNC
matifali Sep 30, 2024
c10a2ba
Bump KasmVNC module version to 1.0.20
matifali Sep 30, 2024
cf3159c
Update README.md
matifali Oct 2, 2024
c6895b5
Update KasmVNC to version 1.3.2 and add support
matifali Oct 4, 2024
4020ec0
Refine architecture mapping for specific distros
matifali Oct 4, 2024
f4cdb15
fix(kasmvnc): correct .deb file installation path
matifali Oct 4, 2024
18570aa
Improve Debian package installation command
matifali Oct 4, 2024
a63c365
Fix RPM installation path in kasmvnc script
matifali Oct 4, 2024
43a353c
Update README.md
matifali Oct 17, 2024
05135af
Merge branch 'main' into kasmVNC
matifali Oct 17, 2024
457621c
update version
matifali Oct 17, 2024
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
Prev Previous commit
Next Next commit
Refine architecture mapping for specific distros
  • Loading branch information
matifali committed Oct 4, 2024
commit 4020ec05e6d23bbfcbf9ecdbe3d674f20bd5e37b
12 changes: 10 additions & 2 deletions kasmvnc/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,17 @@ echo "Detected Architecture: $arch"

# Map arch to package arch
if [[ "$arch" == "x86_64" ]]; then
arch="x86_64"
if [[ "$distro" == "ubuntu" || "$distro" == "debian" || "$distro" == "kali" ]]; then
arch="amd64"
else
arch="x86_64"
fi
elif [[ "$arch" == "aarch64" || "$arch" == "arm64" ]]; then
arch="aarch64"
if [[ "$distro" == "ubuntu" || "$distro" == "debian" || "$distro" == "kali" ]]; then
arch="arm64"
else
arch="aarch64"
fi
else
echo "Unsupported architecture: $arch"
exit 1
Expand Down