#!/bin/bash

bucket_name="p81-devops"
path="files/solo-lock/"
file_name="lock"

if $FILE_NOT_EXIST ; then
    touch $file_name
    aws s3 cp $file_name "s3://$bucket_name/$path"
    echo "File $file_name created in the S3 bucket path."
fi