mirror of
https://github.com/vyvir/althea.git
synced 2026-06-05 23:09:28 -05:00
12 lines
165 B
Bash
Executable File
12 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
AltLinux_PATH="/usr/lib/altlinux"
|
|
USER=$SUDO_USER
|
|
|
|
if [ -d "$AltLinux_PATH" ]; then
|
|
sudo chown -R "$USER:$USER" "$AltLinux_PATH"
|
|
fi
|
|
exit 0
|