From 167c1f2600f961147cbeb6e7c4f8f00eb46f51a7 Mon Sep 17 00:00:00 2001 From: Oskar Date: Wed, 24 May 2023 12:29:33 +0000 Subject: Script --- README | 1 + smbedit.sh | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 README create mode 100755 smbedit.sh diff --git a/README b/README new file mode 100644 index 0000000..52f40d3 --- /dev/null +++ b/README @@ -0,0 +1 @@ +Some of the scripts that i might need when working on my server. diff --git a/smbedit.sh b/smbedit.sh new file mode 100755 index 0000000..df3ed1b --- /dev/null +++ b/smbedit.sh @@ -0,0 +1,16 @@ +mkdir -p ~/smb-backups +cp /etc/samba/smb.conf ~/smb-backups/smb_$(date +"%Y%m%d_%H%M").conf +sudo vim /etc/samba/smb.conf + +read -r -p "Do you want to restart the smbd daemon? [y/N] " response +case "$response" in + [yY][eE][sS]|[yY]) + sudo systemctl restart smbd + echo "smbd will restart" + echo "The old smb.conf file was copied to ~/smb-backups" + ;; + *) + echo "smbd will not restart" + echo "The old smb.conf file was copied to ~/smb-backups" + ;; +esac -- cgit v1.2.3