* Added build-wk script * This will (hopefully) keep the arch-hh folder clean allowing for a better git workflow * Rebuilt the default settings for wktech for most programs * Made the theme/icons more consistant between programs * Changed whiskermenu to more closely match a Windows Start Menu * Lots of hw-diags updates: * Connects to the network automatically * Copies all results files to $HOME/Tickets * Creates valid tgz archives of the results * Uses `mktemp` for setting TMP_DIR * mount-all-drives now opens the FileManager if lauched w/ Super+M * Probably more...
10 lines
323 B
Bash
10 lines
323 B
Bash
#!/bin/bash
|
|
#
|
|
## Mount NAS backup shares
|
|
|
|
echo "Mounting NAS backup shares"
|
|
sudo mkdir /Backups/ServerOne -p
|
|
sudo mount //10.0.0.10/Backups /Backups/ServerOne -o username=backup,password=Abracadabra
|
|
sudo mkdir /Backups/ServerTwo -p
|
|
sudo mount //10.0.0.11/Backups /Backups/ServerTwo -o username=backup,password=Abracadabra
|
|
|