diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2024-11-23 09:55:18 -0500 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2024-11-23 09:55:18 -0500 |
commit | 661b4cbf55a731ad500d7d584e5b748ef5039f0f (patch) | |
tree | c7f710f4d97c79c1285d314493172ebc4b7ba15c | |
parent | 432ca6019449d092c01ea18b874aa05ceb0d75f9 (diff) | |
download | infrastructure-661b4cbf55a731ad500d7d584e5b748ef5039f0f.tar.gz |
make /etc/localtime a symlink
-rw-r--r-- | scripts/os/freebsd/20-timezone | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/os/freebsd/20-timezone b/scripts/os/freebsd/20-timezone index 22a3729..e690be8 100644 --- a/scripts/os/freebsd/20-timezone +++ b/scripts/os/freebsd/20-timezone @@ -1,4 +1,4 @@ #!/bin/sh # Set the system timezone. -cp -v "/usr/share/zoneinfo/${timezone}" /etc/localtime +ln -sfhv "/usr/share/zoneinfo/${timezone}" /etc/localtime |