9 lines
198 B
Bash
Executable file
9 lines
198 B
Bash
Executable file
#!/bin/sh
|
|
. ./roles/home-cli/files/profile
|
|
if [ $(uname -s) = FreeBSD ]
|
|
then
|
|
INVENTORY=./inventories/local-freebsd.ini
|
|
else
|
|
INVENTORY=./inventories/local-linux.ini
|
|
fi
|
|
./user-gui.yml -i $INVENTORY
|