Replace Guacamole with Webtop
This commit is contained in:
18
services/Webtop/configmap-init.d-zsh.yaml
Normal file
18
services/Webtop/configmap-init.d-zsh.yaml
Normal file
@ -0,0 +1,18 @@
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: init.d-zsh
|
||||
namespace: webtop
|
||||
data:
|
||||
00-zsh.sh: |
|
||||
#!/bin/bash
|
||||
|
||||
# Make sure zsh is installed and available
|
||||
ZSH_BIN=$(command -v zsh)
|
||||
|
||||
if [[ -x "$ZSH_BIN" ]]; then
|
||||
echo "[webtop] Setting abc's default shell to $ZSH_BIN"
|
||||
usermod -s "$ZSH_BIN" abc
|
||||
else
|
||||
echo "[webtop] zsh not found, skipping chsh"
|
||||
fi
|
Reference in New Issue
Block a user