11 lines
262 B
Plaintext
11 lines
262 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
auth_mode="$(CreoleGet sunstone_auth_modes)"
|
||
|
unlink /var/lib/one/remotes/auth/default 2>/dev/null
|
||
|
|
||
|
if [ -z "${auth_mode}" ]; then
|
||
|
ln -s /var/lib/one/remotes/auth/{dummy,default}
|
||
|
else
|
||
|
ln -s /var/lib/one/remotes/auth/{${auth_mode},default}
|
||
|
fi
|