mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
14 lines
168 B
Bash
Executable File
14 lines
168 B
Bash
Executable File
# lock global
|
|
touch /tmp/install.lock
|
|
|
|
# lock
|
|
touch /tmp/install-php.lock
|
|
|
|
apt-get install php
|
|
|
|
# unlock global
|
|
rm /tmp/install.lock
|
|
|
|
# unlock
|
|
rm /tmp/install-php.lock
|