6 lines
148 B
Bash
6 lines
148 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if ! [ -d "/etc/ixvd/secrets" ]; then
|
||
|
echo "setting up ixvd/secrets"
|
||
|
git clone git@git.ixvd.net:ixvd/secrets /etc/ixvd/secrets
|
||
|
fi
|