mirror of
https://github.com/ublue-os/forge.git
synced 2025-04-21 14:03:46 +03:00
8 lines
140 B
Bash
8 lines
140 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
# Run setup only once
|
||
|
if [ ! -f /ansible/.startup-done ]; then
|
||
|
ansible-playbook main.yml
|
||
|
touch /ansible/.startup-done
|
||
|
fi
|