-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
oliverdding
committed
Jul 19, 2024
1 parent
08ea70c
commit 3b7b787
Showing
8 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CopyFile /etc/pacman.d/hooks/50-setcap-iputils.hook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
AddPackage go # Core compiler tools for the Go programming language | ||
AddPackage gofumpt # A strict formatter for Go language | ||
AddPackage gopls # Language server for Go programming language | ||
AddPackage protobuf # Protocol Buffers - Google's data interchange format | ||
AddPackage revive # faster, stricter, configurable, extensible, and beautiful drop-in replacement for golint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,5 @@ CopyFile /etc/sudoers.d/99_wheel | |
# --- journald, see also: https://man.archlinux.org/man/journald.conf.5.en | ||
CopyFile /etc/systemd/journald.conf.d/override.conf | ||
|
||
CreateLink /etc/systemd/system/getty.target.wants/[email protected] /usr/lib/systemd/system/[email protected] | ||
CreateLink /etc/systemd/system/multi-user.target.wants/remote-fs.target /usr/lib/systemd/system/remote-fs.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
CopyFile /etc/systemd/timesyncd.conf.d/china.conf | ||
|
||
CreateLink /etc/systemd/system/dbus-org.freedesktop.timesync1.service /usr/lib/systemd/system/systemd-timesyncd.service | ||
CreateLink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service /usr/lib/systemd/system/systemd-timesyncd.service |
10 changes: 10 additions & 0 deletions
10
dot_config/aconfmgr/files/etc/pacman.d/private_hooks/50-setcap-iputils.hook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[Trigger] | ||
Type = Path | ||
Operation = Install | ||
Operation = Upgrade | ||
Target = usr/bin/ping | ||
|
||
[Action] | ||
Description = Adding capabilities to ping to allow non-root user to ping... | ||
When = PostTransaction | ||
Exec = /usr/bin/setcap cap_net_raw+p /usr/bin/ping |