unstable flag

This commit is contained in:
Aiden McClelland
2021-12-27 17:41:35 -07:00
committed by Aiden McClelland
parent ec17059784
commit be98fdfeed
3 changed files with 7 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ sudo cp -R diagnostic-ui/www /tmp/eos-mnt/var/www/html/diagnostic
# Make the .ssh directory
sudo mkdir -p /tmp/eos-mnt/root/.ssh
if [ "$ENVIRONMENT" = "dev" ]; then
if [[ "$ENVIRONMENT" =~ (^|-)dev($|-) ]]; then
cat ./build/initialization.sh | grep -v "passwd -l ubuntu" | sudo tee /tmp/eos-mnt/usr/local/bin/initialization.sh > /dev/null
sudo chmod +x /tmp/eos-mnt/usr/local/bin/initialization.sh
else