diff options
author | Tharre <tharre3@gmail.com> | 2018-01-22 17:51:04 +0100 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-01-22 17:51:16 +0100 |
commit | 4a8378a672a327af2467b492ea7b80fec706e036 (patch) | |
tree | b114108556f925a253430ab681c09ce5f8961b0e /arch-system/base-system.install | |
parent | 24cca40e62b6753017920acbd0e63ec678368f36 (diff) | |
download | pkgbuilds-4a8378a672a327af2467b492ea7b80fec706e036.tar.gz pkgbuilds-4a8378a672a327af2467b492ea7b80fec706e036.tar.xz pkgbuilds-4a8378a672a327af2467b492ea7b80fec706e036.zip |
arch-system: initial commit
Diffstat (limited to 'arch-system/base-system.install')
-rw-r--r-- | arch-system/base-system.install | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch-system/base-system.install b/arch-system/base-system.install new file mode 100644 index 0000000..b428aac --- /dev/null +++ b/arch-system/base-system.install @@ -0,0 +1,10 @@ +post_install() { + # in case it wasn't already run by glibc + locale-gen + + systemctl --global enable avahi-daemon.service +} + +pre_remove() { + systemctl --global disable avahi-daemon.service +} |