mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 11:12:16 +03:00
16 lines
232 B
Text
16 lines
232 B
Text
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
#mkdir -p /usr/share/ahenk/plugins
|
||
|
|
||
|
# update ahenk from 1.0.0-6 to 1.0.0-7
|
||
|
if [ ! -d /etc/ahenk ]; then
|
||
|
|
||
|
mkdir -p /etc/ahenk
|
||
|
cp -rf /tmp/ahenk/* /etc/ahenk
|
||
|
fi
|
||
|
|
||
|
systemctl enable ahenk
|
||
|
systemctl start ahenk
|