summaryrefslogtreecommitdiff
path: root/README.md
blob: 1dc95ed8611b13fe6a4f781b3b892f880233efb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
`sd_notify` Erlang interface for Centos 7 and Debian
---

This adds the `sd_notify` to the Centos erlang package.
Tested it starting for zero-dependencies RabbitMQ package ([github](https://github.com/rabbitmq/erlang-rpm) - [binany](https://www.rabbitmq.com/releases/erlang/) )

Build from source `RPM`
-

 1.  `docker build -t sd_rpm .`
 2. `make`
 

 
Download the binary
-
https://github.com/systemd/erlang-sd_notify/releases/tag/

Install and Test
-
Install:

        extract the tar.gz
        mkdir -p /usr/lib64/erlang/lib/sd_notify-0.10/priv/
        mkdir -p /usr/lib64/erlang/lib/sd_notify-0.10/ebin/
        cp priv/* /usr/lib64/erlang/lib/sd_notify-0.10/priv/
        cp ebin/* /usr/lib64/erlang/lib/sd_notify-0.10/ebin/
 

Test:

    [root@a499ee66251a]# erl
    ...    
    1> sd_notify:sd_notify(0,"READY=1").
    ok


Building on Debian
-
Install the pre-requisites to the build:

        sudo apt-get install build-essential devscripts fakeroot \
            debhelper erlang-dev libsystemd-dev erlang-eunit

Make the package:

        make deb

Install and test:

        sudo dpkg -i deb-build/erlang-sd-notify_0.9-1_amd64.deb
        erl
        1> sd_notify:sd_notify(0,"READY=1").
        ok