diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2014-08-23 08:20:12 +0200 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2014-08-24 00:56:56 +0200 |
commit | 33aaf3617f60dcb7832fbab72f815d6443db1b35 (patch) | |
tree | 9611a80360089e6577d4d4e85a82f5fef2fb8b23 /components | |
parent | d735e034ebcf3b2a67904aec039066044a495328 (diff) | |
download | vyos-live-build-33aaf3617f60dcb7832fbab72f815d6443db1b35.tar.gz vyos-live-build-33aaf3617f60dcb7832fbab72f815d6443db1b35.zip |
Moving common hooks to subdirectory to allow system specific hooks.
Diffstat (limited to 'components')
-rwxr-xr-x | components/init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/init b/components/init index c6eb21992..1cfa60fbe 100755 --- a/components/init +++ b/components/init @@ -133,7 +133,7 @@ def main(): # Configuring default hooks os.makedirs('config/hooks', exist_ok=True) - for hook in glob.glob('/usr/share/live/build/hooks/*.hook*'): + for hook in glob.glob('/usr/share/live/build/hooks/all/*.hook*'): os.symlink(hook, os.path.join('config/hooks/' + os.path.basename(hook))) # Configuring default includes |