blob: 3a8d4ff455dcec0ffa2ed38729114281055e7c15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# -*- coding: utf-8 -*-
# region imports
. /etc/openslx
# endregion
[ -z "$SLX_EXTRA_SCRIPT_URL" ] && exit 0
slx-tools download_retry --slx-time 20 -sS "$SLX_EXTRA_SCRIPT_URL" > /tmp/extra-init || exit 1
chmod +x /tmp/extra-init
exec /tmp/extra-init
|