Check uname to decide which inventory to use
This commit is contained in:
parent
ddb9f465dd
commit
a97c00ab2c
2 changed files with 16 additions and 4 deletions
10
console.sh
10
console.sh
|
@ -1,3 +1,9 @@
|
|||
#!/bin/sh
|
||||
. ./roles/home-cli/files/bash_profile
|
||||
./user-cli.yml -i ./local.ini
|
||||
. ./roles/home-cli/files/profile
|
||||
if [ $(uname -s) = FreeBSD ]
|
||||
then
|
||||
INVENTORY=./inventories/local-freebsd.ini
|
||||
else
|
||||
INVENTORY=./inventories/local-linux.ini
|
||||
fi
|
||||
./user-cli.yml -i $INVENTORY
|
||||
|
|
10
desktop.sh
10
desktop.sh
|
@ -1,3 +1,9 @@
|
|||
#!/bin/sh
|
||||
. ./roles/home-cli/files/bash_profile
|
||||
./user-gui.yml -i ./local.ini
|
||||
. ./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
|
||||
|
|
Loading…
Reference in a new issue