mirror of
https://github.com/wahyd4/crawlab.git
synced 2026-08-09 13:16:10 +10:00
14 lines
171 B
Bash
Executable File
14 lines
171 B
Bash
Executable File
# lock global
|
|
touch /tmp/install.lock
|
|
|
|
# lock
|
|
touch /tmp/install-php.lock
|
|
|
|
apt-get install -y php
|
|
|
|
# unlock global
|
|
rm /tmp/install.lock
|
|
|
|
# unlock
|
|
rm /tmp/install-php.lock
|