about summary refs log tree commit diff
path: root/tools/nm-guest-data/bin-nm-deploy.sh.in
blob: 9b5385b1eb273f7d6fc9b6bc657007d885cb2951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -ex

cd /NetworkManager

if [ -f ./config.log ] ; then
    make -j 5 install
else
    meson install -C build
fi

systemctl daemon-reload
systemctl restart NetworkManager.service