mirror of
https://github.com/jimeh/docker-znc.git
synced 2026-02-19 01:46:42 +00:00
15 lines
365 B
Bash
15 lines
365 B
Bash
#! /usr/bin/env bash
|
|
|
|
# Install
|
|
apt-get install -y python-software-properties
|
|
add-apt-repository ppa:teward/znc
|
|
apt-get update
|
|
apt-get install -y znc znc-dbg znc-dev znc-perl znc-python znc-tcl
|
|
apt-get install -y znc znc-dbg znc-dev znc-extra znc-perl znc-python znc-tcl
|
|
|
|
|
|
# Clean up
|
|
apt-get remove -y python-software-properties
|
|
apt-get autoremove -y
|
|
apt-get clean
|